/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Seletor de Idioma */
.language-selector {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    gap: 5px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.lang-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 20px;
    background: transparent;
    color: #8B4513;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 2px solid #D4AF37;
}

.lang-btn:hover {
    background: #8B4513;
    color: #FFFFFF;
    transform: scale(1.05);
}

.lang-btn.active {
    background: #D4AF37;
    color: #000000;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.lang-btn i {
    font-size: 0.8rem;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #000000 0%, #2C2C2C 50%, #8B4513 100%);
    min-height: 100vh;
    color: #000000;
    line-height: 1.6;
}

/* Container Principal */
.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sistema de Páginas */
.page {
    display: none;
    width: 100%;
    animation: fadeIn 0.5s ease-in-out;
}

.page.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card Principal */
.card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #8B4513);
}

/* Logo */
.logo {
    margin-bottom: 30px;
}

.logo i {
    font-size: 3rem;
    color: #D4AF37;
    margin-bottom: 15px;
    display: block;
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

/* Títulos e Texto */
h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
}

.subtitle {
    color: #666666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.question {
    font-size: 1.3rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.5;
}

.welcome-text {
    font-size: 1.4rem;
    color: #000000;
    margin-bottom: 30px;
}

.welcome-text span {
    color: #D4AF37;
    font-weight: 600;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #D4AF37, #8B4513);
    color: #000000;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #FFD700, #D4AF37);
}

.btn-secondary {
    background: #F5F5F5;
    color: #8B4513;
    border: 2px solid #D4AF37;
}

.btn-secondary:hover {
    background: #8B4513;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.2);
}

.btn-tertiary {
    background: #E0E0E0;
    color: #666666;
    border: 2px solid #CCCCCC;
}

.btn-tertiary:hover {
    background: #666666;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 102, 102, 0.2);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn:disabled:hover {
    transform: none;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Grupo de Botões */
.button-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

/* Botão de Voltar */
.back-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #8B4513;
    border: 2px solid #D4AF37;
}

