/* ========================================
   MINIOUTLET - HOME TRANSICIÓN v3
   Archivo: custom-transicion.css
   Fecha: 06 Enero 2026

   CORRECCIONES:
   - Tipografía CMS reducida (era muy grande)
   - Espaciados entre secciones reducidos
   - Hero más compacto con espacio para imagen
   - Alineación CMS mejorada
======================================== */

/* ========================================
   1. VARIABLES
======================================== */
:root {
    /* Colores principales - ligeramente desaturados */
    --mo-cyan-primary: #2EB8D4;
    --mo-cyan-light: #E8F7FA;
    --mo-cyan-dark: #1A8FA8;
    --mo-magenta-primary: #E05A9E;
    --mo-magenta-light: #FCE8F2;
    --mo-magenta-dark: #C44585;

    /* Neutros */
    --mo-text-dark: #2D3748;
    --mo-text-medium: #5A6578;
    --mo-text-light: #8A94A6;
    --mo-bg-white: #FFFFFF;
    --mo-bg-cream: #FAFBFC;
    --mo-bg-soft: #F5F7FA;

    /* Tipografía */
    --mo-font-display: 'Quicksand', sans-serif;
    --mo-font-body: 'Nunito', sans-serif;
    
    /* Espaciados (reducidos) */
    --mo-section-padding: 50px 24px;
    --mo-section-padding-sm: 40px 20px;
}

/* ========================================
   2. TIPOGRAFÍA BASE CMS (CORREGIDA - más pequeña)
======================================== */

/* Títulos principales H2 - REDUCIDO de 2.5rem a 1.75rem */
.mo-about h2,
.mo-legal h2,
.mo-services h2 {
    font-family: var(--mo-font-display);
    font-size: clamp(1.4rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--mo-text-dark);
    margin-bottom: 16px;
    margin-top: 0;
    line-height: 1.3;
}

/* Subtítulos H3 - REDUCIDO de 1.5rem a 1.15rem */
.mo-about h3,
.mo-legal h3 {
    font-family: var(--mo-font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--mo-text-dark);
    margin-top: 28px;
    margin-bottom: 12px;
    line-height: 1.4;
}

/* Subtítulos H4 - REDUCIDO */
.mo-legal h4 {
    font-family: var(--mo-font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--mo-text-medium);
    margin-top: 20px;
    margin-bottom: 8px;
}

/* Párrafos - REDUCIDO de 1.05rem a 0.95rem */
.mo-about p,
.mo-legal p,
.mo-services p {
    font-size: 0.95rem;
    color: var(--mo-text-medium);
    line-height: 1.65;
    margin-bottom: 12px;
    text-align: left;
}

/* Listas - REDUCIDO */
.mo-about ul,
.mo-about ol,
.mo-legal ul,
.mo-legal ol {
    font-size: 0.95rem;
    color: var(--mo-text-medium);
    line-height: 1.65;
    margin-bottom: 16px;
    padding-left: 24px;
    text-align: left;
}

.mo-about li,
.mo-legal li {
    margin-bottom: 6px;
}

/* Énfasis */
.mo-about strong,
.mo-legal strong {
    color: var(--mo-text-dark);
    font-weight: 600;
}

.mo-about em,
.mo-legal em {
    color: var(--mo-text-light);
    font-style: italic;
    font-size: 0.9rem;
}

/* ========================================
   3. COMPONENTES COMUNES
======================================== */

/* Botones primarios */
.mo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--mo-cyan-primary);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--mo-font-display);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 184, 212, 0.2);
    border: none;
    cursor: pointer;
}

.mo-btn:hover {
    background: var(--mo-cyan-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 184, 212, 0.3);
}

/* Botón secundario (outline) */
.mo-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--mo-bg-white);
    border: 2px solid var(--mo-text-dark);
    color: var(--mo-text-dark);
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--mo-font-display);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mo-btn-secondary:hover {
    background: var(--mo-text-dark);
    color: white;
}

