/* --- Estilo para Páginas Legais (Termos e Privacidade) --- */
:root {
    --primary-color: #0a4a8f;
    --secondary-color: #18a999;
    --dark-text-color: #2c3e50;
    --light-text-color: #7f8c8d;
    --light-bg-color: #fdfdfd;
    --white-color: #FFFFFF;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    --container-width: 800px; /* Mais estreito para melhor legibilidade */
}

body {
    font-family: var(--font-secondary);
    color: var(--dark-text-color);
    line-height: 1.8;
    background-color: var(--light-bg-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

/* --- Cabeçalho Simples --- */
.legal-header {
    background-color: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    border-bottom: 3px solid var(--primary-color);
}

.header-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    font-family: var(--font-primary);
}

.back-link {
    font-family: var(--font-primary);
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--secondary-color);
}

/* --- Conteúdo Principal --- */
.legal-content {
    max-width: var(--container-width);
    margin: 60px auto;
    padding: 0 20px;
}

.legal-content h1 {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 20px;
}

.legal-content .last-updated {
    font-size: 0.9rem;
    color: var(--light-text-color);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--dark-text-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content p, .legal-content li {
    margin-bottom: 1rem;
    text-align: justify;
}

.legal-content ul {
    padding-left: 20px;
}

.legal-content a {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* --- Rodapé (Reutilizado do style.css para consistência) --- */
.footer-section {
    background-color: var(--dark-text-color);
    color: #ccc;
    padding: 50px 0;
    text-align: center;
    margin-top: 80px;
}
.footer-content {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-content p { color: #ccc; margin-bottom: 10px; font-size: 0.9rem; text-align: center; }
.footer-content .cnpj { font-size: 0.8rem; opacity: 0.7; margin: 15px 0; }
.footer-socials { margin-bottom: 20px; }
.footer-socials a { color: var(--white-color); font-size: 1.5rem; margin: 0 12px; transition: color 0.3s ease, transform 0.3s ease; display: inline-block; }
.footer-socials a:hover { color: var(--secondary-color); transform: translateY(-3px); }
.footer-links a { color: #ccc; text-decoration: none; margin: 0 8px; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--white-color); }