/* --- ESTILOS PARA LA PÁGINA DE TEXTOS LEGALES --- */

.legal-main {
    padding-top: var(--header-height);
    padding-bottom: 80px;
    background-color: #f0f2f5;
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 40px;
}

.legal-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.legal-title .highlight {
    color: var(--secondary-color);
}

.legal-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.legal-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    padding: 30px 40px;
    margin-bottom: 40px;
}

.legal-card h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 25px;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
}

.legal-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-top: 30px;
    margin-bottom: 10px;
}

.legal-card p,
.legal-card li {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #444;
}

.legal-card p strong {
    color: #000;
}

.legal-card ul {
    list-style: disc;
    padding-left: 25px;
    margin-top: 15px;
}

.legal-card ul li {
    margin-bottom: 10px;
}

.legal-card a {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

.legal-card a:hover {
    color: var(--hover-color);
}