/* ==========================================================
   RESET TOTAL Y FUENTES GLOBALES (ESTÁNDAR CORPORATIVO B2B)
   ========================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@700;800;900&display=swap');

html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    background-color: var(--bg-body, #f8f9fc);
    box-sizing: border-box !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    color: #1e293b;
    -webkit-font-smoothing: antialiased;
}

*, *::before, *::after {
    box-sizing: border-box !important;
}

.titulo-seccion, 
.footer-col h3, 
.cta-texto h3, 
.footer-brand,
.stat-numero {
    font-family: 'Montserrat', sans-serif !important;
}

.site-container {
    width: 100% !important;
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 5% !important;
    padding-right: 5% !important;
}


/* ==========================================================
   SECCIÓN 1: MENÚ DE NAVEGACIÓN Y BÚSQUEDA (RESPONSIVE DE ÉLITE)
   ========================================================== */
.expotodo-navbar { 
    background: linear-gradient(90deg, #d9e2ec 10%, #223672 31%, #6b0f8a 75%, #b51536 100%); 
    padding: 12px 4%; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 20px;
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-logo img { height: 38px; display: block; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15)); }

.navbar-search { 
    flex: 1; max-width: 600px; position: relative; display: flex; align-items: center; 
}
.navbar-search-icon { 
    position: absolute; left: 16px; width: 17px; height: 17px; fill: #ffffff; opacity: 0.85; 
}
.navbar-search input { 
    width: 100%; background-color: rgba(255, 255, 255, 0.12); border: 1.5px solid rgba(255, 255, 255, 0.25); 
    color: #ffffff; padding: 10px 18px 10px 45px; border-radius: 50px; font-size: 0.92em; 
    font-family: 'Inter', sans-serif; outline: none; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); 
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.06);
}
.navbar-search input::placeholder { color: rgba(255, 255, 255, 0.75); }
.navbar-search input:focus { 
    background-color: rgba(255, 255, 255, 0.22); border-color: rgba(255, 184, 0, 0.9); box-shadow: 0 0 0 4px rgba(255, 184, 0, 0.2);
}

.navbar-actions { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.btn-link { color: #ffffff; text-decoration: none; font-weight: 600; font-size: 0.9em; transition: opacity 0.2s; }
.btn-link:hover { opacity: 0.8; }
.btn-pill { 
    background-color: #ffffff; color: #8c116c; padding: 9px 20px; border-radius: 50px; 
    text-decoration: none; font-weight: 700; font-size: 0.88em; box-shadow: 0 4px 12px rgba(0,0,0,0.15); transition: 0.25s; 
}
.btn-pill:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.25); }

@media (max-width: 768px) {
    .expotodo-navbar { padding: 10px 4%; gap: 10px; flex-wrap: nowrap; }
    .navbar-logo img { height: 30px; }
    .navbar-search { flex: 1; max-width: none; }
    .navbar-search input { padding: 7px 12px 7px 36px; font-size: 0.82em; }
    .navbar-search-icon { left: 10px; width: 14px; height: 14px; }
    .navbar-actions { gap: 10px; }
    .btn-link { display: none; }
    .btn-pill.mobile-hide-btn { display: none !important; }
}


/* ==========================================================
   TICKER Y CARRUSEL PRINCIPAL
   ========================================================== */
