/* Estilos específicos para a página de Política de Privacidade */

.privacy-section {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: #f8f9fa;
}

.privacy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-header {
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

.privacy-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.privacy-subtitle {
    font-size: 1.2rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.last-updated {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

.privacy-content {
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.privacy-intro {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.privacy-intro h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.privacy-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.privacy-section-content {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.privacy-section-content:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.privacy-section-content h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-left: 20px;
}

.privacy-section-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

.privacy-section-content h3 {
    color: #444;
    font-size: 1.3rem;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.privacy-section-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
}

.privacy-section-content ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.privacy-section-content li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.privacy-section-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

.privacy-section-content li strong {
    color: #333;
    font-weight: 600;
}

.contact-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 4px solid #667eea;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #555;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: #667eea;
    margin-right: 15px;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.privacy-footer {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
}

.privacy-footer p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.privacy-footer p:last-child {
    margin-bottom: 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .privacy-section {
        padding: 100px 0 60px;
    }
    
    .privacy-container {
        padding: 0 15px;
    }
    
    .privacy-content {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .privacy-header h1 {
        font-size: 2.2rem;
    }
    
    .privacy-subtitle {
        font-size: 1rem;
    }
    
    .privacy-section-content h2 {
        font-size: 1.5rem;
    }
    
    .privacy-section-content h3 {
        font-size: 1.2rem;
    }
    
    .contact-info {
        padding: 20px;
    }
    
    .contact-item {
        font-size: 1rem;
    }
    
    .privacy-footer {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .privacy-header h1 {
        font-size: 1.8rem;
    }
    
    .privacy-content {
        padding: 20px 15px;
    }
    
    .privacy-section-content h2 {
        font-size: 1.3rem;
        padding-left: 15px;
    }
    
    .privacy-section-content h2::before {
        width: 3px;
        height: 25px;
    }
}

/* Animações */
.privacy-content {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacy-section-content {
    animation: fadeInLeft 0.6s ease-out;
    animation-fill-mode: both;
}

.privacy-section-content:nth-child(1) { animation-delay: 0.1s; }
.privacy-section-content:nth-child(2) { animation-delay: 0.2s; }
.privacy-section-content:nth-child(3) { animation-delay: 0.3s; }
.privacy-section-content:nth-child(4) { animation-delay: 0.4s; }
.privacy-section-content:nth-child(5) { animation-delay: 0.5s; }
.privacy-section-content:nth-child(6) { animation-delay: 0.6s; }
.privacy-section-content:nth-child(7) { animation-delay: 0.7s; }
.privacy-section-content:nth-child(8) { animation-delay: 0.8s; }
.privacy-section-content:nth-child(9) { animation-delay: 0.9s; }
.privacy-section-content:nth-child(10) { animation-delay: 1.0s; }
.privacy-section-content:nth-child(11) { animation-delay: 1.1s; }
.privacy-section-content:nth-child(12) { animation-delay: 1.2s; }

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll suave para links internos */
html {
    scroll-behavior: smooth;
}

/* Estilo para links de navegação */
.nav-links a[href="#privacy"] {
    color: #667eea;
    font-weight: 600;
}

/* Hover effects */
.privacy-section-content h2:hover {
    color: #667eea;
    transition: color 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

.contact-item:hover i {
    color: #764ba2;
    transition: color 0.3s ease;
}