/* Badges */
.mo-servicio-badge {
    display: inline-block;
    font-family: var(--mo-font-display);
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--mo-cyan-dark);
    background: var(--mo-cyan-light);
    padding: 5px 12px;
    border-radius: 20px;
}

/* Formulario Newsletter */
.mo-newsletter {
    margin: 24px auto;
    max-width: 450px;
    text-align: center;
}

.mo-newsletter input[type="email"] {
    width: 100%;
    padding: 14px 20px;
    margin-bottom: 10px;
    border: 2px solid var(--mo-cyan-light);
    border-radius: 50px;
    font-family: var(--mo-font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.mo-newsletter input[type="email"]:focus {
    border-color: var(--mo-cyan-primary);
}

.mo-newsletter button,
.mo-newsletter .mo-btn {
    width: 100%;
}

/* Enlaces CMS */
.mo-about a:not(.mo-btn),
.mo-legal a {
    color: var(--mo-cyan-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.mo-about a:not(.mo-btn):hover,
.mo-legal a:hover {
    color: var(--mo-cyan-dark);
    text-decoration: underline;
}

/* ========================================
   4. LAYOUTS / CONTENEDORES CMS
======================================== */

/* Container genérico con max-width */
.mo-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Secciones CMS con padding vertical REDUCIDO */
.mo-about,
.mo-legal {
    padding: 40px 24px;
    max-width: 720px;
    margin: 0 auto;
    background: var(--mo-bg-white);
}

/* Primer elemento sin margen superior */
.mo-about > *:first-child,
.mo-legal > *:first-child {
    margin-top: 0;
}

/* Sección servicios (home) */
.mo-services {
    padding: var(--mo-section-padding);
    background: var(--mo-bg-white);
    text-align: center;
}

.mo-services .mo-container {
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   5. SECCIONES HOME (específicas)
======================================== */

/* === BANNER TOP === */
.header-banner {
    background: linear-gradient(135deg, #2EB8D4 0%, #1A8FA8 100%);
    color: white;
    padding: 10px 20px;
    text-align: center;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
}

.header-banner a {
    color: white;
    text-decoration: none;
}

.header-banner a:hover {
    opacity: 0.9;
}

.mo-banner-top {
    background: linear-gradient(135deg, var(--mo-cyan-primary) 0%, var(--mo-cyan-dark) 100%);
    color: white;
    padding: 10px 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    font-family: var(--mo-font-display);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

.mo-banner-top a {
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.2s ease;
}

.mo-banner-top a:hover {
    opacity: 0.9;
}

.mo-banner-top .emoji {
    font-size: 1em;
    animation: mo-rocket 2s ease-in-out infinite;
}

@keyframes mo-rocket {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

/* === HERO (COMPACTADO + ESPACIO IMAGEN) === */
.mo-hero {
    padding: 50px 24px 60px;
    text-align: center;
    background: var(--mo-bg-cream);
    position: relative;
    overflow: hidden;
}

.mo-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, var(--mo-cyan-light) 0%, transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}

.mo-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 40%;
    height: 150%;
    background: radial-gradient(ellipse, var(--mo-magenta-light) 0%, transparent 70%);
    opacity: 0.4;
    pointer-events: none;
}

.mo-hero .mo-container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === HERO CON IMAGEN (layout 2 columnas) === */
.mo-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.mo-hero-text {
    order: 1;
}

/* Espacio para imagen en Hero
   Tamaño recomendado: 500x400px o 600x480px
   Formato: PNG con transparencia o JPG
   El módulo ps_customtext permite añadir HTML con imagen
*/
.mo-hero-image {
    order: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mo-hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    border-radius: 12px;
}

/* Placeholder si no hay imagen */
.mo-hero-image-placeholder {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--mo-cyan-light) 0%, var(--mo-magenta-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mo-font-display);
    font-size: 0.85rem;
    color: var(--mo-text-light);
    border: 2px dashed var(--mo-cyan-primary);
    opacity: 0.6;
}

/* Hero sin imagen (centrado) */
.mo-hero-centered {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

/* Badge con enlace "Nuestra Historia" */
.mo-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--mo-bg-white);
    border: 2px solid var(--mo-cyan-light);
    padding: 8px 16px;
    border-radius: 50px;
    font-family: var(--mo-font-display);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--mo-cyan-dark);
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(46, 184, 212, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.mo-hero-badge:hover {
    border-color: var(--mo-cyan-primary);
    box-shadow: 0 4px 20px rgba(46, 184, 212, 0.2);
    transform: translateY(-1px);
}

.mo-hero-badge .years {
    background: var(--mo-cyan-primary);
    color: white;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.75rem;
}

/* H1 Hero - REDUCIDO */
.mo-hero h1 {
    font-family: var(--mo-font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--mo-text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.mo-hero h1 span {
    color: var(--mo-cyan-primary);
}

/* Subtítulo Hero - REDUCIDO */
.mo-hero-subtitle {
    font-size: 1.1rem;
    color: var(--mo-text-medium);
    max-width: 550px;
    margin: 0 auto 14px;
    line-height: 1.5;
}

/* Hero en layout 2 columnas */
.mo-hero-text .mo-hero-subtitle {
    margin: 0 0 14px 0;
}

/* Mensaje Hero - REDUCIDO */
.mo-hero-message {
    font-size: 0.95rem;
    color: var(--mo-text-light);
    max-width: 500px;
    margin: 0 auto 24px;
    line-height: 1.5;
}

.mo-hero-text .mo-hero-message {
    margin: 0 0 24px 0;
}

/* CTA Hero */
.mo-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--mo-cyan-primary);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--mo-font-display);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(46, 184, 212, 0.25);
}

.mo-hero-cta:hover {
    background: var(--mo-cyan-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(46, 184, 212, 0.35);
}

/* === SERVICIOS (grid con tarjetas) - REDUCIDO === */
.mo-servicios {
    padding: var(--mo-section-padding);
    background: var(--mo-bg-white);
}

.mo-servicios .mo-container {
    max-width: 1100px;
    margin: 0 auto;
}

.mo-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.mo-section-label {
    display: inline-block;
    font-family: var(--mo-font-display);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--mo-magenta-primary);
    margin-bottom: 10px;
}

.mo-section-title {
    font-family: var(--mo-font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: var(--mo-text-dark);
    margin-bottom: 12px;
}

.mo-section-subtitle {
    font-size: 1rem;
    color: var(--mo-text-medium);
    max-width: 480px;
    margin: 0 auto;
}

.mo-servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}

.mo-servicio-card {
    background: var(--mo-bg-cream);
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.mo-servicio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--mo-cyan-primary), var(--mo-magenta-primary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mo-servicio-card:hover {
    transform: translateY(-4px);
    border-color: var(--mo-cyan-light);
    box-shadow: 0 15px 40px rgba(46, 184, 212, 0.1);
}

.mo-servicio-card:hover::before {
    opacity: 1;
}

.mo-servicio-icon {
    width: 60px;
    height: 60px;
    background: var(--mo-bg-white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 16px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.04);
}

.mo-servicio-card h3 {
    font-family: var(--mo-font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--mo-text-dark);
    margin-bottom: 10px;
}

.mo-servicio-card p {
    font-size: 0.9rem;
    color: var(--mo-text-medium);
    line-height: 1.5;
    margin-bottom: 14px;
}

/* === CAPTURA EMAIL - REDUCIDO === */
.mo-email-capture {
    padding: var(--mo-section-padding);
    background: linear-gradient(135deg, var(--mo-cyan-primary) 0%, var(--mo-cyan-dark) 100%);
    position: relative;
    overflow: hidden;
}

.mo-email-capture::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: var(--mo-magenta-primary);
    border-radius: 50%;
    opacity: 0.12;
}

.mo-email-capture::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 160px;
    height: 160px;
    background: white;
    border-radius: 50%;
    opacity: 0.06;
}

.mo-email-capture .mo-container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
}

.mo-email-capture h2 {
    font-family: var(--mo-font-display);
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.mo-email-capture .subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
}

.mo-email-form {
    display: flex;
    gap: 10px;
    max-width: 440px;
    margin: 0 auto 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.mo-email-form input[type="email"] {
    flex: 1;
    min-width: 220px;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    font-family: var(--mo-font-body);
    font-size: 0.95rem;
    outline: none;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.mo-email-form button {
    background: var(--mo-magenta-primary);
    color: white;
    border: none;
    padding: 14px 26px;
    border-radius: 50px;
    font-family: var(--mo-font-display);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(224, 90, 158, 0.35);
}

.mo-email-form button:hover {
    background: var(--mo-magenta-dark);
    transform: translateY(-2px);
}

.mo-email-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
}

/* === LIQUIDACIÓN - REDUCIDO === */
.mo-liquidacion {
    padding: var(--mo-section-padding);
    background: var(--mo-bg-cream);
}

.mo-liquidacion .mo-container {
    max-width: 1100px;
    margin: 0 auto;
}

.mo-liquidacion .mo-section-label {
    color: #E53E3E;
    background: #FED7D7;
    padding: 5px 12px;
    border-radius: 20px;
}

.mo-ver-todos {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--mo-bg-white);
    border: 2px solid var(--mo-text-dark);
    color: var(--mo-text-dark);
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--mo-font-display);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.mo-ver-todos:hover {
    background: var(--mo-text-dark);
    color: white;
}

.mo-liquidacion-cta {
    text-align: center;
}

/* === GALERÍA LICENCIAS - REDUCIDO === */
.mo-galeria {
    padding: var(--mo-section-padding);
    background: var(--mo-bg-white);
}

.mo-galeria .mo-container {
    max-width: 1100px;
    margin: 0 auto;
}

.mo-licencias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 14px;
    max-width: 800px;
    margin: 0 auto;
}

.mo-licencia-item {
    background: var(--mo-bg-cream);
    border-radius: 12px;
    padding: 18px 12px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
}

.mo-licencia-item:hover {
    transform: scale(1.05);
    border-color: var(--mo-cyan-light);
    box-shadow: 0 8px 25px rgba(46, 184, 212, 0.12);
}

.mo-licencia-icon {
    font-size: 2rem;
    margin-bottom: 8px;
    display: block;
}

.mo-licencia-name {
    font-family: var(--mo-font-display);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--mo-text-dark);
}

