/* Estilos específicos para a página de Termos de Serviço */

/* Navegação */
.navigation {
    text-align: center;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(52, 152, 219, 0.9);
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.nav-link:hover {
    background: rgba(41, 128, 185, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.nav-link i {
    font-size: 1.1rem;
}

/* Conteúdo dos Termos */
.terms-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Header dos Termos */
.terms-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 3px solid #e74c3c;
}

.terms-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

.terms-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #34495e;
    margin-bottom: 20px;
    font-weight: 400;
}

.last-updated {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.95rem;
}

.last-updated i {
    font-size: 1rem;
}

/* Introdução */
.terms-intro {
    margin-bottom: 40px;
    padding: 25px;
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border-radius: 15px;
    border-left: 5px solid #e74c3c;
}

.terms-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
    margin: 0;
    font-weight: 400;
}

/* Seções dos Termos */
.terms-sections {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.terms-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    border-left: 5px solid #e74c3c;
    transition: all 0.3s ease;
}

.terms-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.section-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
}

.section-content {
    color: #555;
    line-height: 1.8;
}

.section-content p {
    margin-bottom: 15px;
    font-size: 1rem;
}

/* Listas */
.terms-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.terms-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.terms-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.terms-list li i {
    color: #e74c3c;
    font-size: 1.1rem;
    margin-top: 3px;
    min-width: 20px;
}

/* Aviso de Atualização */
.update-notice {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 0.95rem;
}

.update-notice i {
    font-size: 1.2rem;
    min-width: 20px;
}

/* Destaque de Contato */
.contact-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.contact-highlight i {
    font-size: 1.5rem;
}

.contact-highlight a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-highlight a:hover {
    text-decoration: underline;
    opacity: 0.9;
}

/* Métodos de Contato */
.contact-methods {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    color: #2c3e50;
    font-weight: 500;
}

.contact-method i {
    color: #e74c3c;
    font-size: 1.1rem;
}

/* Seção de Aceitação */
.acceptance-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e74c3c;
}

.acceptance-content {
    background: linear-gradient(135deg, #00b894, #00a085);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 184, 148, 0.3);
}

.acceptance-content i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.acceptance-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.acceptance-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

/* Responsividade */
@media (max-width: 768px) {
    .terms-content {
        padding: 25px;
        margin: 20px 10px;
    }
    
    .terms-title {
        font-size: 2rem;
    }
    
    .terms-subtitle {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 1.3rem;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .terms-section {
        padding: 20px;
    }
    
    .terms-list li {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-highlight {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-methods {
        justify-content: center;
    }
    
    .navigation {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-link {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .terms-title {
        font-size: 1.7rem;
    }
    
    .terms-subtitle {
        font-size: 1.2rem;
    }
    
    .terms-content {
        padding: 20px;
        margin: 15px 5px;
    }
    
    .terms-section {
        padding: 15px;
    }
    
    .section-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .last-updated {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .acceptance-content i {
        font-size: 2.5rem;
    }
    
    .acceptance-content h4 {
        font-size: 1.3rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.terms-content {
    animation: fadeInUp 0.8s ease-out;
}

.terms-section {
    animation: fadeInUp 0.8s ease-out;
}

.terms-section:nth-child(1) { animation-delay: 0.1s; }
.terms-section:nth-child(2) { animation-delay: 0.2s; }
.terms-section:nth-child(3) { animation-delay: 0.3s; }
.terms-section:nth-child(4) { animation-delay: 0.4s; }
.terms-section:nth-child(5) { animation-delay: 0.5s; }

.acceptance-section {
    animation: fadeInUp 1s ease-out 0.6s both;
}