/* Estilos para Páginas Legais */

.legal-content {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.legal-content h1 {
    color: #1e3a8a;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.legal-content section {
    margin-bottom: 2rem;
}

.legal-content h2 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-content p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: justify;
}

.legal-content ul {
    color: #4b5563;
    line-height: 1.8;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #0284c7;
}

@media (max-width: 768px) {
    .legal-content {
        margin: 2rem auto;
        padding: 1.5rem;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.3rem;
    }

    .legal-content p {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .legal-content {
        margin: 1rem auto;
        padding: 1rem;
    }

    .legal-content h1 {
        font-size: 1.5rem;
    }

    .legal-content h2 {
        font-size: 1.1rem;
    }

    .legal-content p {
        font-size: 0.95rem;
    }
}
