/* ==========================================================================
   ESTILOS.CSS - VERSIÓN FINAL CORREGIDA (FLECHA Y CENTRADO)
   ========================================================================== */

/* --- ESTILOS BASE --- */
html { scroll-behavior: smooth; font-size: 16px; -webkit-tap-highlight-color: transparent; }
* { box-sizing: border-box; }

:root {
    --azul: #1a2b6d; --dorado: #C69C3A; --blanco: #FFFFFF; --negro: #222222;
    --gris-claro: #f4f6f8; --fondo-gris: #f9fafb;
}

body {
    font-family: 'Inter', sans-serif; margin: 0; padding: 0;
    color: var(--negro); line-height: 1.7; background-color: var(--blanco);
    display: flex; flex-direction: column; min-height: 100vh; overflow-x: hidden;
    padding-top: 90px;
}

h1, h2, h3, h4, .cta-button, .logo-menu, .nav-link-item, .dropdown-trigger, .price-new, .module-number { 
    font-family: 'Poppins', sans-serif;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; transition: all 0.3s ease; }
ul { list-style: none; padding: 0; margin: 0; }

/* --- HEADER & NAV --- */
header { 
    background-color: var(--blanco); padding: 0; 
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); 
    height: 90px;
}

.top-info-bar { background-color: var(--azul); color: var(--blanco); font-size: 0.8rem; padding: 8px 5%; display: flex; justify-content: space-between; align-items: center; max-height: 60px; overflow: hidden; }
.info-item { display: flex; align-items: center; gap: 8px; }
.info-item i { color: var(--dorado); font-size: 0.9rem; }

nav { display: flex; justify-content: space-between; align-items: center; padding: 0 5%; height: 90px; position: relative; background: white; z-index: 1001; }
.logo-menu { cursor: pointer; display: flex; align-items: center; height: 100%; z-index: 1002; }
.logo-imgs-header { display: flex; gap: 15px; align-items: center; }
.logo-imgs-header img { height: 60px; width: auto; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)); }
.linea-separadora { width: 2px; height: 45px; background-color: var(--dorado); opacity: 0.6; border-radius: 2px; }

/* MENÚ ESCRITORIO */
.menu-toggle { display: none; }
.nav-links { display: flex; gap: 2rem; align-items: center; height: 100%; }