/* === DESPEDIDA - REDUCIDO === */
.mo-despedida {
    padding: 60px 24px;
    text-align: center;
    background: var(--mo-bg-cream);
}

.mo-despedida::before {
    content: '❤️';
    font-size: 2.5rem;
    display: block;
    margin-bottom: 18px;
    opacity: 0.8;
}

.mo-despedida h2 {
    font-family: var(--mo-font-display);
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    font-weight: 800;
    color: var(--mo-text-dark);
    margin-bottom: 14px;
}

.mo-despedida p {
    font-size: 1rem;
    color: var(--mo-text-medium);
    max-width: 450px;
    margin: 0 auto 18px;
    line-height: 1.6;
}

.mo-despedida .firma {
    font-family: var(--mo-font-display);
    font-weight: 700;
    color: var(--mo-cyan-primary);
    font-size: 1rem;
}

/* ========================================
   6. OVERRIDES Y FIXES
======================================== */

/* === FORZAR ESTILOS SOBRE TEMA === */
.header-banner,
.header-banner a,
.header-banner span {
    color: white !important;
}

.mo-hero a,
.mo-hero-cta {
    color: white !important;
}

.mo-servicios h3 {
    color: var(--mo-text-dark) !important;
}

.mo-email-capture,
.mo-email-capture h2,
.mo-email-capture p,
.mo-email-capture a {
    color: white !important;
}