.ticker-bar { background: #1a0a2e; color: #fff; padding: 7px 0; overflow: hidden; display: flex; align-items: center; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.05); }
.ticker-label { background: var(--accent-color, #FFB800); color: #111; padding: 3px 10px; font-weight: 800; font-size: 0.7em; text-transform: uppercase; margin-right: 12px; flex-shrink: 0; border-radius: 0 4px 4px 0; }
.ticker-content { overflow: hidden; white-space: nowrap; flex-grow: 1; }
.ticker-track { display: inline-block; white-space: nowrap; }
.ticker-item { display: inline-block; padding-right: 30px; font-size: 0.8em; font-weight: 500; }
.ticker-dot { display: inline-block; width: 5px; height: 5px; background: var(--accent-color, #FFB800); border-radius: 50%; margin-right: 6px; vertical-align: middle; }

.carousel-wrapper {
    position: relative !important; width: 100% !important; height: 180px !important; overflow: hidden !important; padding: 0 !important; margin-top: 0 !important; background: transparent !important; box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.carousel-track { display: flex !important; width: 100% !important; height: 100% !important; transition: transform 0.5s ease-in-out; }
.carousel-slide { min-width: 100% !important; width: 100% !important; height: 100% !important; display: flex !important; align-items: center !important; justify-content: center !important; overflow: hidden !important; }
.carousel-slide img { width: 100% !important; height: 100% !important; object-fit: cover !important; object-position: center center !important; display: block !important; }

@media (min-width: 768px) { .carousel-wrapper, .carousel-slide { height: 350px !important; } }
@media (min-width: 1024px) { .carousel-wrapper, .carousel-slide { height: 460px !important; } }

.carousel-btn {
    position: absolute !important; top: 50% !important; transform: translateY(-50%) !important; background: rgba(0, 0, 0, 0.55) !important; backdrop-filter: blur(4px) !important; color: #ffffff !important; border: 2px solid rgba(255, 255, 255, 0.4) !important; width: 38px !important; height: 38px !important; border-radius: 50% !important; cursor: pointer !important; font-size: 1em !important; z-index: 20 !important; display: flex !important; align-items: center !important; justify-content: center !important; transition: all 0.3s ease !important;
}
.carousel-btn:hover { background: var(--primary-color, #6C2B85) !important; border-color: #ffffff !important; transform: translateY(-50%) scale(1.08) !important; }
.btn-prev { left: 12px !important; } 
.btn-next { right: 12px !important; }
.carousel-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 20; }
.dot { width: 7px; height: 7px; background: rgba(255,255,255,0.5); border-radius: 50%; cursor: pointer; transition: 0.3s; }
.dot.active { background: #fff; transform: scale(1.3); box-shadow: 0 0 6px rgba(255,255,255,0.8); }

@media (max-width: 768px) {
    .carousel-wrapper { height: 160px !important; }
    .carousel-btn { width: 30px !important; height: 30px !important; font-size: 0.8em !important; }
}


/* ==========================================================
   ESTADÍSTICAS
   ========================================================== */
.stats-bar-franja { width: 100% !important; background: linear-gradient(135deg, #4B1D5E 0%, #6C2B85 100%) !important; padding: 18px 0 !important; box-shadow: 0 8px 20px rgba(75, 29, 94, 0.2); }
.stats-bar-franja .site-container { display: flex !important; justify-content: space-between !important; align-items: center !important; flex-wrap: wrap !important; }
.stats-bar-franja div.stat-item { display: flex !important; align-items: center !important; gap: 12px !important; padding: 10px 14px !important; border-right: 1px solid rgba(255, 255, 255, 0.15) !important; text-align: center !important; flex: 1 1 180px !important; }
.stats-bar-franja div.stat-item:last-child { border-right: none !important; }
.stats-bar-franja .stat-icon { width: 38px !important; height: 38px !important; background: rgba(255, 255, 255, 0.12) !important; border-radius: 10px !important; display: flex !important; justify-content: center !important; align-items: center !important; flex-shrink: 0 !important; }
.stats-bar-franja .stat-icon svg { width: 18px !important; height: 18px !important; fill: #FFB800 !important; }
.stats-bar-franja .stat-text-block { text-align: left !important; }
.stats-bar-franja .stat-numero { font-size: 1.8em !important; font-weight: 900 !important; color: #ffffff !important; line-height: 1 !important; display: block !important; letter-spacing: -1px !important; }
.stats-bar-franja .stat-label { font-size: 0.72em !important; color: rgba(255, 255, 255, 0.75) !important; font-weight: 600 !important; text-transform: uppercase !important; }

@media (max-width: 992px) {
    .stats-bar-franja { padding: 12px 0 !important; }
    .stats-bar-franja .site-container { flex-direction: row !important; flex-wrap: nowrap !important; justify-content: space-between !important; padding: 0 2px !important; }
    .stats-bar-franja div.stat-item { flex: 1 1 0% !important; min-width: 0 !important; padding: 2px 4px !important; flex-direction: column !important; align-items: center !important; border-right: none !important; }
    .stats-bar-franja .stat-icon { width: 22px !important; height: 22px !important; margin-bottom: 2px !important; border-radius: 5px !important; }
    .stats-bar-franja .stat-icon svg { width: 11px !important; height: 11px !important; }
    .stats-bar-franja .stat-text-block { text-align: center !important; width: 100% !important; }
    .stats-bar-franja .stat-numero { font-size: 0.9em !important; }
    .stats-bar-franja .stat-label { font-size: 0.38em !important; white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis !important; }
}


/* ==========================================================
   TARJETAS DE TIENDAS Y CARRUSELES
   ========================================================== */
.tiendas-container { width: 100%; max-width: 1400px; margin: 40px auto; position: relative; overflow: hidden; padding: 10px 5%; }
.grid-tiendas { display: flex; gap: 20px; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); width: 100%; }

.tarjeta-tienda {
    flex: 0 0 260px !important; 
    height: 310px !important; 
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.07) !important;
    border-radius: 14px !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04), 0 2px 4px -1px rgba(0, 0, 0, 0.02) !important;
    cursor: pointer !important;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.tarjeta-tienda:hover { 
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 25px -5px rgba(108, 43, 133, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.03) !important;
    border-color: rgba(108, 43, 133, 0.25) !important;
}
.tarjeta-banner { height: 90px; background-color: #f1f5f9; width: 100%; flex-shrink: 0; position: relative; }
.tarjeta-banner img { width: 100%; height: 100%; object-fit: cover; }

.tarjeta-logo { 
    position: absolute !important; top: 66px !important; left: 14px !important; width: 44px !important; height: 44px !important;
    background: #ffffff !important; border-radius: 50% !important; border: 2.5px solid #ffffff !important; 
    box-shadow: 0 6px 14px rgba(0,0,0,0.1) !important; overflow: hidden !important; display: flex !important; justify-content: center !important; align-items: center !important; z-index: 2 !important; 
}
.tarjeta-logo img { width: 100%; height: 100%; object-fit: cover; }
.tarjeta-logo-iniciales { font-weight: 900; color: var(--primary-color, #6C2B85); font-size: 0.9em; }
.tarjeta-info { padding: 24px 14px 12px !important; display: flex; flex-direction: column; flex-grow: 1; overflow: hidden; }
.tarjeta-info h3 { font-size: 0.92em; font-weight: 900; text-transform: uppercase; color: #0f172a; letter-spacing: -0.3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 4px; }
.descripcion { font-size: 0.78em !important; color: #64748b; line-height: 1.4 !important; margin-bottom: 6px !important; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.tarjeta-footer { border-top: 1px solid #f1f5f9; padding-top: 8px !important; display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.tarjeta-ubicacion { display: flex; align-items: center; gap: 4px; font-size: 0.72em; color: #64748b; }
.tarjeta-ubicacion svg { width: 13px; height: 13px; fill: var(--primary-color, #6C2B85); }
.btn-ver-tienda { display: inline-flex; align-items: center; gap: 3px; color: var(--primary-color, #6C2B85); text-decoration: none; font-weight: 800; font-size: 0.82em; transition: transform 0.2s; }
.btn-ver-tienda:hover { transform: translateX(2px); color: #8c116c; }

.nav-btn { 
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: white; border: 1px solid #e2e8f0; border-radius: 50%; width: 40px; height: 40px; cursor: pointer; box-shadow: 0 4px 12px rgba(0,0,0,0.1); color: var(--primary-color, #6C2B85); font-weight: bold; font-size: 1.1em; display: flex; align-items: center; justify-content: center; transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1); 
}
.nav-btn:hover { background: var(--primary-color, #6C2B85); color: white; transform: translateY(-50%) scale(1.08); box-shadow: 0 6px 16px rgba(108,43,133,0.3); border-color: transparent; }
.prev-btn { left: 0px; }
.next-btn { right: 0px; }

.banner-badges { position: absolute; top: 8px; right: 8px; display: flex; gap: 5px; }
.badge-nueva { background: linear-gradient(135deg, #FFB800, #f59e0b); color: #111; font-size: 0.65em; padding: 2px 8px; border-radius: 20px; font-weight: 800; box-shadow: 0 2px 6px rgba(255, 184, 0, 0.35); text-transform: uppercase; }
.badge-verificada { background: rgba(15, 23, 42, 0.8); backdrop-filter: blur(4px); color: #38bdf8; border: 1px solid rgba(56, 189, 248, 0.3); font-size: 0.65em; padding: 2px 8px; border-radius: 20px; font-weight: 700; display: inline-flex; align-items: center; gap: 3px; }
.banner-pais { position: absolute; top: 8px; left: 8px; font-size: 1.1em; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25)); }
.icono-verificado { width: 15px; height: 15px; color: #38bdf8; margin-left: 4px; flex-shrink: 0; }

@media (max-width: 1200px) { .tarjeta-tienda { min-width: calc(33.333% - 14px); } }
@media (max-width: 992px) { .tarjeta-tienda { min-width: calc(50% - 10px); } }
@media (max-width: 576px) { .tarjeta-tienda { min-width: 100%; } }

svg { display: inline-block; vertical-align: middle; pointer-events: none; }


/* ==========================================================
   CABECERAS Y MÓVIL 2x2 TÁCTIL
   ========================================================== */
.tiendas-header {
    display: flex !important; align-items: flex-start !important; justify-content: space-between !important; gap: 15px !important; margin: 35px 5% 18px !important; flex-wrap: wrap !important;
}
.tiendas-header-texto h2.titulo-seccion {
    font-size: 1.7em !important; font-weight: 900 !important; color: var(--primary-color, #6C2B85) !important; text-transform: uppercase !important; margin-bottom: 2px !important; letter-spacing: -0.5px !important;
}
.tiendas-header-texto p { color: #64748b !important; font-size: 0.85em !important; margin: 0 !important; font-weight: 500; }

.btn-ver-todas {
    display: inline-flex !important; align-items: center !important; gap: 6px !important; color: var(--primary-color, #6C2B85) !important; border: 2px solid var(--primary-color, #6C2B85) !important; padding: 8px 18px !important; border-radius: 50px !important; font-weight: 700 !important; font-size: 0.82em !important; text-decoration: none !important; transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important; white-space: nowrap !important; background: #ffffff !important; box-shadow: 0 4px 10px rgba(108, 43, 133, 0.06);
}
.btn-ver-todas:hover { background: var(--primary-color, #6C2B85) !important; color: #fff !important; transform: translateY(-2px) !important; box-shadow: 0 6px 16px rgba(108, 43, 133, 0.2) !important; }
.btn-ver-todas svg { width: 14px !important; height: 14px !important; fill: currentColor !important; transition: transform 0.2s ease !important; }

@media (max-width: 992px) {
    .tiendas-header { margin: 24px 4% 10px !important; }
    .tiendas-header-texto h2.titulo-seccion { font-size: 1.2rem !important; }
    .tiendas-header-texto p { font-size: 0.75em !important; }
    .btn-ver-todas { padding: 5px 12px !important; font-size: 0.72em !important; border-width: 1.5px !important; }

    .grid-tiendas-movil {
        display: grid !important; grid-auto-flow: column !important; grid-template-rows: repeat(2, auto) !important; gap: 12px 14px !important; overflow-x: auto !important; scroll-snap-type: x mandatory !important; scrollbar-width: none !important; padding: 6px 4% !important; width: 100% !important; box-sizing: border-box !important;
    }
    .grid-tiendas-movil::-webkit-scrollbar { display: none !important; }
    .tarjeta-tienda-movil {
        background: #ffffff !important; border-radius: 12px !important; overflow: hidden !important; box-shadow: 0 3px 10px rgba(0,0,0,0.05) !important; height: 160px !important; width: calc(42vw - 14px) !important; flex: 0 0 calc(42vw - 14px) !important; display: flex !important; flex-direction: column !important; cursor: pointer !important; position: relative !important; scroll-snap-align: start !important; border: 1px solid rgba(0,0,0,0.06);
    }
    .tarjeta-banner-movil { height: 48px !important; width: 100% !important; position: relative !important; background: #f1f5f9; }
    .tarjeta-banner-movil img { width: 100% !important; height: 100% !important; object-fit: cover !important; }
    .tarjeta-logo-movil {
        position: absolute !important; top: 28px !important; left: 8px !important; width: 30px !important; height: 30px !important; border-radius: 50% !important; overflow: hidden !important; border: 2px solid #fff !important; background: #cbd5e1; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; font-weight: bold; color: #fff; box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    }
    .tarjeta-logo-movil img { width: 100% !important; height: 100% !important; object-fit: cover !important; }
    .tarjeta-info-movil { padding: 14px 8px 6px 8px !important; text-align: center !important; }
    .tarjeta-info-movil h3 { font-size: 0.7rem !important; font-weight: 800 !important; color: #0f172a !important; margin: 0 !important; white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis !important; text-transform: uppercase; }
}

/* ==========================================================
   CARRUSEL CIRCULAR ("CONÉCTATE CON NOSOTROS") - OPTIMIZADO
   ========================================================== */
.seccion-carrusel-circular { 
    padding: 20px 5% 10px !important; 
    margin-bottom: 15px !important; 
}

.carrusel-circular-container { 
    position: relative !important; 
    max-width: 1200px !important; 
    margin: 0 auto !important; 
    overflow: hidden !important; 
    padding: 15px 45px !important; 
}

.carrusel-circular-track { 
    display: flex !important; 
    gap: 20px !important; 
    transition: transform 0.5s ease-in-out !important; 
    padding: 10px 0 !important; 
    width: 100% !important; 
}

/* En Desktop: Muestra 5 elementos cómodamente */
.carrusel-circular-item { 
    flex: 0 0 calc(20% - 16px) !important; 
    min-width: 100px !important; 
    display: flex !important; 
    flex-direction: column !important; 
    align-items: center !important; 
    text-align: center !important; 
    transition: transform 0.3s ease !important; 
    padding: 5px !important; 
    cursor: pointer !important; 
}

.circulo-logo { 
    width: 105px !important; 
    height: 105px !important; 
    border-radius: 50% !important; 
    background: linear-gradient(135deg, var(--primary-color, #6C2B85), var(--secondary-color, #4B1D5E)) !important; 
    border: 3.5px solid var(--primary-color, #6C2B85) !important; 
    box-shadow: 0 6px 16px rgba(108, 43, 133, 0.2) !important; 
    overflow: hidden !important; 
    display: flex !important; 
    justify-content: center !important; 
    align-items: center !important; 
    margin-bottom: 10px !important; 
    flex-shrink: 0 !important; 
    transition: all 0.3s ease !important;
}

.carrusel-circular-item:hover .circulo-logo { 
    transform: scale(1.05) !important; 
    box-shadow: 0 10px 22px rgba(108, 43, 133, 0.3) !important; 
    border-color: var(--accent-color, #FFB800) !important; 
}

.circulo-logo img { width: 100% !important; height: 100% !important; object-fit: cover !important; }
.circulo-logo.sin-logo { background: linear-gradient(135deg, #9d3b94, #6C2B85) !important; }
.circulo-iniciales { color: #fff !important; font-size: 2em !important; font-weight: 900 !important; text-transform: uppercase !important; }

.circulo-nombre { 
    font-size: 0.68em !important; 
    font-weight: 800 !important; 
    color: #1e293b !important; 
    text-transform: uppercase !important; 
    margin-bottom: 2px !important; 
    display: block !important; 
    max-width: 105px !important; 
    word-break: break-word !important; 
}

.circulo-instagram { 
    font-size: 0.6em !important; 
    color: #E1306C !important; 
    font-weight: 700 !important; 
    display: block !important; 
    max-width: 105px !important; 
    white-space: nowrap !important; 
    overflow: hidden !important; 
    text-overflow: ellipsis !important; 
}

.carousel-circular-btn { 
    position: absolute !important; 
    top: 50% !important; 
    transform: translateY(-50%) !important; 
    z-index: 10 !important; 
    background: white !important; 
    border: 2px solid var(--primary-color, #6C2B85) !important; 
    border-radius: 50% !important; 
    width: 38px !important; 
    height: 38px !important; 
    cursor: pointer !important; 
    color: var(--primary-color, #6C2B85) !important; 
    font-weight: bold !important; 
    display: flex !important; 
    justify-content: center !important; 
    align-items: center !important; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important; 
    transition: all 0.2s !important; 
}
.carousel-circular-btn:hover { background: var(--primary-color, #6C2B85) !important; color: white !important; }
.carousel-circular-btn.btn-prev { left: 0px !important; }
.carousel-circular-btn.btn-next { right: 0px !important; }


/* ==========================================================
   ADAPTACIÓN MÓVIL: 4 ELEMENTOS EN PANTALLA, TAMAÑO REDUCIDO
   ========================================================== */
@media (max-width: 768px) {
    .seccion-carrusel-circular { padding: 10px 4% 5px !important; }
    .carrusel-circular-container { padding: 10px 30px !important; }
    .carrusel-circular-track { gap: 12px !important; }
    
    /* Forzamos que quepan exactamente 4 círculos visibles en el ancho del teléfono */
    .carrusel-circular-item { 
        flex: 0 0 calc(25% - 10px) !important; 
        min-width: 72px !important; 
    }
    
    /* Círculos más pequeños, estilizados y minimalistas */
    .circulo-logo { 
        width: 70px !important; 
        height: 70px !important; 
        border-width: 2.5px !important; 
        margin-bottom: 6px !important; 
        box-shadow: 0 3px 10px rgba(108, 43, 133, 0.15) !important; 
    }
    
    .circulo-iniciales { font-size: 1.3em !important; }
    
    /* Tipografías compactas y limpias para móvil */
    .circulo-nombre { 
        font-size: 0.6em !important; 
        max-width: 72px !important; 
        line-height: 1.1 !important; 
    }
    
    .circulo-instagram { 
        font-size: 0.52em !important; 
        max-width: 72px !important; 
    }
    
    .carousel-circular-btn { 
        width: 30px !important; 
        height: 30px !important; 
        font-size: 0.85em !important; 
    }
}

.categorias-grid-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 15px; margin-top: 10px; padding: 0 5%; }
.categoria-card { background: #ffffff; border: 1px solid rgba(0,0,0,0.06); border-radius: 12px; overflow: hidden; transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(0,0,0,0.03); cursor: pointer; }
.categoria-header { padding: 12px 14px 10px; background: linear-gradient(135deg, #f8f4fc, #f0e8fa); border-bottom: 1px solid #f1f5f9; display: flex; justify-content: space-between; align-items: center; }
.categoria-header h3 { font-size: 0.82em; font-weight: 800; color: var(--primary-color, #6C2B85); margin: 0; text-transform: uppercase; }
.categoria-badge { background: var(--primary-color, #6C2B85); color: #fff; font-size: 0.62em; font-weight: 700; padding: 2px 8px; border-radius: 20px; }
.categoria-tiendas-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 10px 12px 12px; }
.tienda-mini-card { background: #f8fafc; border: 1px solid #f1f5f9; border-radius: 8px; padding: 8px 6px; text-align: center; cursor: pointer; text-decoration: none; color: #334155; }
.tienda-mini-card .mini-logo { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; margin: 0 auto 4px; display: block; }
.tienda-mini-card .mini-nombre { font-size: 0.58em; font-weight: 700; line-height: 1.1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-transform: uppercase; }
.categoria-sin-tiendas { padding: 10px 12px 12px; color: #94a3b8; font-size: 0.72em; text-align: center; }

.categorias-controls { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; align-items: center; padding: 0 5%; }
.categoria-filter-btn { padding: 8px 18px; border: 2px solid #e2e8f0; border-radius: 30px; background: #fff; color: #475569; font-weight: 700; font-size: 0.82em; cursor: pointer; transition: all 0.2s ease; }
.categoria-filter-btn.active { background: var(--primary-color, #6C2B85); color: #fff; border-color: var(--primary-color, #6C2B85); }
.categoria-filter-btn.ver-todas { background: var(--accent-color, #FFB800); border-color: var(--accent-color, #FFB800); color: #111; font-weight: 800; }

.grid-tiendas-resultado { display: flex; flex-wrap: wrap; gap: 20px; width: 90%; max-width: 1400px; margin: 30px auto; justify-content: flex-start; }
.grid-tiendas-resultado .tarjeta-tienda { flex: 0 1 calc(25% - 15px); min-width: 250px; height: 350px; }
.tiendas-por-categoria { display: none; padding: 20px 5%; }
.tiendas-por-categoria.active { display: block; }
.btn-volver { display: inline-flex; align-items: center; gap: 6px; color: var(--primary-color, #6C2B85); border: 2px solid var(--primary-color, #6C2B85); padding: 8px 20px; border-radius: 50px; font-weight: 700; font-size: 0.82em; cursor: pointer; background: white; margin-bottom: 15px; }

.categorias-paginacion { display: flex; justify-content: center; align-items: center; gap: 15px; margin-top: 25px; padding: 10px 0; }
.btn-pagina { background: white; border: 2px solid var(--primary-color, #6C2B85); color: var(--primary-color, #6C2B85); width: 38px; height: 38px; border-radius: 50%; font-size: 1.1em; font-weight: 800; cursor: pointer; display: flex; justify-content: center; align-items: center; }
.btn-pagina:hover { background: var(--primary-color, #6C2B85); color: white; }
.pagina-info { font-size: 0.9em; font-weight: 700; color: #475569; }


/* ==========================================================
   SECCIÓN ¿CÓMO FUNCIONA? (MINIMALISTA Y COMPACTA EN MÓVIL)
   ========================================================== */
.seccion-como-funciona {
    background: linear-gradient(180deg, #f8f9fc 0%, #edf2f7 100%);
    padding: 50px 5%; 
    margin: 30px 0 0;
    box-shadow: inset 0 1px 4px rgba(0,0,0,0.03);
}
.como-funciona-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 25px; max-width: 1200px; margin-left: auto; margin-right: auto;
}
.paso-card { text-align: center; padding: 24px 16px; background: #fff; border-radius: 14px; border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 4px 12px rgba(0,0,0,0.02); transition: transform 0.3s; }
.paso-card:hover { transform: translateY(-3px); }
.paso-numero {
    width: 42px; height: 42px; background: linear-gradient(135deg, var(--primary-color, #6C2B85), #8c116c); color: #fff; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.1em; font-weight: 900; margin: 0 auto 12px; box-shadow: 0 4px 10px rgba(108,43,133,0.25);
}
.paso-icono { display: none; } 
.paso-card h4 { font-size: 0.95em; font-weight: 800; color: #0f172a; margin-bottom: 6px; text-transform: uppercase; }
.paso-card p { font-size: 0.8em; color: #64748b; line-height: 1.5; margin: 0; }

@media (max-width: 768px) {
    .seccion-como-funciona { padding: 35px 4% !important; margin: 20px 0 0 !important; }
    .como-funciona-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; margin-top: 15px !important; }
    .paso-card { padding: 16px 10px !important; border-radius: 10px !important; }
    .paso-numero { width: 32px !important; height: 32px !important; font-size: 0.9em !important; margin-bottom: 8px !important; }
    .paso-card h4 { font-size: 0.8em !important; margin-bottom: 4px !important; }
    .paso-card p { font-size: 0.72em !important; line-height: 1.3 !important; }
}


/* ==========================================================
   BANNER CTA Y PAÍSES
   ========================================================== */
.banner-cta-franja {
    width: 100% !important;
    background: radial-gradient(circle at 90% 10%, rgba(255, 184, 0, 0.18) 0%, transparent 50%),
                linear-gradient(100deg, #1a0a2e 0%, var(--secondary-color, #4B1D5E) 45%, #8c116c 100%) !important;
    margin: 50px 0 !important;
    padding: 50px 0 !important;
    box-sizing: border-box !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 15px 30px rgba(26, 10, 46, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
}
.banner-cta-franja .site-container {
    display: flex !important; align-items: center !important; justify-content: space-between !important; gap: 25px !important; position: relative; z-index: 2;
}
.cta-texto h3 { color: #fff; font-size: 1.7em; font-weight: 900; margin-bottom: 6px; line-height: 1.2; }
.cta-texto p { color: rgba(255,255,255,0.8); font-size: 0.95em; max-width: 420px; margin: 0; font-weight: 500; }
.cta-acciones { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; justify-content: flex-end; }

.btn-cta-primario {
    background: var(--accent-color, #FFB800); color: #111; padding: 12px 26px; border-radius: 50px; text-decoration: none; font-weight: 800; font-size: 0.9em; transition: all 0.2s; white-space: nowrap; box-shadow: 0 4px 14px rgba(255,184,0,0.35);
}
.btn-cta-primario:hover { background: #e6a600; transform: translateY(-2px); }

.btn-cta-secundario {
    background: rgba(255,255,255,0.1); color: #fff; padding: 12px 22px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 0.9em; border: 1.5px solid rgba(255,255,255,0.35); transition: all 0.2s; white-space: nowrap;
}
.btn-cta-secundario:hover { background: rgba(255,255,255,0.2); color: #fff; }

@media (max-width: 768px) {
    .banner-cta-franja { margin: 30px 0 !important; padding: 35px 0 !important; }
    .banner-cta-franja .site-container { flex-direction: column !important; text-align: center !important; }
    .cta-texto h3 { font-size: 1.3em !important; }
    .cta-texto p { font-size: 0.85em !important; }
    .cta-acciones { justify-content: center; width: 100%; gap: 10px; }
    .btn-cta-primario, .btn-cta-secundario { padding: 10px 20px !important; font-size: 0.82em !important; }
}

.seccion-paises { padding: 15px 5% 45px; }
.paises-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.pais-card {
    display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 10px; padding: 10px 16px; text-decoration: none; color: #334155; transition: all 0.2s; flex: 0 1 auto; min-width: 150px; box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.pais-card:hover { transform: translateY(-2px); border-color: var(--primary-color, #6C2B85); color: var(--primary-color, #6C2B85); }
.pais-bandera { font-size: 1.4em; line-height: 1; }
.pais-info-blk { display: flex; flex-direction: column; }
.pais-nombre { font-weight: 800; font-size: 0.82em; }
.pais-contador { font-size: 0.68em; color: #94a3b8; font-weight: 600; }


/* ==========================================================
   MEGA FOOTER (FRANJA 100% ANCHO REAL - ULTRA-MINIMALISTA Y CENTRADO EN MÓVIL)
   ========================================================== */
.footer-franja {
    width: 100% !important; 
    background-color: #161616 !important; 
    color: #b3b3b3 !important; 
    margin-top: 50px !important; 
    padding-top: 40px !important; 
    box-sizing: border-box !important; 
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.footer-franja .site-container {
    display: grid !important; 
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important; 
    gap: 30px !important; 
    margin-bottom: 30px !important; 
    box-sizing: border-box !important;
}

.footer-col h3 { 
    color: white !important; 
    margin-bottom: 15px !important; 
    font-size: 1.1em !important; 
    font-weight: 800 !important; 
    letter-spacing: -0.5px !important;
}

.footer-col p {
    font-size: 0.88em !important;
    line-height: 1.6 !important;
    color: #94a3b8 !important;
}

.footer-col ul { 
    list-style: none !important; 
    padding: 0 !important; 
    margin: 0 !important; 
}

.footer-col ul li { 
    margin-bottom: 8px !important; 
}

.footer-col ul a { 
    color: #94a3b8 !important; 
    text-decoration: none !important; 
    transition: color 0.2s, padding-left 0.2s !important; 
    display: inline-block !important; 
    font-size: 0.85em !important; 
}

.footer-col ul a:hover { 
    color: var(--accent-color, #FFB800) !important; 
    padding-left: 4px !important; 
}

.footer-col form {
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border-radius: 6px;
    overflow: hidden;
}

.footer-col form input[type="email"] {
    padding: 8px 10px !important;
    border: none !important;
    width: 70% !important;
    outline: none !important;
    font-size: 0.8em !important;
    background-color: #ffffff !important;
    color: #1e293b !important;
}

.footer-col form button[type="submit"] {
    background: var(--accent-color, #FFB800) !important;
    color: #111 !important;
    border: none !important;
    padding: 8px 10px !important;
    width: 30% !important;
    cursor: pointer !important;
    font-weight: bold !important;
    font-size: 0.8em !important;
    transition: background 0.2s !important;
}

.footer-bottom-bar {
    width: 100% !important; 
    background-color: #101010 !important; 
    border-top: 1px solid #222 !important; 
    padding: 15px 5% !important; 
    text-align: center !important; 
    font-size: 0.78em !important; 
    color: #64748b !important; 
    box-sizing: border-box !important;
    line-height: 1.4 !important;
}

/* Reglas móviles: Ultra-minimalistas y centradas */
@media (max-width: 768px) {
    .footer-franja {
        margin-top: 30px !important;
        padding-top: 25px !important;
    }
    .footer-franja .site-container {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        margin-bottom: 15px !important;
        padding: 0 6% !important;
        text-align: center !important; /* Todo centrado para lucir simétrico y ordenado */
    }
    .footer-col {
        text-align: center !important;
        border-bottom: 1px solid rgba(255,255,255,0.04);
        padding-bottom: 14px;
    }
    .footer-col:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .footer-col h3 {
        font-size: 0.9em !important;
        margin-bottom: 6px !important;
    }
    .footer-col p {
        font-size: 0.78em !important;
        line-height: 1.4 !important;
    }
    .footer-col ul a {
        font-size: 0.8em !important;
    }
    .footer-col ul li {
        margin-bottom: 5px !important;
    }
    .footer-col form {
        max-width: 260px !important;
        margin: 0 auto !important; /* Centrado en la pantalla móvil */
    }
    .footer-bottom-bar {
        font-size: 0.7em !important;
        padding: 12px 4% !important;
    }
}

.mobile-only { display: none !important; }
.desktop-only { display: block !important; }
@media (max-width: 992px) {
    .desktop-only { display: none !important; }
    .mobile-only { display: block !important; }
}

/* ==========================================================
   ESTILOS: SECCIÓN NUESTRA VITRINA DE ÉXITO (B2B Profesional)
   ========================================================== */
.seccion-vitrina-exito {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.vitrina-videos-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 25px !important;
    width: 100% !important;
    margin: 0 !important;
}

/* Estilo de la tarjeta de video */
.video-card {
    background: #ffffff !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.02) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
}

.video-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

/* Contenedor de la miniatura */
.video-thumbnail {
    position: relative !important;
    width: 100% !important;
    padding-top: 56.25% !important; /* Relación de aspecto 16:9 (9 / 16 = 0.5625) */
    background-color: #1e293b !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Capa oscura degradada sobre la miniatura para el texto */
.video-thumbnail::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 40% !important;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent) !important;
}

/* Botón de Play central */
.play-button-overlay {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 60px !important;
    height: 60px !important;
    background-color: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    color: var(--primary-color, #6C2B85) !important;
    font-size: 1.4em !important;
    z-index: 2 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
    text-decoration: none !important;
    padding-left: 4px !important; /* Ajuste óptico para centrar el icono de play */
}

.video-card:hover .play-button-overlay {
    background-color: #ffffff !important;
    transform: translate(-50%, -50%) scale(1.1) !important;
    color: var(--secondary-color, #4B1D5E) !important;
}

/* Etiqueta de duración */
.video-duracion {
    position: absolute !important;
    bottom: 8px !important;
    right: 8px !important;
    background-color: rgba(0, 0, 0, 0.75) !important;
    color: #ffffff !important;
    padding: 3px 8px !important;
    border-radius: 4px !important;
    font-size: 0.75em !important;
    font-weight: 600 !important;
    z-index: 2 !important;
    letter-spacing: 0.5px !important;
}

/* Área de información del video */
.video-info {
    padding: 20px !important;
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

.video-titulo {
    font-size: 1em !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    margin-bottom: 8px !important;
    line-height: 1.3 !important;
    font-family: 'Montserrat', sans-serif !important;
}

.video-descripcion {
    font-size: 0.88em !important;
    color: #64748b !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

/* ==========================================================
   ADAPTACIÓN RESPONSIVE (MÓVIL Y TABLET)
   ========================================================== */

@media (max-width: 992px) {
    .vitrina-videos-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* Pasa a 2 columnas en tablets */
        gap: 15px !important;
    }
    .video-info { padding: 15px !important; }
    .video-titulo { font-size: 0.95em !important; margin-bottom: 6px !important; }
    .video-descripcion { font-size: 0.82em !important; }
}

@media (max-width: 600px) {
    .seccion-vitrina-exito {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
    .vitrina-videos-grid {
        grid-template-columns: 1fr !important; /* Apila los videos en 1 columna en teléfonos */
        gap: 20px !important;
        padding: 0 20px !important; /* Pequeño margen lateral */
    }
    .video-card { max-width: 400px !important; margin: 0 auto !important; width: 100% !important; }
    .play-button-overlay { width: 50px !important; height: 50px !important; font-size: 1.2em !important; }
}