.back-btn:hover {
    background: #8B4513;
    color: #FFFFFF;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

/* Formulários */
.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #000000;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #FFFFFF;
    color: #000000;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Sistema de Avaliação */
.rating-container {
    margin: 40px 0;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.stars i {
    font-size: 2.5rem;
    color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
}

.stars i:hover,
.stars i.active {
    color: #D4AF37;
    transform: scale(1.1);
}

.rating-text {
    color: #666;
    font-size: 1.1rem;
    margin-top: 15px;
}

/* Informações do Cliente */
.client-info {
    background: #F5F5F5;
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    border: 2px solid #D4AF37;
}

.info-item {
    text-align: left;
}

.info-item label {
    display: block;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.id-container {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #FFFFFF;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #D4AF37;
}

.client-id {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: 600;
    color: #8B4513;
    flex: 1;
    word-break: break-all;
}

.btn-copy {
    min-width: auto;
    padding: 10px 15px;
    background: #8B4513;
    color: #FFFFFF;
    border-radius: 8px;
    font-size: 0.9rem;
    border: 2px solid #D4AF37;
}

.btn-copy:hover {
    background: #D4AF37;
    color: #000000;
    transform: scale(1.05);
}

/* Informação de Partilha */
.share-info {
    background: linear-gradient(135deg, #8B4513, #D4AF37);
    color: #000000;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    border: 2px solid #D4AF37;
}

.share-info i {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.share-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Toast de Notificação */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #8B4513;
    color: #FFFFFF;
    padding: 15px 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 1000;
    border: 2px solid #D4AF37;
}

.toast.show {
    transform: translateX(0);
}

.toast i {
    font-size: 1.2rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .card {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .logo i {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .question {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
        min-width: 180px;
    }
    
    .stars i {
        font-size: 2rem;
    }
    
    .client-id {
        font-size: 1rem;
    }
    
    .id-container {
        flex-direction: column;
        text-align: center;
    }
    
    .btn-copy {
        width: 100%;
    }
    
    .toast {
        right: 15px;
        left: 15px;
        transform: translateY(-100px);
    }
    
    .toast.show {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .card {
        padding: 25px 15px;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .button-group {
        gap: 12px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
        min-width: 160px;
    }
    
    .stars i {
        font-size: 1.8rem;
    }
}

/* Animações Adicionais */
.btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Estados de Loading */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid transparent;
    border-top: 2px solid #000000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Estilos para Sistema de Pontos e Convites */

/* Informações de Pontos */
.points-info {
    background: linear-gradient(135deg, #8B4513, #D4AF37);
    color: #000000;
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
    text-align: center;
    border: 2px solid #D4AF37;
}

.points-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.points-display i {
    font-size: 1.5rem;
    color: #FFD700;
}

.points-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: #000000;
}

.points-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFD700;
}

.points-description {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Formulário de Convite */
.form-help {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 0.85rem;
    font-style: italic;
}

/* Página de Perfil */
.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f8f9fa;
}

.profile-avatar {
    font-size: 4rem;
    color: #D4AF37;
}

.profile-info h1 {
    margin: 0 0 10px 0;
    color: #000000;
    font-size: 1.8rem;
}

.profile-id {
    color: #8B4513;
    font-weight: 600;
    margin: 5px 0;
    font-family: 'Courier New', monospace;
}

.profile-join-date {
    color: #666;
    font-size: 0.9rem;
    margin: 5px 0 0 0;
}

/* Estatísticas do Perfil */
.profile-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: #F5F5F5;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #D4AF37;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
    border-color: #8B4513;
    background: #FFFFFF;
}

.stat-icon {
    font-size: 2rem;
    color: #8B4513;
    margin-bottom: 10px;
}

.stat-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 5px 0;
}

.stat-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Seções de Ação do Perfil */
.profile-actions {
    margin-bottom: 30px;
}

.action-section {
    background: #F5F5F5;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 2px solid #D4AF37;
}

.action-section h3 {
    color: #000000;
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.action-section h3 i {
    color: #8B4513;
}

/* Lista de Recompensas */
.rewards-list {
    display: grid;
    gap: 15px;
}

.reward-item {
    background: #FFFFFF;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #E0E0E0;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.reward-item:hover {
    border-color: #D4AF37;
    transform: translateX(5px);
}

.reward-item.available {
    border-color: #8B4513;
    background: #FFF8DC;
}

.reward-item.available .reward-icon {
    color: #8B4513;
}

.reward-icon {
    font-size: 1.5rem;
    color: #D4AF37;
}

.reward-content {
    flex: 1;
}

.reward-title {
    font-weight: 600;
    color: #000000;
    margin: 0 0 5px 0;
}

.reward-description {
    color: #666666;
    font-size: 0.9rem;
    margin: 0 0 5px 0;
}

.reward-points {
    color: #8B4513;
    font-weight: 600;
    font-size: 0.9rem;
}

.reward-status {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.reward-status.available {
    background: #D4AF37;
    color: #000000;
}

.reward-status.locked {
    background: #E0E0E0;
    color: #666666;
}

/* Seção de Convite */
.invite-section {
    text-align: center;
}

.invite-section p {
    color: #666;
    margin-bottom: 15px;
}

/* Responsividade para Perfil */
@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-avatar {
        font-size: 3rem;
    }
    
    .profile-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-card {
        padding: 15px;
    }
    
    .action-section {
        padding: 20px;
    }
    
    .reward-item {
        flex-direction: column;
        text-align: center;
    }
    
    /* Seletor de idioma responsivo */
    .language-selector {
        top: 10px;
        left: 10px;
        padding: 6px;
    }
    
    .lang-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .profile-info h1 {
        font-size: 1.5rem;
    }
    
    .stat-content h3 {
        font-size: 1.5rem;
    }
    
    .points-display {
        flex-direction: column;
        gap: 5px;
    }
}

/* Estilos para Mensagens de Alerta */
.alert-message {
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    animation: slideIn 0.3s ease-out;
}

.alert-message i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.alert-success {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border-left: 4px solid #2E7D32;
}

.alert-error {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    color: white;
    border-left: 4px solid #c62828;
}

.alert-message ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.alert-message li {
    margin: 5px 0;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilos para Formulário de Registo */
#registerPage .form-group {
    margin-bottom: 20px;
}

#registerPage .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

#registerPage .form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

#registerPage .form-group input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

#registerPage .form-help {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: #666;
}

.register-help {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.register-help a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.register-help a:hover {
    text-decoration: underline;
}

/* Estilos para Recompensas */
.rewards-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.reward-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.reward-card.available {
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.reward-card:not(.available) {
    opacity: 0.7;
}

.reward-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.reward-card.available .reward-icon {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.reward-icon i {
    font-size: 24px;
    color: white;
}

.reward-content {
    flex-grow: 1;
    margin-bottom: 15px;
}

.reward-content h4 {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
}

.reward-content p {
    margin: 0 0 10px 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.reward-cost {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    font-weight: 600;
    font-size: 1rem;
}

.reward-card.available .reward-cost {
    color: #4CAF50;
}

.reward-cost i {
    font-size: 14px;
}


/* Estilos para Missões */
.missions-section {
    margin-top: 15px;
}

.mission-card {
    position: relative;
    display: flex;
    align-items: center;
    padding: 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    border: none;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 20px;
    pointer-events: none;
}

.mission-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.mission-card:hover .mission-icon {
    transform: rotate(360deg) scale(1.1);
}

.mission-icon {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.mission-icon i {
    font-size: 1.8rem;
    color: #333;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.mission-content {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    margin-right: 25px;
    color: white;
}

.mission-content h4 {
    margin: 0 0 10px 0;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
}

.mission-content p {
    margin: 0 0 15px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.mission-reward {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffd700;
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.mission-reward i {
    color: #ffd700;
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.mission-action {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.mission-action .btn {
    min-width: 160px;
    padding: 12px 25px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.mission-action .btn.btn-primary {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.mission-action .btn.btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #ee5a24, #ff6b6b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

.mission-action .btn.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.mission-action .btn.btn-primary:hover::before {
    left: 100%;
}

.mission-action .btn.btn-success {
    background: linear-gradient(135deg, #00b894, #00a085);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.4);
}

.mission-action .btn.btn-success:hover {
    background: linear-gradient(135deg, #00a085, #00b894);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 184, 148, 0.6);
}

.mission-action .btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* Efeito de partículas flutuantes */
.mission-card::after {
    content: '✨';
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    opacity: 0.6;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .mission-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .mission-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .mission-content {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .mission-action .btn {
        min-width: 140px;
    }
}