/* === FIX: Eliminar espacio entre header y hero === */
body#index .container {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body#index #wrapper {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

body#index #wrapper > .container {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100%;
}

body#index #content-wrapper {
    padding: 0 !important;
    margin: 0 !important;
}

body#index #main {
    padding: 0 !important;
    margin: 0 !important;
}

body#index #content.page-home {
    padding: 0 !important;
    margin: 0 !important;
}

body#index #custom-text {
    margin: 0 !important;
    padding: 0 !important;
}

/* Hero full-width (rompe el container) */
body#index .mo-hero {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
}

/* Secciones home full-width */
body#index .ets-htmlBox-hook .mo-servicios,
body#index .ets-htmlBox-hook .mo-services,
body#index .ets-htmlBox-hook .mo-email-capture,
body#index .ets-htmlBox-hook .mo-galeria,
body#index .ets-htmlBox-hook .mo-despedida {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
}

body#index .ets-htmlBox-hook {
    margin: 0;
    padding: 0;
}

/* === Ocultar carrito en modo transición === */
#_desktop_cart,
.blockcart {
    display: none !important;
}

/* === Cambiar título productos destacados a Liquidación === */
body#index .featured-products .products-section-title {
    font-size: 0;
}

body#index .featured-products .products-section-title::after {
    content: '🔥 Liquidación - Últimas unidades';
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-family: var(--mo-font-display);
    font-weight: 800;
    color: var(--mo-text-dark);
}

