/* CSS para Páginas Legais */

.politicas-content {
    padding: 120px 0 80px;
    background: #f8f9fa;
    min-height: 100vh;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.content-wrapper h1 {
    color: var(--primary-color, #dc3545);
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
    border-bottom: 2px solid #eee;
    padding-bottom: 20px;
}

.content-wrapper h2 {
    color: #333;
    font-size: 1.5rem;
    margin: 40px 0 15px;
    padding-left: 15px;
    border-left: 4px solid var(--primary-color, #dc3545);
}

.content-wrapper p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.content-wrapper ul {
    margin: 20px 0;
    padding-left: 30px;
}

.content-wrapper li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
}

.content-wrapper strong {
    color: #333;
}

.contact-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border: 1px solid #e9ecef;
}

.contact-info p {
    margin: 10px 0;
    color: #333;
}

.legal-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.footer-simple {
    background: #333;
    color: white;
    text-align: center;
    padding: 30px 0;
}

.footer-simple p {
    margin: 0;
    color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .content-wrapper h1 {
        font-size: 2rem;
    }
    
    .content-wrapper h2 {
        font-size: 1.3rem;
    }
    
    .legal-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .legal-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Print styles */
@media print {
    .header,
    .legal-buttons,
    .footer-simple {
        display: none;
    }
    
    .politicas-content {
        padding: 0;
        background: white;
    }
    
    .content-wrapper {
        box-shadow: none;
        padding: 20px;
    }
}

/* Melhorias de legibilidade */
.content-wrapper {
    font-family: Georgia, 'Times New Roman', serif;
}

.content-wrapper h1,
.content-wrapper h2 {
    font-family: 'Poppins', Arial, sans-serif;
}

.content-wrapper p {
    text-indent: 0;
}

.content-wrapper ul li {
    position: relative;
}

.content-wrapper a {
    color: var(--primary-color, #dc3545);
    text-decoration: underline;
}

.content-wrapper a:hover {
    color: #c82333;
} 