/* Estilos para páginas legales (política de cookies, aviso legal, etc.) */

.legal-content {
    background-color: #fff;
    padding: 120px 0 60px;
    color: #333;
}

.legal-content .container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content .section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    text-align: left;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 1rem;
}

.legal-text {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.legal-text h2 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

.legal-text ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

.legal-text a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.3s ease;
}

.legal-text a:hover {
    border-bottom-color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .legal-content {
        padding: 120px 20px 40px;
    }
    
    .legal-text {
        padding: 1.5rem;
    }
    
    .legal-content .section-title {
        font-size: 2rem;
    }
    
    .legal-text h2 {
        font-size: 1.4rem;
    }
}