/* ========================================
   7. RESPONSIVE
======================================== */

@media (max-width: 768px) {
    :root {
        --mo-section-padding: 40px 20px;
        --mo-section-padding-sm: 30px 16px;
    }
    
    .mo-hero {
        padding: 40px 20px 50px;
    }
    
    /* Hero 2 columnas a 1 columna */
    .mo-hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .mo-hero-text {
        order: 1;
    }
    
    .mo-hero-image {
        order: 2;
    }
    
    .mo-hero-text .mo-hero-subtitle,
    .mo-hero-text .mo-hero-message {
        margin-left: auto;
        margin-right: auto;
    }
    
    .mo-hero-image-placeholder {
        height: 200px;
    }

    .mo-email-form {
        flex-direction: column;
        align-items: stretch;
    }

    .mo-email-form input[type="email"],
    .mo-email-form button {
        min-width: 100%;
    }

    .mo-servicios-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }

    .mo-licencias-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mo-about,
    .mo-legal {
        padding: 30px 20px;
    }

    .mo-about h2,
    .mo-legal h2 {
        font-size: 1.3rem;
    }

    .mo-about h3,
    .mo-legal h3 {
        font-size: 1.05rem;
        margin-top: 22px;
    }
    
    .mo-about p,
    .mo-legal p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .mo-banner-top {
        font-size: 0.8rem;
        padding: 8px 14px;
    }

    .mo-licencias-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mo-about,
    .mo-legal {
        padding: 24px 16px;
    }
    
    .mo-hero h1 {
        font-size: 1.8rem;
    }
    
    .mo-hero-subtitle {
        font-size: 1rem;
    }
}

/* ========================================
   8. ANIMACIONES
======================================== */

@keyframes mo-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mo-hero .mo-container > *,
.mo-hero-text > *,
.mo-hero-image {
    animation: mo-fadeInUp 0.6s ease forwards;
}

.mo-hero-badge { animation-delay: 0.1s; }
.mo-hero h1 { animation-delay: 0.15s; }
.mo-hero-subtitle { animation-delay: 0.2s; }
.mo-hero-message { animation-delay: 0.25s; }
.mo-hero-cta { animation-delay: 0.3s; }
.mo-hero-image { animation-delay: 0.35s; }