/* ESTILOS ESPECÍFICOS DE ESCRITORIO */
@media (min-width: 901px) {
    .nav-link-item { 
        color: var(--azul); font-weight: 700; font-size: 0.95rem; 
        text-transform: uppercase; letter-spacing: 0.5px; 
        position: relative; cursor: pointer; 
        display: flex; align-items: center; height: 100%; padding: 0 5px; 
    }
    .nav-link-item::after { 
        content: ''; position: absolute; width: 0; height: 3px; 
        bottom: 28px; left: 0; background-color: var(--dorado); 
        transition: width 0.3s; 
    }
    .nav-link-item:hover { color: var(--dorado); }
    .nav-link-item:hover::after, .nav-link-item.active::after { width: 100%; }

    .nav-item-dropdown { position: static; height: 100%; display: flex; align-items: center; cursor: pointer; }
    
    .dropdown-trigger { 
        color: var(--azul); font-weight: 700; font-size: 0.95rem; 
        text-transform: uppercase; display: flex; align-items: center; 
        gap: 5px; height: 100%; position: relative; padding: 0 5px; 
    }
    
    .desktop-arrow { display: inline-block; font-size: 0.8rem; margin-left: 5px; }
    .mobile-submenu-toggle { display: none; } 

    .dropdown-trigger::after { 
        content: ''; position: absolute; width: 0; height: 3px; 
        bottom: 28px; left: 0; background-color: var(--dorado); 
        transition: width 0.3s; 
    }
    .nav-item-dropdown:hover .dropdown-trigger { color: var(--dorado); background: #f9f9f9; }
    .nav-item-dropdown:hover .dropdown-trigger::after { width: 100%; }

    /* Mega Menú PC */
    .mega-menu { position: absolute; top: 100%; left: 0; width: 100%; background: white; border-top: 1px solid #eee; box-shadow: 0 15px 40px rgba(0,0,0,0.1); padding: 3rem 10%; display: none; grid-template-columns: repeat(3, 1fr); gap: 2rem; z-index: 1000; }
    .nav-item-dropdown:hover .mega-menu { display: grid; }
    .menu-col h4 { color: var(--azul); margin-bottom: 1rem; border-bottom: 1px solid #eee; padding-bottom: 5px; font-weight: 800; }
    .menu-col a { display: block; color: #555; font-size: 0.9rem; margin-bottom: 8px; border-left: 2px solid transparent; padding-left: 10px; }
    .menu-col a:hover { color: var(--dorado); border-left-color: var(--dorado); background: #f9f9f9; }
}

.page-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 900; display: none; pointer-events: none; transition: opacity 0.3s; }
header:has(.nav-item-dropdown:hover) ~ .page-overlay { display: block; }

/* VISTAS */
.view-section { display: none; animation: fadeIn 0.5s ease; }
.view-section.active-view { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ==========================================================================
   HERO SLIDER (INDEX) - ESCRITORIO (CENTRADO MATEMÁTICO)
   ========================================================================== */
.hero-home { 
    position: relative; 
    /* Altura = 100% de la pantalla MENOS el header (90px) */
    height: calc(100vh - 90px); 
    min-height: 600px; /* Seguridad */
    
    display: flex !important; 
    flex-direction: column !important; 
    
    /* ESTO CENTRA LOS LOGOS Y TEXTOS EN EL MEDIO DE LA PANTALLA */
    justify-content: center !important; 
    align-items: center !important; 
    
    text-align: center !important; 
    overflow: hidden; 
    background-image: url('../Imagenes/hero1.jpg'); 
    background-size: cover; 
    background-position: center;
    padding: 0; 
}

.hero-slider { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s ease-in-out; }
.hero-slide:first-child { opacity: 1 !important; }
.hero-slide.active { opacity: 1; }
.hero-overlay-dark { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(2, 18, 80, 0.6); z-index: 2; }

.hero-content { 
    position: relative; z-index: 3; max-width: 1200px; width: 100%; 
    padding: 0 20px; color: white; margin: 0 auto; 
    display: flex; flex-direction: column; align-items: center;
}

.hero-logo-central { display: flex; justify-content: center; gap: 4rem; margin-bottom: 2rem; flex-wrap: wrap; width: 100%; }
.hero-logo-central img { width: 220px; height: 220px; object-fit: contain; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5)); }
.hero-home h1 { font-size: 3.5rem; margin-bottom: 0.5rem; font-weight: 900; letter-spacing: -1px; text-shadow: 0 4px 10px rgba(0,0,0,0.5); width: 100%; }
.hero-home p { font-size: 1.5rem; color: #f0f0f0; margin-bottom: 3rem; text-shadow: 0 2px 5px rgba(0,0,0,0.5); width: 100%; }
.cta-button { display: inline-block; background: var(--dorado); color: white; padding: 1.2rem 3.5rem; border-radius: 50px; font-weight: 700; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 10px 25px rgba(0,0,0,0.3); transition: all 0.3s; cursor: pointer; }
.cta-button:hover { transform: translateY(-3px); background-color: white; color: var(--azul); }

/* --- HERO DETALLE --- */
.hero { background: var(--azul); color: white; padding: 5rem 5%; text-align: center; border-bottom: 5px solid var(--dorado); position: relative; }
.hero h1 { font-size: 3rem; margin: 1rem 0; line-height: 1.1; font-weight: 900; }
.hero p { font-size: 1.2rem; opacity: 0.9; }

/* SECCIONES COMUNES */
.why-choose-section { padding: 6rem 5%; background-color: #fcfcfc; }
.why-container { max-width: 1250px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: start; }
.why-left-col { display: flex; flex-direction: column; gap: 2rem; }
.why-image-wrapper { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.15); height: 350px; }
.why-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.why-content-text h2 { font-size: 2.5rem; color: var(--dorado); font-weight: 800; margin-bottom: 1rem; }
.btn-link-arrow { color: var(--azul); font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }
.why-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.feature-card { background: var(--blanco); padding: 2.5rem; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.06); border: 1px solid #eee; transition: 0.3s; }
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); border-color: var(--dorado); }
.feature-card h3 { color: var(--dorado); font-size: 1.2rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 10px; }

/* CURSOS & CATALOGO */
.blue-banner-header { padding: 4rem 2rem 2rem; text-align: center; }
.blue-banner-header h2 { color: var(--azul); font-size: 3rem; font-weight: 900; margin-bottom: 0.5rem; }
.catalog-section { padding: 0 5% 6rem 5%; }
.grid-cursos { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; max-width: 1350px; margin: 0 auto; }
.curso-card { background: var(--blanco); border: 1px solid #e0e0e0; border-radius: 4px; overflow: hidden; display: flex; flex-direction: column; transition: all 0.3s ease; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.curso-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-color: var(--dorado); }
.card-header { height: 220px; background-color: #f0f0f0; background-size: cover; background-position: center; }
.card-body { padding: 2rem; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.card-logos { display: flex; gap: 12px; margin-bottom: 15px; border-bottom: 1px solid #f0f0f0; padding-bottom: 12px; }
.card-logos img { height: 32px; object-fit: contain; }
.tag { display: inline-block; padding: 5px 10px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; color: white; border-radius: 2px; margin-bottom: 10px; width: fit-content; }
.bg-azul { background-color: #1a2b6d; }
.bg-dorado { background-color: #C69C3A; }
.curso-card h3 { font-size: 1.4rem; font-weight: 800; margin: 5px 0 10px 0; color: #333; line-height: 1.3; }
.btn-card { display: block; width: 100%; text-align: center; border: 2px solid var(--azul); color: var(--azul); background: transparent; padding: 12px 0; font-weight: 700; text-transform: uppercase; border-radius: 3px; transition: 0.3s; cursor: pointer; }
.btn-card:hover { background: var(--azul); color: var(--blanco); }

/* OTROS */
.container-qs { max-width: 1100px; margin: 0 auto; padding: 6rem 2rem 4rem; }
.historia-card { background: white; padding: 4rem; text-align: center; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); margin-bottom: 6rem; }
.historia-card h2 { color: var(--dorado); font-size: 2.2rem; margin-bottom: 1.5rem; }
.mv-gold-section { background-color: var(--dorado); padding: 6rem 5%; color: white; text-align: center; margin-bottom: 6rem; display: flex; justify-content: center; }
.mv-gold-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; max-width: 1100px; width: 100%; }
.mv-gold-item { padding: 0 3rem; display: flex; flex-direction: column; align-items: center; }
.mv-gold-item:first-child { border-right: 2px solid rgba(255,255,255,0.3); }
.mv-gold-item i { font-size: 3.5rem; margin-bottom: 1.5rem; }
.mv-gold-item h3 { font-size: 2rem; margin-bottom: 1rem; }
.ceo-section { background: white; border-radius: 20px; padding: 4rem; box-shadow: 0 15px 40px rgba(0,0,0,0.1); margin-bottom: 6rem; border-left: 5px solid var(--dorado); }
.ceo-container { display: flex; align-items: center; gap: 4rem; }
.ceo-image img { width: 320px; border-radius: 10px; box-shadow: 10px 10px 0px var(--azul); }
.ceo-info h3 { font-size: 2.2rem; color: var(--azul); margin-bottom: 1rem; font-weight: 800; }
.ceo-role { display: inline-block; background-color: #f0f4ff; color: var(--azul); padding: 5px 15px; border-radius: 50px; font-weight: 700; font-size: 0.9rem; margin-bottom: 1.5rem; }
.ceo-functions li { position: relative; padding-left: 25px; margin-bottom: 10px; }
.ceo-functions li::before { content: '\f00c'; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; color: var(--dorado); }
.convenios-section { padding: 4rem 5%; text-align: center; }
.logos-grid { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.logo-item img { height: 90px; filter: grayscale(100%); opacity: 0.7; transition: 0.3s; }
.logo-item img:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.05); }

/* ESPECÍFICOS DE DETALLE CURSO */
.main-layout { display: grid; grid-template-columns: 1fr 400px; gap: 5rem; width: 95%; max-width: 1800px; margin: 4rem auto; align-items: start; }
.temario-box h2 { color: var(--azul); font-size: 2.2rem; margin-bottom: 2rem; font-weight: 800; border-bottom: 3px solid var(--azul); padding-bottom: 10px; display: inline-block; }
.module-list { display: flex; flex-direction: column; gap: 15px; }
.module-list li { background: white; padding: 1.5rem 2rem; border: 1px solid #eee; border-left: 6px solid var(--dorado); border-radius: 4px; display: flex; align-items: center; gap: 30px; transition: all 0.2s ease-in-out; box-shadow: 0 4px 10px rgba(0,0,0,0.03); width: 100%; box-sizing: border-box; }
.module-list li:hover { transform: translateX(5px); box-shadow: 0 10px 20px rgba(0,0,0,0.08); border-left-color: var(--azul); }
.module-number { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 2.2rem; color: #e0e0e0; min-width: 60px; text-align: center; line-height: 1; }
.module-list li:hover .module-number { color: var(--azul); }
.module-text { font-size: 1.1rem; font-weight: 600; color: #333; }
.sticky-card { position: sticky; top: 130px; background: white; border: 1px solid #e0e0e0; border-top: 6px solid var(--azul); border-radius: 8px; box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.price-header { background: #fff; padding: 2rem; text-align: center; border-bottom: 1px solid #eee; }
.price-new { font-size: 3.5rem; color: var(--azul); font-weight: 900; margin: 0; line-height: 1; }
.price-old { text-decoration: line-through; color: #888; font-size: 1.1rem; }
.form-body { padding: 2rem; }
.btn-wsp-card { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; background-color: #25D366; color: white; padding: 16px; border-radius: 4px; text-decoration: none; font-weight: 800; font-size: 1rem; text-transform: uppercase; margin-bottom: 20px; box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3); transition: 0.3s; box-sizing: border-box; }
.btn-wsp-card:hover { background-color: #128C7E; transform: translateY(-2px); color: white; }
.separator-text { text-align: center; margin-bottom: 20px; color: #888; font-size: 0.9rem; font-weight: 600; }
.input-field { width: 100%; padding: 14px; margin-bottom: 15px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; font-size: 0.95rem; }
.btn-enviar { width: 100%; background: var(--azul); color: white; border: none; padding: 16px; font-weight: 800; cursor: pointer; text-transform: uppercase; border-radius: 4px; font-size: 1rem; transition: 0.3s; }
.btn-enviar:hover { background: var(--dorado); transform: translateY(-2px); }
.btn-back-nav { display: inline-flex; align-items: center; gap: 8px; color: var(--azul); font-weight: 700; cursor: pointer; border: 2px solid var(--azul); padding: 5px 15px; border-radius: 4px; text-decoration: none; font-size: 0.9rem; margin-left: 15px; }
.btn-back-nav:hover { background: var(--azul); color: white; }

/* FOOTER */
footer { background-color: var(--azul); color: var(--blanco); padding: 4rem 5% 2rem 5%; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; text-align: left; }
.footer-col h3 { color: var(--dorado); font-size: 1.2rem; margin-bottom: 1.5rem; text-transform: uppercase; }
.footer-col p { font-size: 0.95rem; margin-bottom: 1rem; opacity: 0.9; display: flex; align-items: center; gap: 10px; }
.footer-col p i { color: var(--dorado); width: 20px; }
.footer-link { color: inherit; text-decoration: none; }
.footer-link:hover { color: var(--dorado); }
.footer-copyright { text-align: center; margin-top: 4rem; padding-top: 0; font-size: 0.85rem; opacity: 0.6; }

/* WSP FLOTANTE */
.wsp-flotante { position: fixed; bottom: 30px; right: 30px; z-index: 10000; width: 60px; height: 60px; background-color: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(0,0,0,0.3); transition: transform 0.3s; text-decoration: none; }
.wsp-flotante:hover { transform: scale(1.1); }
.wsp-flotante i { font-size: 35px; color: white; }
.oculto { display: none !important; }
@keyframes slideInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

/* =======================================================
   RESPONSIVE MÓVIL (MENÚ CENTRADO, FLECHA 100% FUNCIONAL)
   ======================================================= */
@media (max-width: 900px) {
    
    /* 1. ESTRUCTURA BASE */
    body { padding-top: 70px; overflow-x: hidden; }
    
    header { 
        position: fixed; top: 0; left: 0; width: 100%; height: 70px; 
        display: flex; align-items: center; justify-content: center; 
        background: white; z-index: 9999;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    nav { 
        width: 100%; padding: 0 15px; 
        display: flex; justify-content: space-between; align-items: center;
        height: 100%; 
    }
    
    .top-info-bar { display: none; }

    /* LÍNEA SEPARADORA */
    .logo-imgs-header { gap: 10px; }
    .logo-imgs-header img { height: 35px; } 
    .linea-separadora { 
        display: block; 
        height: 25px; width: 1px; 
        background-color: var(--dorado); 
        opacity: 0.6; margin-top: 2px; 
    }

    /* 2. MENÚ PRINCIPAL */
    .menu-toggle { 
        display: block; font-size: 1.5rem; color: var(--azul); 
        cursor: pointer; padding: 10px;
    }

    .nav-links { 
        position: fixed; top: 70px; left: 0; 
        width: 100%; height: calc(100vh - 70px); 
        background: white; 
        flex-direction: column; 
        display: none; 
        overflow-y: auto; 
        padding-bottom: 50px;
        border-top: 1px solid #eee;
    }
    .nav-links.active { display: flex; } 

    /* BOTONES PRINCIPALES CENTRADOS */
    .nav-link-item { 
        width: 100%; 
        padding: 20px 25px; 
        border-bottom: 1px solid #f5f5f5; 
        font-size: 1.1rem; color: var(--azul); font-weight: 700;
        display: flex; align-items: center; justify-content: center;
        text-align: center;
        background: #fff;
    }

    /* DROPDOWN (PROGRAMAS) - CON PADDING DE PROTECCIÓN */
    .dropdown-trigger { 
        width: 100%; 
        /* Padding: 20px arriba/abajo, 70px LADOS para evitar tocar la flecha */
        padding: 20px 70px; 
        border-bottom: 1px solid #f5f5f5; 
        font-size: 1.1rem; color: var(--azul); font-weight: 700;
        
        display: flex; 
        align-items: center; 
        justify-content: center; 
        text-align: center;
        
        position: relative; /* Clave para que la flecha absoluta funcione */
        background: #fff;
    }
    
    .nav-link-item:hover, .dropdown-trigger:hover { color: var(--azul); background: #fff; } 
    .nav-link-item:active, .dropdown-trigger:active { background: #f9f9f9; } 
    
    .nav-link-item::after, .dropdown-trigger::after { display: none !important; }
    
    .mobile-icon { margin-right: 12px; width: 20px; text-align: center; color: var(--dorado); }
    
    /* Flecha del submenú */
    .desktop-arrow { display: none !important; }
    
    /* ¡LA SOLUCIÓN! Z-INDEX 100 PARA QUE SEA CLICKEABLE SIEMPRE */
    .mobile-submenu-toggle { 
        position: absolute; 
        right: 0; 
        top: 0;
        width: 70px; /* Ancho seguro */
        height: 100%; 
        
        display: flex; align-items: center; justify-content: center;
        border-left: 1px solid #f5f5f5; 
        color: var(--azul); 
        background: transparent;
        transition: 0.2s;
        
        /* OBLIGATORIO PARA QUE FUNCIONE EL CLICK */
        z-index: 100; 
        cursor: pointer;
    }
    
    .mobile-submenu-toggle.active-arrow { background: #f0f4ff; color: var(--azul); }
    .mobile-submenu-toggle.active-arrow i { transform: rotate(180deg); }

    /* 3. MEGA MENÚ (VERTICAL) */
    .mega-menu-wrapper { 
        background: #fff; width: 100%; display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease-out;
    }
    .mega-menu-wrapper.open { grid-template-rows: 1fr; border-bottom: 2px solid var(--azul); }
    .mega-menu-inner { overflow: hidden; }

    .mega-menu { 
        display: flex !important; flex-direction: column !important; width: 100% !important; padding: 0 !important; gap: 0 !important;
    }

    .menu-col { width: 100%; padding: 0; border-bottom: 1px solid #eee; }

    .menu-col h4 { 
        background-color: #f4f6f8; color: var(--azul); font-size: 0.9rem; font-weight: 800; 
        margin: 0; padding: 12px 25px; text-transform: uppercase; letter-spacing: 0.5px;
        display: flex; align-items: center; justify-content: center; 
    }
    .menu-col h4::before {
        content: ''; display: inline-block; width: 4px; height: 15px; background: var(--dorado); margin-right: 10px; border-radius: 2px;
    }

    .menu-col a { 
        display: block; padding: 15px 20px; color: #555; font-size: 0.95rem; border-bottom: 1px solid #fcfcfc; transition: background 0.2s;
        text-align: center; 
    }
    .menu-col a:hover { background: #fffcf5; color: var(--dorado); }
    .menu-col a:last-child { border-bottom: none; }

    .submenu-back { display: none !important; }

    /* 4. HERO (PORTADA) - MÓVIL */
    .hero-home { 
        height: auto; min-height: 85vh; 
        display: flex !important; flex-direction: column !important; justify-content: center !important; align-items: center !important;
        padding: 80px 15px 40px 15px !important; 
        background-attachment: scroll; 
    }
    
    .hero-content { width: 100%; padding: 0; }
    .hero-logo-central img { width: 100px; height: auto; }
    .hero-home h1 { font-size: 2rem; line-height: 1.2; margin: 15px 0; }
    
    /* 5. RESTO DE SECCIONES */
    .why-container, .mv-gold-grid, .ceo-container, .why-cards-grid, .main-layout { 
        display: flex !important; flex-direction: column !important; 
        width: 100% !important; gap: 40px !important;
        grid-template-columns: 1fr !important; 
    }

    .why-choose-section, .mv-gold-section, .container-qs, .catalog-section { 
        padding: 40px 20px !important; 
    }

    .why-image-wrapper, .ceo-image img { 
        width: 100% !important; height: auto !important; max-width: 400px; margin: 0 auto; 
    }
    
    .mv-gold-item { 
        padding: 0 !important; border: none !important; 
        border-bottom: 1px solid rgba(255,255,255,0.2) !important; padding-bottom: 30px !important;
    }
    .mv-gold-item:last-child { border: none !important; }
}