/* === PÁGINAS LEGALES === */
.legal-page {
    background: #FFF;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.legal-content {
    flex: 1;
    padding: 60px 0;
    background: #FFF;
}

.legal-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.legal-wrapper {
    background: #FFF;
    padding: 0;
}

/* === HEADER LEGAL === */
.legal-header {
    margin-bottom: 40px;
    text-align: center;
}

.legal-header h1 {
    color: #0E3A2F;
    font-family: 'Urbanist', sans-serif;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 16px;
}

/* === CONTENIDO LEGAL === */
.legal-content-text {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    color: #0E3A2F;
    font-family: 'Urbanist', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 20px;
    margin-top: 40px;
}

.legal-section h3 {
    color: #0E3A2F;
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 12px;
    margin-top: 24px;
}

.legal-section p {
    color: #333;
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 16px;
    text-align: justify;
}

.legal-section p strong {
    font-weight: 600;
    color: #0E3A2F;
}

.legal-section a {
    color: #00CB7B;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #0E3A2F;
    text-decoration: underline;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .legal-content {
        padding: 40px 0;
    }
    
    .legal-container {
        padding: 0 20px;
    }
    
    .legal-header h1 {
        font-size: 32px;
    }
    
    .legal-section h2 {
        font-size: 20px;
        line-height: 28px;
    }
    
    .legal-section h3 {
        font-size: 16px;
        line-height: 22px;
    }
    
    .legal-section p {
        font-size: 15px;
        line-height: 22px;
        text-align: left;
    }
    
    .legal-section {
        margin-bottom: 32px;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 30px 0;
    }
    
    .legal-container {
        padding: 0 15px;
    }
    
    .legal-header h1 {
        font-size: 28px;
    }
    
    .legal-section h2 {
        font-size: 18px;
        line-height: 24px;
        margin-top: 32px;
    }
    
    .legal-section h3 {
        font-size: 15px;
        line-height: 20px;
        margin-top: 20px;
    }
    
    .legal-section p {
        font-size: 14px;
        line-height: 20px;
    }
    
    .legal-section {
        margin-bottom: 28px;
    }
}

/* === ENLACES EN FOOTERS === */
.legal-links a[href*="aviso-legal"] {
    font-weight: 500;
}

.contact-footer .legal-links a[href*="aviso-legal"] {
    font-weight: 500;
} 