/* --- VARIABLES --- */
:root {
    --black: #1D1D1F;
    --white: #FFFFFF;
    --grey-text: #86868b;
    --font-main: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient: linear-gradient(90deg, #25E4FC, #3668FF);
}

/* --- RESET & BASE --- */
body {
    font-family: var(--font-main);
    margin: 0;
    overflow-x: hidden;
    background-color: var(--white);
}



/* --- SWIPER / SLIDER PRINCIPAL --- */
.mainSlider { width: 100%; height: 100vh; position: relative; }

.slider-media {
    width: 100%;    
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.slider-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 2;
}

/* --- LOGO DEL HERO (EL DEL MEDIO DEL VIDEO) --- */
.hero-logo-img { 
    width: 160px; /* Un poquito más grande que el del nav */
    margin-bottom: 25px; 
    opacity: 1;
    filter: drop-shadow(0 0 15px rgba(0,0,0,0.3));
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.hero-text { 
    color: rgba(255, 255, 255, 0.85); 
    font-weight: 500; 
    letter-spacing: 12px; 
    font-size: 1.2rem; 
    text-transform: uppercase;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Paginación Swiper (Bullets) */
.swiper-pagination-bullet { background: var(--white); opacity: 0.4; transition: 0.3s; }
.swiper-pagination-bullet-active { 
    background: #25E4FC !important; 
    width: 25px; 
    border-radius: 4px; 
    opacity: 1; 
}

/* --- MEGA MENU DESKTOP --- */
.mega-menu {
    position: absolute; top: 85px; left: 0; width: 100%; background: white;
    height: 0; overflow: hidden; visibility: hidden; opacity: 0;
    transition: var(--transition); border-bottom: 1px solid #eee;
}
.mega-menu.show { height: 500px; visibility: visible; opacity: 1; }
.mega-content { max-width: 1200px; margin: 0 auto; display: flex; padding: 50px 0; align-items: center; }

.brands-column { flex: 0 0 250px; border-right: 1px solid #eee; height: 350px; overflow-y: auto; }

.brand-item {
    padding: 12px 0;
    color: var(--grey-text);
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    list-style: none;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.brand-item.active {
    color: var(--black);
    opacity: 1;
    transform: translateX(10px);
}

.brand-item:hover { opacity: 1; color: var(--black); }

.preview-column { flex: 0 0 450px; text-align: right; }
#main-preview-img { max-height: 350px; border-radius: 15px; }

.info-column { flex: 1; padding-left: 40px; }
#brand-title { font-size: 42px; font-weight: 700; margin-bottom: 10px; color: var(--black); }
#brand-desc { color: var(--grey-text); margin-bottom: 20px; }
.view-more { color: var(--black); font-weight: 700; text-decoration: none; border-bottom: 2px solid var(--black); }

/* --- MOBILE OVERLAY --- */
.mobile-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: white; z-index: 10000;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: var(--transition);
}

.mobile-overlay.active { opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-scroll { padding: 120px 40px; height: 100%; overflow-y: auto; }
.mobile-links { list-style: none; padding: 0; }
.mobile-links > li { margin-bottom: 30px; }
.mobile-links a, .mobile-label { font-size: 20px; font-weight: 700; text-decoration: none; color: var(--black); text-transform: uppercase; }
.mobile-label { color: var(--grey-text); font-size: 12px; letter-spacing: 2px; margin-bottom: 15px; display: block; }
.mobile-submenu { list-style: none; padding-left: 15px; margin-top: 15px; border-left: 1px solid #eee; }
.mobile-submenu a { font-size: 16px; font-weight: 500; color: #666; text-decoration: none; }

/* --- SECCIONES BASE --- */
.section-white { background: white; padding: 100px 0; }
.section-grey { background: #F8F9FA; padding: 50px 0; }
h1 { font-size: 5rem; font-weight: 700; text-transform: uppercase; }

.marquee-wrapper { overflow: hidden; display: flex; white-space: nowrap; }
.marquee-content { 
    display: inline-block; 
    animation: scroll 30s linear infinite; 
    font-size: 3rem; 
    font-weight: 500; 
    color: #eee; 
    text-transform: uppercase;
}

@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    h1 { font-size: 3rem; }
    .nav-container { padding: 0 20px; }
    .hero-text { font-size: 1.1rem; letter-spacing: 6px; }
    .hero-logo-img { width: 110px; }
}

/* --- SECCIÓN SOBRE NOSOTROS --- */
.section-title {
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--black);
    text-transform: uppercase;
    /* Cambiamos el 0 por una separación real */
    margin-bottom: 30px !important; 
    display: block;
    clear: both;
}

.p-about {
    font-size: 1rem;
    font-weight: 400; 
    line-height: 1.8;
    color: var(--black);
    /* USAMOS MARGEN NEGATIVO PARA SUBIRLO SÍ O SÍ */
    margin-top: -5px !important; 
}

/* --- SECCIÓN MARCAS (SUBIR FIIDO Y SACAR GRIS) --- */
.brand-box:first-of-type {
    /* Si sigue muy lejos, subimos este número a -50px */
    margin-top: -40px !important; 
}

.brand-info {
    /* Matamos el gris de Fiido */
    background: transparent !important; 
}

.brand-img {
    filter: none !important;
}

.brand-logo {
    /* 1. Forzamos un ancho único para todos los horizontales */
    width: auto !important; 
    
    /* 2. Achicamos el alto al mínimo para que no empuje el botón */
    height: 80px !important; 
    
    /* 3. El truco: 'contain' evita que se deformen y 
       'object-position: left' los pega al inicio del botón */
    object-fit: contain !important;
    object-position: left center;
    
    display: block;
    margin-bottom: 5px !important; /* Distancia mínima con el botón */
    
    /* Filtro para unificar el color blanco */
    filter: brightness(0) invert(1) !important;
}

/* 4. Eliminamos el espacio extra de la clase mt-4 que tiene tu HTML */
.brand-info .mt-4 {
    margin-top: 0 !important;
}

.iso-container {
    width: 100%;
    max-width: 450px; /* Tamaño máximo para que no se descontrole */
    padding: 0px;
}

/* El SVG debe ser fluido */
.iso-container svg {
    width: 100%;
    height: auto;
}.iso-container {
  perspective: 1000px;
  max-width: 400px;
}

#isoKasia {
  filter: drop-shadow(0 10px 20px rgba(54, 104, 255, 0.2));
  will-change: transform, opacity;
}

.iso-part {
  cursor: pointer;
}.iso-container {
    min-height: 300px; /* Dale un respiro al contenedor */
    display: flex;
    align-items: center;
    justify-content: center;
}

#isoKasia {
    width: 100% !important;
    max-width: 400px;
    height: auto;
    display: block !important; /* Evitamos que algún estilo previo lo oculte */
}
/* --- SECCIÓN MARCAS --- */
/* --- LIMPIEZA DE LA SECCIÓN --- */
.section-white {
    background-color: #ffffff !important;
    padding: 80px 0 !important;
}



/* 2. ESPACIADOR CONTROLADO */
/* Usamos este truco para decidir exactamente cuánto espacio hay entre el título y Fiido */
.section-title::after {
    content: "";
    display: block;
    height: 20px; /* Ajustá este número para subir o bajar a Fiido */
}

/* 3. CAJAS DE MARCA (IGUALES PARA TODAS) */
.brand-box {
    position: relative;
    width: 100%;
    margin-bottom: 60px !important; /* Espacio idéntico entre marcas */
    border-radius: 8px;
    overflow: hidden;
    line-height: 0 !important; /* Mata el espacio fantasma debajo de la foto */
}

/* 4. EL FIX PARA EL PRIMERO (FIIDO) */
/* Si el primero sigue estando lejos, esto lo obliga a subir */
.brand-box:first-of-type {
    margin-top: -10px !important; /* Ajustá este valor negativo si necesitás que suba más */
}

.brand-box:last-child {
    margin-bottom: 0 !important;
}

/* 5. FOTO Y OVERLAY (CHAU CAPA GRIS) */
.brand-img {
    width: 100%;
    height: auto;
    display: block !important;
    filter: none !important; /* Asegura que la foto sea la original */
}

.brand-info {
    position: absolute;
    inset: 0 !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 8%;
    background: transparent !important; /* Elimina cualquier capa gris de Fiido */
}

.brand-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    /* Sombra sutil para que el logo blanco se vea sin oscurecer la foto */
    filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0,0,0,0.4)) !important;
}
.brand-box:last-child {
    margin-bottom: 0 !important;
}

/* --- BOTÓN KASIA REPARADO --- */
/* --- BOTÓN KASIA REPARADO (PÁGINA PRINCIPAL) --- */
.btn-brand-kasia {
    position: relative;
    display: inline-block;
    padding: 15px 50px;
    color: #ffffff !important;
    border: none !important; /* ELIMINADO EL BORDE */
    background-color: rgba(255, 255, 255, 0.1); /* Fondo sutil para legibilidad inicial */
    border-radius: 50px;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    overflow: hidden;
    transition: all 0.4s ease;
    line-height: 1;
}

.btn-brand-kasia:hover {
    border: none !important; /* ASEGURAMOS QUE NO APAREZCA EN HOVER */
    transform: translateY(-2px);
}

/* --- BOTÓN HERO GHOST (SLIDERS) --- */
.btn-hero-ghost {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 60px;
    background: transparent;
    color: #FFFFFF !important;
    border: 1px solid rgba(255, 255, 255, 0.5); /* Borde blanco sutil inicial */
    border-radius: 50px;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    overflow: hidden;
    z-index: 1;
}

.btn-hero-ghost:hover {
    border-color: transparent !important; /* DESAPARECE EL BORDE EN HOVER */
    transform: translateY(-3px);
}

/* --- BOTÓN DARK BRAND (SECCIÓN PRODUCTO/FIIDO) --- */
.btn-dark-brand {
    display: inline-flex;
    padding: 14px 50px;
    background-color: var(--black);
    border: none !important; /* SIN BORDE */
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-dark-brand, 
.btn-dark-brand span {
    color: #FFFFFF !important;
    text-decoration: none;
     letter-spacing: 1.5px;
}

/* Y agregamos el hover para que no se pierda la interacción */
.btn-dark-brand:hover span {
    color: #FFFFFF;
}

.btn-dark-brand::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.btn-dark-brand:hover::before {
    opacity: 1;
}

.btn-dark-brand:hover {
    border: none !important; /* ASEGURAMOS LIMPIEZA */
    transform: translateY(-2px);
}

/* --- BOTÓN VER MÁS (MEGA MENU) --- */


.btn-ver-mas:hover { 
    background: var(--gradient) !important; 
    border: none !important;
    color: #fff !important; 
}

.btn-brand-kasia span {
    position: relative;
    z-index: 2;
}

/* Hover con el degradado de Kasia */
.btn-brand-kasia::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #25E4FC, #3668FF);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.btn-brand-kasia:hover::before {
    opacity: 1;
}

.btn-brand-kasia:hover {
    border-color: transparent;
    transform: translateY(-2px);
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .brand-info { padding-left: 6%; }
    .brand-logo { max-width: 160px; }
    .btn-brand-kasia { padding: 12px 40px; }
}

@media (max-width: 768px) {
    .section-white { padding: 50px 0; }
    .brand-logo { max-width: 130px; }
}
/* Sección con fondo gris para separar */
.bg-light-gray {
    background-color: #f8f9fa !important;
    padding: 100px 0;
}

/* Contenedor del logo */
.iso-wrapper {
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Imagen SVG completa con efecto flotante */
.iso-img-floating {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(54, 104, 255, 0.2)); /* Sombra elegante */
    animation: floatingKasia 4s ease-in-out infinite;
}

/* Definición del movimiento de arriba a abajo */
@keyframes floatingKasia {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Ajuste para mobile */
@media (max-width: 992px) {
    .iso-wrapper {
        max-width: 280px;
        margin: 40px auto 0;
    }
}
/* Estado inicial: invisible y un poco más abajo */
.brand-box {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

/* Estado cuando aparece en pantalla */
.brand-box.visible {
    opacity: 1;
    transform: translateY(0);
}
.section-about {
    background-color: #F8F9FA !important; /* El fondo oscuro que venías usando */
    padding-top: 100px !important;       /* El aire superior que pediste */
    padding-bottom: 80px !important;
}

.blob {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    opacity: 0.25; /* SUTIL: Mucho más baja para no comerse el texto */
    will-change: transform;
}

/* Colores de Kasia (Bajamos la intensidad) */
.blob-kasia-celeste { background: #25E4FC; }
.blob-kasia-azul { background: #3668FF; }

/* Posicionamiento Inicial */
.anim-blob-1 { top: -10%; right: 10%; }
.anim-blob-2 { bottom: -10%; left: 15%; }
.anim-blob-3 { top: 40%; left: 45%; width: 300px; height: 300px; }

/* 2. EL PANEL DE VIDRIO DESENFOCADO (Súper Importante) */
.glass-surface {
    position: absolute;
    inset: 0;
    z-index: 2; /* Encima de las manchas */
    
    /* Efecto "Vidrio Esmerilado" Apple/Amberra */
    background: rgba(255, 255, 255, 0.2); /* Panel blanco semi-transparente */
    backdrop-filter: blur(80px) saturate(180%); /* Blur alto para licuar colores */
    -webkit-backdrop-filter: blur(80px) saturate(180%);
    
    /* DEGRADADO SUTIL PARA LEER MEJOR EL TEXTO NEGRO */
    /* Crea un tinte oscuro sutil para unificar el fondo */
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0.3) 100%);
}

/* 3. Contenido Legible */
/* Reutilizamos tus clases base (Tienen Montserrat, Peso 700, etc) */
.content-overlay {
    position: relative;
    z-index: 2;
    /* Dejá solo márgenes o rellenos si los necesitás para ubicar el texto */
}

.amberra-glass-wrapper .section-title {
    margin-top: 0 !important;
    margin-bottom: 25px !important;
}

.p-about {
    font-size: 1rem;
    max-width: 500px;
    margin-top: 0 !important;
    
}

/* Isotipo Lateral Completo (Nítido) */
.iso-main-floating {
    width: 100%; /* O el tamaño que tenga */
    max-width: 400px;
}

@keyframes floatingKasiaHero {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* --- ANIMACIONES DE FLUJO (Orgánicas, no flotaciones) --- */
/* Son movimientos suaves de 'translate' y 'scale' */

.anim-blob-1 { animation: flowShape1 20s ease-in-out infinite alternate; }
.anim-blob-2 { animation: flowShape2 25s ease-in-out infinite alternate-reverse; }
.anim-blob-3 { animation: flowShape3 18s ease-in-out infinite alternate; }

@keyframes flowShape1 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    100% { transform: translate(120px, 80px) scale(1.2) rotate(20deg); }
}

@keyframes flowShape2 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    100% { transform: translate(-80px, -120px) scale(1.1) rotate(-15deg); }
}

@keyframes flowShape3 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 20px) scale(1.15); }
}
/* --- RESET MAESTRO PARA EL HEADER --- */
#kasia-header-master {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 999999 !important;
    font-family: 'Montserrat', sans-serif;
}

/* Barra superior: oculta al inicio */
#kasia-top-bar {
    background: #1D1D1F;
    height: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

#kasia-top-bar a {
    color: white; font-size: 10px; font-weight: 600; 
    text-decoration: none; letter-spacing: 1.5px; opacity: 0;
}

/* Nav: Transparente -> Blanco */
#kasia-nav-main {
    height: 90px;
    display: flex;
    align-items: center;
    background: transparent;
    transition: all 0.4s ease;
}

.kasia-nav-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Estado Scrolled */
#kasia-header-master.is-scrolled #kasia-top-bar { height: 35px; }
#kasia-header-master.is-scrolled #kasia-top-bar a { opacity: 1; }
#kasia-header-master.is-scrolled #kasia-nav-main { 
    background: white; 
    height: 75px; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.08); 
}

/* Links: Sutiles al inicio */
#kasia-menu-desktop {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0; padding: 0;
    align-items: center;
}

.kasia-nav-item {
    color: rgba(255,255,255,0.2); /* Blanco apagado premium */
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: 0.3s;
}

#kasia-header-master.is-scrolled .kasia-nav-item { color: #1D1D1F; }
.kasia-nav-item:hover { color: #3668FF !important; }

/* --- MEGA MENU --- */
.kasia-mega-box {
    position: fixed;
    top: 90px; left: 0; width: 100%;
    background: white;
    max-height: 0; overflow: hidden; opacity: 0;
    transition: all 0.4s ease;
    border-top: 1px solid #f0f0f0;
}

.kasia-has-mega:hover .kasia-mega-box {
    max-height: 550px; opacity: 1; padding: 60px 0;
}

#kasia-header-master.is-scrolled .kasia-mega-box { top: 110px; }

.kasia-mega-grid {
    max-width: 1300px; margin: 0 auto;
    display: grid; grid-template-columns: 200px 250px 1fr;
}

.kasia-mega-col { border-right: 1px solid #eee; padding: 0 30px; }
.kasia-preview-area { border: none; padding-left: 60px; }

.kasia-mega-list { list-style: none; margin: 0; padding: 0; }
.kasia-cat-trigger, .kasia-brand-item {
    font-size: 13px; color: #86868b; padding: 12px 0; cursor: pointer; font-weight: 600;
}
.kasia-cat-trigger.active, .kasia-brand-item.active { color: #3668FF; }

/* Preview */
.kasia-preview-flex { display: flex; align-items: center; gap: 40px; }
.kasia-img-fluid { width: 300px; height: 300px; object-fit: cover; border-radius: 12px; }
#kasia-p-title { font-size: 26px; margin: 0; font-weight: 700; color: #1D1D1F; }
.kasia-btn-more { color: #3668FF; font-weight: 700; text-decoration: none; border-bottom: 2px solid #3668FF; }

/* --- MOBILE --- */
#kasia-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
#kasia-hamburger span { width: 25px; height: 2px; background: white; transition: 0.3s; }
#kasia-header-master.is-scrolled #kasia-hamburger span { background: #1D1D1F; }

@media (max-width: 1024px) {
    #kasia-menu-desktop { display: none; }
    #kasia-hamburger { display: flex; }
}
/* --- OVERLAY MOBILE --- */
#kasia-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 999998; /* Un nivel abajo de la hamburguesa */
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%); /* Inicia fuera de pantalla a la derecha */
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#kasia-mobile-overlay.is-active {
    transform: translateX(0); /* Se desliza hacia adentro */
}

.kasia-mobile-list {
    list-style: none;
    padding: 0;
    text-align: center;
}

.kasia-mobile-list li {
    margin: 25px 0;
}

.kasia-mobile-list a {
    font-size: 24px;
    font-weight: 700;
    color: #1D1D1F;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Animación de la Hamburguesa a X */
#kasia-hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
#kasia-hamburger.is-open span:nth-child(2) {
    opacity: 0;
}
#kasia-hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
/* Estilos para el acordeón mobile */
.mobile-submenu, .brand-sub-list {
    max-height: 0;
    overflow: hidden;
    list-style: none;
    padding-left: 20px;
    transition: max-height 0.4s ease-out;
    background: rgba(0,0,0,0.02);
}

.mobile-link-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.mobile-label {
    font-size: 24px;
    font-weight: 700;
    color: #1D1D1F;
}

.sub-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #3668FF;
    padding: 15px 0;
    letter-spacing: 1px;
}

.brand-sub-list a {
    font-size: 18px !important;
    font-weight: 500 !important;
    margin: 10px 0 !important;
    color: #666 !important;
}

/* Clase para abrir (vía JS) */
.is-open-sub {
    max-height: 500px !important;
    padding-bottom: 10px;
}

/* Icono flecha */
.arrow-icon {
    width: 10px; height: 10px;
    border-right: 3px solid #3668FF;
    border-bottom: 3px solid #3668FF;
    transform: rotate(45deg);
    transition: 0.3s;
}
.active-arrow { transform: rotate(-135deg); }
/* --- MOBILE OVERLAY REFINADO --- */
#kasia-mobile-overlay {
    /* ... (mantener tu posición fixed y transform) ... */
    padding-top: 100px;
}

.kasia-mobile-list {
    list-style: none;
    padding: 0;
    width: 100%;
}

.mobile-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
    padding: 15px 0;
}

.mobile-trigger span {
    font-size: 24px;
    font-weight: 700;
    color: #1D1D1F;
    text-transform: uppercase;
}

/* Flecha azul integrada */
.arrow-blue {
    width: 10px;
    height: 10px;
    border-right: 3px solid #3668FF;
    border-bottom: 3px solid #3668FF;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-top: -5px; /* Ajuste fino de altura */
}

.arrow-blue.active {
    transform: rotate(-135deg);
    margin-top: 5px;
}

/* Submenú colapsable */
.mobile-submenu-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f9f9f9;
}

.mobile-submenu-container.is-open {
    max-height: 800px; /* Suficiente para todas las marcas */
}

.kasia-mobile-sublist {
    list-style: none;
    padding: 20px 0;
}

.sub-category-title {
    font-size: 12px;
    font-weight: 800;
    color: #3668FF;
    letter-spacing: 2px;
    margin-top: 15px;
    margin-bottom: 5px;
}

.kasia-mobile-sublist a {
    font-size: 18px !important;
    font-weight: 500 !important;
    color: #666 !important;
    display: block;
    padding: 8px 0;
}
/* Estado inicial: Logo en blanco sutil */
#navLogo {
    /* Forzamos dimensiones reales */
    width: 140px !important; 
    height: auto !important;
    min-height: 30px !important; 
    
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    
    /* ELIMINAMOS el filtro invert que lo está rompiendo */
    filter: none !important; 
    
    /* Si el SVG es de color y lo querés blanco, usá solo este: */
    /* filter: brightness(0) invert(1); <--- Probalo DESPUÉS de que aparezca */
}

/* Estado Scrolled: Vuelve a su color original y nitidez total */
#kasia-header-master.is-scrolled #navLogo {
    filter: none; 
    opacity: 1;
}

/* Hover: Un pequeño brillo extra si el usuario pasa el mouse */
.kasia-logo-anchor:hover #navLogo {
    opacity: 1;
}
.kasia-logo-anchor {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 160px !important; 
    height: auto;
    flex-shrink: 0 !important; /* Evita que el rojo se achique */
}
/* --- WHATSAPP LOGO PURO --- */
.kasia-whatsapp-raw {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999999;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.9; /* Un poco de transparencia inicial para estilo premium */
}

.kasia-whatsapp-raw img {
    width: 60px; /* Tamaño del logo directo */
    height: auto;
    display: block;
}

.kasia-whatsapp-raw:hover {
    transform: scale(1.1);
    opacity: 1; /* Brilla al 100% al pasar el mouse */
}

/* Ajuste para mobile */
@media (max-width: 768px) {
    .kasia-whatsapp-raw {
        bottom: 20px;
        left: 20px;
    }
    .kasia-whatsapp-raw img {
        width: 50px;
    }
}
/* --- WHATSAPP LOGO PURO --- */
.kasia-whatsapp-raw {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999999;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.9; /* Un poco de transparencia inicial para estilo premium */
}

.kasia-whatsapp-raw img {
    width: 60px; /* Tamaño del logo directo */
    height: auto;
    display: block;
}

.kasia-whatsapp-raw:hover {
    transform: scale(1.1);
    opacity: 1; /* Brilla al 100% al pasar el mouse */
}

/* Ajuste para mobile */
@media (max-width: 768px) {
    .kasia-whatsapp-raw {
        bottom: 20px;
        left: 20px;
    }
    .kasia-whatsapp-raw img {
        width: 50px;
    }
}
/* --- BOTÓN VOLVER ARRIBA --- */
.kasia-back-top {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 50px !important;
    height: 50px !important;
    background-color: #1D1D1F !important; /* Negro Apple */
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 9999999 !important; /* Más alto que el header */
    transition: all 0.4s ease !important;
    
    /* Forzamos visibilidad inicial para probar */
    opacity: 0;
    visibility: hidden;
}

/* Esta clase es la que el JS debe activar */
.kasia-back-top.show-btn {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.kasia-back-top:hover {
    background-color: #3668FF !important;
    transform: translateY(-5px) !important;
}
/* --- SECCIÓN CONTACTO --- */
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #1D1D1F;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon img {
    width: 30px;
    filter: brightness(0) invert(1);
}

.kasia-form .form-control, 
.kasia-form .form-select {
    background-color: #F8F9FA;
    border: 1px solid #EEEEEE;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 0.9rem;
    color: var(--black);
}

.kasia-form .form-control:focus {
    box-shadow: none;
    border-color: #3668FF;
    background-color: #fff;
}

.btn-enviar {
    background: #1D1D1F;
    color: white;
    border: none;
    padding: 15px 60px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-enviar:hover {
    background: #3668FF;
    transform: translateY(-2px);
}
/* --- SECCIÓN CTA SIMPLE (TÚNEL) --- */
.section-cta-simple {
    position: relative;
    width: 100%;
    min-height: 450px;
    display: flex;
    align-items: center;
    padding: 100px 0;
    
    /* Configuración para que el fondo se mande desde el HTML */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; 
    overflow: hidden;
}

/* Capa de oscurecido para legibilidad */
.section-cta-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Oscurece cualquier imagen un 50% */
    z-index: 1;
}

.cta-simple-content {
    position: relative;
    z-index: 2; /* Por encima del oscurecido */
    max-width: 850px;
}

.cta-title {
    color: #FFFFFF;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2.5rem;
}

/* --- BOTÓN CÁPSULA KASIA (RESPETANDO DEGRADADO) --- */
.btn-cta-white {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 55px;
    background-color: transparent !important; /* Fondo transparente */
    color: #FFFFFF !important;               /* Texto blanco */
    border: 1px solid #FFFFFF !important;    /* Borde blanco */
    border-radius: 50px;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    overflow: hidden;
}

/* El degradado original de Kasia que aparece al hacer hover */
.btn-cta-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient); /* Usa tu variable de degradado */
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

/* Asegura que el texto no se pierda con el degradado */
.btn-cta-white span {
    position: relative;
    z-index: 2;
}

.btn-cta-white:hover {
    background: var(--gradient) !important; /* Tu degradado en hover */
    border-color: transparent !important;
    color: #FFFFFF !important;
    transform: scale(1.05);
}

.btn-cta-white:hover::before {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .section-cta-simple {
        background-attachment: scroll;
        text-align: center;
    }
    .cta-title {
        font-size: 2rem;
    }
}
/* --- FOOTER KASIA --- */
.kasia-footer {
    background-color: #1D1D1F;
    padding: 80px 0 30px 0;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
}

.footer-logo img {
    width: 140px;
    height: auto;
}

.footer-about {
    color: #A1A1A6;
    font-size: 14px;
    line-height: 1.6;
    max-width: 300px;
}

.footer-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: #FFFFFF;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #A1A1A6;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3668FF; /* Color de tu marca */
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    color: #A1A1A6;
    font-size: 14px;
}

.footer-contact-info li {
    margin-bottom: 20px;
}

.footer-contact-info strong {
    color: #FFFFFF;
    display: block;
    margin-bottom: 5px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials img {
    width: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-socials img:hover {
    opacity: 1;
}

/* --- BOTTOM BAR --- */
.footer-hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 60px 0 30px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #86868B;
    font-size: 12px;
}

.footer-legal a {
    color: #86868B;
    text-decoration: none;
    margin-left: 20px;
}

.footer-legal a:hover {
    text-decoration: underline;
}

/* Ajustes Mobile */
@media (max-width: 768px) {
    .kasia-footer {
        padding: 60px 0 30px 0;
        text-align: center;
    }
    .footer-about {
        margin: 0 auto;
    }
    .footer-socials {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
    .footer-legal a {
        margin: 0 10px;
    }
}
/* --- BOTÓN GHOST PARA SLIDER --- */
.btn-hero-ghost {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 60px;
    background: transparent; /* Sin relleno */
    color: #FFFFFF !important;
    border: 1px solid rgba(255, 255, 255, 0.5); /* Borde sutil */
    border-radius: 50px;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    overflow: hidden;
    z-index: 1;
}

/* Reutilizamos tu degradado solo para el hover */
.btn-hero-ghost::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-hero-ghost:hover {
    border-color: transparent;
    transform: translateY(-3px);
}

.btn-hero-ghost:hover::before {
    opacity: 1;
}

.btn-hero-ghost span {
    position: relative;
    z-index: 2;
}
/* --- MARQUESINA DE LOGOS - FONDO CLARO #F8F9FA --- */
.brands-marquee {
    width: 100%;
    overflow: hidden;
    background: #F8F9FA; /* Fondo claro sutil solicitado */
    padding: 70px 0; /* Un poco más de aire para que respire */
    display: flex;
    align-items: center;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.marquee-content {
    display: flex;
    width: max-content;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 110px; /* Espacio generoso para que cada marca destaque */
    padding: 0 55px;
    animation: marquee-scroll 45s linear infinite; /* Movimiento suave y fluido */
}

/* Logos en su Color Original */
.marquee-track img {
    height: 38px; /* Un poco más grandes ahora que el fondo es claro */
    width: auto;
    object-fit: contain;
    
    /* Sin filtros de color, solo una opacidad sutil que se va al hacer hover */
    filter: grayscale(0) opacity(0.85); 
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

/* EFECTO HOVER: Brillo total y ligero realce */
.marquee-track img:hover {
    filter: opacity(1);
    transform: scale(1.12); /* Zoom elegante */
}

/* Detener la animación al pasar el mouse */
.brands-marquee:hover .marquee-track {
    animation-play-state: paused;
}

/* Animación de desplazamiento infinito */
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

/* Ajuste para Mobile */
@media (max-width: 768px) {
    .brands-marquee { padding: 50px 0; }
    .marquee-track img { height: 28px; }
    .marquee-track { gap: 70px; }
}
/* Ajuste manual para logos que se ven muy chicos */
.marquee-track img[alt*="Stark"] {
    transform: scale(1.3); /* Lo agrandamos un 30% solo a ese */
}

.marquee-track img[alt*="Minimotors"] {
    transform: scale(1.1);
}

/* Ajuste para logos que se ven muy grandes */
.marquee-track img[alt*="Surron"] {
    transform: scale(0.9);
}

/* LA ANIMACIÓN */
@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); } /* Se mueve hasta la mitad (donde empieza la copia) */
}

/* Pausa al pasar el mouse (opcional) */
.brands-marquee:hover .marquee-content {
    animation-play-state: paused;
}
#slider {
    /* Ajustá los 100px según la altura que tenga tu header */
    scroll-margin-top: 100px; 
}
#contacto {
    /* Ajustá los 100px según la altura de tu menú sticky */
    scroll-margin-top: 100px !important;
}



/* Icono de Mail en ruta img */
.van-mail-icon { display: flex; align-items: center; justify-content: center; transition: opacity 0.3s; cursor: pointer; }
.van-mail-icon:hover { opacity: 0.6; }
.van-mail-icon .icon-img { width: 20px; height: auto; filter: brightness(0) invert(1); }

/* Grilla de Marcas */
.van-brands-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin: 25px 0; border-top: 1px solid rgba(255,255,255,0.1); }
.van-brand { 
    text-decoration: none; padding: 20px 10px; text-align: center; 
    border-right: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); 
    transition: background 0.3s;
}
.van-brand:hover { background: rgba(255,255,255,0.03); }
.van-brand:nth-child(3n) { border-right: none; }

.brand-iso { width: 60px; height: 60px; margin: 0 auto 10px auto; display: flex; align-items: center; justify-content: center; }
.brand-iso img { max-width: 100%; max-height: 100%; object-fit: contain; }

.van-brand span { display: block; font-size: 9px; font-weight: 400; color: #fff; letter-spacing: 1px; }
.v-full-width { grid-column: span 3; border-right: none; }

.van-nav-links { display: flex; flex-direction: column; gap: 12px; margin-top: 25px; padding: 0 32px; }
.van-nav-links a { color: #fff; text-decoration: none; font-size: 24px; font-weight: 500; }
.van-nav-links a:hover {
    color: #3668FF; /* El celeste que elegiste */
}
.van-content-expand { padding-bottom: 32px; opacity: 0; transition: opacity 0.3s; }
.van-main-box.is-open .van-content-expand { opacity: 1; }
.van-footer { margin-top: 30px; padding: 0 32px; display: flex; justify-content: space-between; font-size: 11px; color: #777; }
:root { 
    --kasia-blue: #3668FF; /* Actualizado al azul solicitado */
    --text-dark: #1a1a1a; 
}

#kasia-header { position: fixed; width: 100%; top: 0; z-index: 9999; transition: all 0.4s ease; }

/* BARRA ANUNCIO */
.announcement-top { 
    background: #1a1a1a; height: 0; overflow: hidden; 
    display: flex; align-items: center; justify-content: center; transition: 0.3s;
}
.announcement-top a { color: white; text-decoration: none; font-size: 11px; letter-spacing: 2px; font-weight: 500;}

/* NAVBAR */
.kasia-navbar { height: 90px; display: flex; align-items: center; transition: 0.4s; }
.nav-content { width: 90%; max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
#main-logo { height: 22px; transition: 0.3s; }

.main-nav-links { display: flex; list-style: none; gap: 30px; margin: 0; padding: 0; }
.main-nav-links a { 
    color: #565555d2 !important; 
    text-decoration: none; 
    font-size: 11px !important;; 
    font-weight: 500 !important;; 
    letter-spacing: 1.5px !important;; 
    transition: all 0.3s ease; 
}
.kasia-navbar.scrolled .main-nav-links a {
    color: #1a1a1a !important; /* Negro o gris oscuro para que se vea sobre fondo blanco */
}
.main-nav-links a:hover,
#kasia-header.is-scrolled .main-nav-links a:hover {
    color: #409FFF !important; 
    opacity: 1;
}

/* ESTADO SCROLL */
#kasia-header.is-scrolled { background: white; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
#kasia-header.is-scrolled .announcement-top { height: 40px; }
#kasia-header.is-scrolled .kasia-navbar { height: 80px; }
#kasia-header.is-scrolled .main-nav-links a { color: var(--text-dark); }
#kasia-header.is-scrolled .main-nav-links a:hover { color: var(--kasia-blue); }
#kasia-header.is-scrolled #trigger-marcas { color: var(--kasia-blue); }
#kasia-header.is-scrolled .hamburger span { background: var(--text-dark); }

/* MEGA MENU DESKTOP */
.mega-panel { 
    background: white; width: 100%; position: absolute; left: 0;
    max-height: 0; overflow: hidden; transition: max-height 0.5s ease;
    border-bottom: 0px solid #eee;
}
.mega-panel.active { max-height: 700px; border-bottom: 1px solid #eee; }

/* Ajuste de Proporción: 1fr para categorías, 4fr para productos (más grande) */
.mega-container { 
    display: grid; 
    /* Cambiamos los 180px fijos por minmax para que puedan achicarse un poco */
    grid-template-columns: repeat(3, minmax(140px, auto)) 1fr; 
    gap: 25px; 
    width: 95%; 
    max-width: 1500px; 
    margin: 0 auto; 
    padding: 40px 0; 
}

/* Líneas sutiles entre columnas */
.mega-col {
    padding: 0 30px;
    border-right: 1px solid #f0f0f0; /* Línea sutil */
}

.mega-col:nth-child(3) { border-right: none; } /* Quitamos la línea de la 3ra para que no se pegue al preview */

.mega-col h3 { font-size: 10px; color: #bbb; letter-spacing: 2px; margin-bottom: 25px; text-transform: uppercase; }
.brand-list { list-style: none; padding: 0; }
.brand-list li { font-size: 14px !important; font-weight: 500 !important; color: var(--text-dark); padding: 12px 0; cursor: pointer; transition: 0.3s; letter-spacing: 2px; }

/* Hover y Activo con el nuevo azul */
.brand-list li:hover, .brand-list li.active { color: var(--kasia-blue); padding-left: 5px; }

/* Columna de Preview más espaciosa */
.mega-col-preview { 
    border-left: 1px solid #f0f0f0; 
    padding: 0 60px; 
    text-align: center; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#product-images-container.product-images { 
    display: flex !important; 
    justify-content: space-around !important; 
    align-items: center !important;
    gap: 30px !important; 
    margin-bottom: 40px !important; 
    min-height: 280px !important; 
}

#product-images-container.product-images img { 
    width: 100% !important; 
    max-width: 180px !important; 
    height: auto !important;
    object-fit: contain !important; 
}

#product-images-container.product-images img:hover { 
    transform: translateY(-10px) !important; 
}

#preview-brand-name { 
    font-size: 28px; 
    font-weight: 800; 
    color: #001f3f; 
    margin-bottom: 25px; 
    letter-spacing: 1px;
}

/* Botón con el azul solicitado */
.btn-ver-mas { 
    display: inline-block; 
    padding: 12px 60px; 
    border: 1px solid #ddd; 
    border-radius: 40px; 
    color: #666; 
    text-decoration: none; 
    font-size: 11px; 
    letter-spacing: 2px; 
    font-weight: 600;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: transparent;
    transition: all 0.4s ease; /* Transición más suave para el degradado */
}
.btn-ver-mas:hover { 
    color: #fff !important; 
    border-color: transparent !important;
    /* Primero matamos cualquier color sólido previo */
    background-color: transparent !important;
    /* Aplicamos el degradado */
    background-image: linear-gradient(135deg, #3668FF 0%, #25E4FC 100%) !important;
        transform: translateY(-2px);
}

/* HAMBURGER */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 10px; z-index: 10001; }
.hamburger span { display: block; width: 25px; height: 2px; background: white; margin: 5px 0; transition: 0.4s; }

/* MOBILE NAV */
.mobile-nav { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: white; transition: 0.4s; padding: 100px 40px; z-index: 10000; }
.mobile-nav.active { right: 0; }
.mobile-links { display: flex; flex-direction: column; gap: 20px; }
.mobile-links a, .accordion-header { text-decoration: none; color: var(--text-dark); font-size: 18px; font-weight: 700; border: none; background: none; text-align: left; padding: 0; width: 100%; display: flex; justify-content: space-between; }
.accordion-content { max-height: 0; overflow: hidden; transition: 0.3s; display: flex; flex-direction: column; padding-left: 15px; }
.accordion-content.open { max-height: 400px; margin-top: 15px; }
.accordion-content a { font-size: 14px; color: #666; padding: 8px 0; }

@media (max-width: 1024px) {
    .main-nav-links { display: none; }
    .hamburger { display: block; }
}

:root { 
    --kasia-blue: #3668FF; /* Actualizado al azul solicitado */
    --text-dark: #1a1a1a; 
}

#kasia-header { position: fixed; width: 100%; top: 0; z-index: 9999; transition: all 0.4s ease; }

/* BARRA ANUNCIO */
.announcement-top { 
    background: #1a1a1a; height: 0; overflow: hidden; 
    display: flex; align-items: center; justify-content: center; transition: 0.3s;
}
.announcement-top a { color: white; text-decoration: none; font-size: 10px; letter-spacing: 2px; font-weight: 500;}

/* NAVBAR - Suavizado para que no contraste tanto sobre el video */
.kasia-navbar { 
    height: 90px; 
    display: flex; 
    align-items: center; 
    transition: 0.4s; 
    background: rgba(0, 0, 0, 0.15); /* Cambiado de sólido a sutil */
}
.nav-content { width: 90%; max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
#main-logo { height: 22px; transition: 0.3s; }

.main-nav-links { display: flex; list-style: none; gap: 30px; margin: 0; padding: 0; }
.main-nav-links a { color: white; text-decoration: none; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; transition: 0.3s; }

/* ESTADO SCROLL */
#kasia-header.is-scrolled { background: white; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
#kasia-header.is-scrolled .announcement-top { height: 40px; }
#kasia-header.is-scrolled .kasia-navbar { height: 80px; background: white; }
#kasia-header.is-scrolled .main-nav-links a { color: var(--text-dark); }
#kasia-header.is-scrolled .main-nav-links a:hover { color: var(--kasia-blue); }
#kasia-header.is-scrolled #trigger-marcas { color: var(--kasia-blue); }
#kasia-header.is-scrolled .hamburger span { background: var(--text-dark); }

/* MEGA MENU DESKTOP */
.mega-panel { 
    background: white; width: 100%; position: absolute; left: 0;
    max-height: 0; overflow: hidden; transition: max-height 0.5s ease;
    border-bottom: 0px solid #eee;
}
.mega-panel.active { max-height: 700px; border-bottom: 1px solid #eee; }

/* Ajuste de Proporción: 1fr para categorías, 4fr para productos (más grande) */
.mega-container { 
    display: grid; 
    grid-template-columns: 180px 180px 180px 1fr; 
    gap: 40px; 
    width: 95%; 
    max-width: 1500px; 
    margin: 0 auto; 
    padding: 40px 0; 
    align-items: start;
}

/* Líneas sutiles entre columnas (RESTABLECIDAS) */
.mega-col {
    min-width: 140px; /* Evita que las columnas colapsen demasiado */
    padding: 0 !important; /* Eliminamos paddings que aprietan el contenido */
}
.brand-list li {
    font-size: 13px !important;
    white-space: nowrap;
    padding: 8px 0;
}

@media (max-width: 1366px) {
    .mega-container {
        /* En notebooks, usamos auto para todo para que el navegador calcule el encaje perfecto */
        grid-template-columns: auto auto auto 1fr !important;
        gap: 25px !important; 
    }

    .product-images img {
        /* Esta es la clave: permitimos que la imagen se achique si no hay espacio */
        width: 100% !important;
        max-width: 150px !important; 
        height: auto !important;
    }

    #preview-brand-name {
        font-size: 22px !important;
    }
}

.mega-col:nth-child(3) { border-right: none; } /* Quitamos la línea de la 3ra para que no se pegue al preview */

.mega-col h3 { font-size: 10px; color: #bbb; letter-spacing: 2px; margin-bottom: 25px; text-transform: uppercase; }
.brand-list { list-style: none; padding: 0; }
.brand-list li { font-size: 17px; font-weight: 700; color: var(--text-dark); padding: 12px 0; cursor: pointer; transition: 0.3s; }

/* Hover y Activo con el nuevo azul */
.brand-list li:hover, .brand-list li.active { color: var(--kasia-blue); padding-left: 5px; }

/* Columna de Preview (ALINEACIÓN A LA IZQUIERDA) */
.mega-col-preview { 
    border-left: 1px solid #f0f0f0; 
    padding: 0 60px; 
    text-align: left; /* Alineado a la izquierda */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Alinea items al inicio */
}

.product-images { 
    display: flex; 
    justify-content: flex-start; /* Imágenes desde la izquierda */
    align-items: center;
    gap: 30px; 
    margin-bottom: 40px; 
    min-height: 180px; 
    width: 100%;
}

.product-images img { 
    width: 180px; 
    height: 180px; 
    object-fit: contain; 
    transition: transform 0.4s ease;
}

.product-images img:hover { transform: translateY(-10px); }

#preview-brand-name { 
    font-size: 28px; 
    font-weight: 800; 
    color: #001f3f; 
    margin-bottom: 25px; 
    letter-spacing: 1px;
    text-align: left; /* Alineado a la izquierda */
}

/* Botón con el azul solicitado */
.btn-ver-mas { 
    display: inline-block; 
    padding: 12px 50px; 
    border: 1px solid #ddd; 
    border-radius: 40px; 
    color: #666; 
    text-decoration: none; 
    font-size: 11px; 
    letter-spacing: 2px; 
    font-weight: 600;
    transition: 0.3s; 
}
.btn-ver-mas:hover { 
    background: var(--kasia-blue); 
    color: #fff; 
    border-color: var(--kasia-blue); 
}

/* HAMBURGER */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 10px; z-index: 10001; }
.hamburger span { display: block; width: 25px; height: 2px; background: white; margin: 5px 0; transition: 0.4s; }

/* MOBILE NAV */
.mobile-nav { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: white; transition: 0.4s; padding: 100px 40px; z-index: 10000; }
.mobile-nav.active { right: 0; }
.mobile-links { display: flex; flex-direction: column; gap: 20px; }
.mobile-links a, .accordion-header { text-decoration: none; color: var(--text-dark); font-size: 18px; font-weight: 700; border: none; background: none; text-align: left; padding: 0; width: 100%; display: flex; justify-content: space-between; }
/* Hover mobile */
.mobile-links a:hover, .accordion-header:hover { color: var(--kasia-blue); }

.accordion-content { max-height: 0; overflow: hidden; transition: 0.3s; display: flex; flex-direction: column; padding-left: 15px; }
.accordion-content.open { max-height: 400px; margin-top: 15px; }
.accordion-content a { font-size: 14px; color: #666; padding: 8px 0; }

@media (max-width: 1024px) {
    .main-nav-links { display: none; }
    .hamburger { display: block; }
}
/* Esto controla el tamaño del logo directamente por su ID */
#main-logo { 
    height: 40px !important; /* Probá con 38px, si lo querés más grande subilo a 45px */
    width: auto; 
    transition: all 0.3s ease;
}

/* Para que en el contenedor no quede apretado */
.kasia-logo {
    display: flex;
    align-items: center;
}
/* --- HERO SECUNDARIO (60% Height) --- */
.hero-secondary {
    height: 75vh !important; /* Altura optimizada */
    min-height: 450px;
    position: relative;
    overflow: hidden;
}

.hero-video-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Ajuste de escala del logo en páginas secundarias */
.secondary-logo {
    max-width: 180px !important;
    margin-bottom: 20px;
}

/* --- BOTÓN CON HOVER DEGRADADO --- */
.btn-secondary-brand {
    position: relative;
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s ease;
    background: transparent;
}

.btn-secondary-brand:hover {
    border-color: transparent;
    color: #fff;
}

/* El efecto degradado al pasar el mouse */
.btn-secondary-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    /* Ajustá estos colores a tu degradado corporativo */
    background: linear-gradient(90deg, #3668FF, #00CFD5); 
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-secondary-brand:hover::before {
    left: 0;
}
/* --- BRAND INTRO SECTION (ALINEACIÓN REFINADA) --- */
.brand-intro-section {
    width: 100%;
padding-top: 100px !important;
padding-bottom: 100px !important;
    background-color: var(--white);
}

.brand-intro-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    /* CAMBIO CLAVE: Centramos ambos elementos para que la bici suba */
    align-items: center; 
    justify-content: flex-start;
}

.brand-intro-text {
    flex: 0 0 500px;
    padding: 0;
}

.brand-intro-text .brand-title {
    font-family: var(--font-main);
    font-size: 32px;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 25px 0 !important;
    line-height: 1.2;
}

.brand-description {
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--black);
    margin: 0 0 35px 0 !important;
}

.brand-intro-image {
    flex: 1;
    display: flex;
    justify-content: center;
    /* Eliminamos cualquier padding superior que la esté empujando */
    padding: 0; 
}

.brand-intro-image img {
    max-width: 600px; /* Un poco más de presencia */
    width: 100%;
    height: auto;
    display: block;
    /* Subimos la imagen levemente si el archivo PNG tiene mucho margen arriba */
    transform: translateY(-10px); 
}

/* --- BOTÓN --- */
.btn-dark-brand {
    display: inline-flex;
    padding: 14px 50px;
    background-color: var(--black);
    border-radius: 50px;
    transition: var(--transition);
}
/* --- SECCIÓN VIDEO 100% PANTALLA --- */
.full-video-section {
    width: 100%;
    height: 100vh; /* Ocupa el 100% del alto de la ventana */
    position: relative;
    overflow: hidden;
    background-color: var(--black); /* Fondo de seguridad */
}

.video-background-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Clave: el video se expande como un fondo */
    position: absolute;
    top: 0;
    left: 0;
}

/* Capa para dar contraste y que se vea premium */
.video-overlay-dark {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3); /* Ajustá este valor si querés que sea más o menos oscuro */
    z-index: 1;
}

.video-content-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Reutilizamos tu clase hero-text para mantener la coherencia */
.full-video-section .hero-text {
    font-size: 3rem; /* Más grande por ser full screen */
    margin: 0;
    
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .full-video-section {
        height: 70vh; /* En mobile bajamos un poco la altura para que no sea tan largo el scroll */
    }
    .full-video-section .hero-text {
        font-size: 1.8rem;
        letter-spacing: 4px;
    }
}
/* --- SECCIÓN CONTADOR (AJUSTE DE PROXIMIDAD) --- */
.counter-section {
   
    padding: 100px 0 !important;
}

.counter-section .brand-intro-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 0.6fr 0.4fr; 
    align-items: center;
    gap: 80px;
}

/* Columna Derecha */
.counter-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.counter-wrapper {
    display: flex;
    align-items: baseline;
    line-height: 0.7; /* Succionamos el interlineado del número */
    margin-bottom: 0 !important; /* Eliminamos margen inferior del 600K */
}

.counter-number, 
.counter-symbol {
    font-size: 90px;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -3px;
    margin: 0 !important;
    padding: 0 !important;
}

.counter-label {
    font-size: 18px;
    color: var(--grey-text);
    font-weight: 500;
    margin: 5px 0 15px 0 !important; /* Pegamos el label al número y al botón */
}

/* --- BOTÓN: ELIMINAMOS CUALQUIER ESPACIO EXTRA --- */
.counter-section .btn-dark-brand {
    background-color: var(--black) !important;
    border: none !important;
    padding: 14px 45px;
    border-radius: 50px;
    transition: var(--transition);
    /* Si sigue habiendo aire, este margen negativo lo soluciona */
    margin-top: -5px !important; 
}

.counter-section .btn-dark-brand span {
    color: var(--white) !important;
    font-size: 13px;
    font-weight: 600;
    text-transform: none;
}
/* --- PRODUCT CAROUSEL (PAGINACIÓN LIMPIA AZUL) --- */
.product-carousel-full {
    background-color: var(--white);
    padding: 60px 0 !important;
    width: 100%;
    overflow: hidden;
}

.product-carousel-full .swiper {
    width: 100%;
    padding: 10px 0 100px 0 !important;
}

/* Tarjeta Compacta */
.product-card {
    background: #F8F9FA;
    border-radius: 18px;
    padding: 35px 20px;
    text-align: center;
    transition: var(--transition);
    width: 100%;
    max-width: 420px;
    min-height: 440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.product-img-box {
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-box img {
    max-width: 95%;
    max-height: 100%;
    object-fit: contain;
}

.product-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    background: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
}

/* Pagination: Sin fondo gris y con color azul Kasia */
.pagination-footer-large {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent; /* Eliminado el fondo gris */
    padding: 12px 0;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: center;
}

.swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: #D1D1D6 !important; /* Gris muy clarito para los inactivos */
    opacity: 1;
    margin: 0 8px !important;
}

.swiper-pagination-bullet-active {
    background: var(--kasia-blue) !important; /* Ahora es azul */
    width: 25px !important; /* Estilo píldora */
    border-radius: 6px;
}

/* BOTÓN GLOBAL KASIA */
.product-carousel-full .btn-dark-brand {
    display: inline-flex;
    padding: 14px 50px;
    background-color: var(--black) !important;
    border: none !important;
    border-radius: 50px;
    transition: var(--transition);
}

.product-carousel-full .btn-dark-brand span {
    color: var(--white) !important;
    font-size: 13px;
    font-weight: 600;
    text-transform: none;
}

.product-carousel-full .btn-dark-brand:hover {
    background: var(--gradient) !important;
    transform: translateY(-2px);
}

/* Flechas */
.swiper-button-next, .swiper-button-prev {
    color: var(--black) !important;
    transform: scale(0.6);
}
/* --- LIFESTYLE IMAGE 100% SCREEN --- */
.lifestyle-full-screen {
    width: 100%;
    /* Si querés que se pegue al carrusel de arriba, dejá padding 0 */
    padding: 0 !important; 
    margin: 0 !important;
    overflow: hidden;
    background-color: var(--white);
}

.lifestyle-wrapper {
    width: 100%;
    line-height: 0; /* Mata el espacio extra inferior del navegador */
}

.lifestyle-wrapper img {
    width: 100%;
    height: auto;
    /* En pantallas muy grandes, aseguramos que cubra todo */
    min-height: 500px; 
    object-fit: cover;
    display: block;
    border: none;
}

/* Ajuste para mobile para que no quede una tira finita */
@media (max-width: 768px) {
    .lifestyle-wrapper img {
        min-height: 350px;
        /* Centramos la acción de la foto si se recorta */
        object-position: center; 
    }
}
.kasia-scrollytelling {
    background-color: #000;
    position: relative;
    /* Dejamos que GSAP maneje la altura del scroll */
}

.sticky-frame {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.scroller-container {
    position: relative;
    width: 90%;
    max-width: 1400px;
    height: 100vh;
}

.story-step {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Ocupa todo el alto para centrar el contenido internamente */
    display: flex;
    align-items: center; /* Centrado Vertical Real */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Alineaciones Zig-Zag */
.align-left { justify-content: flex-start; text-align: left; }
.align-right { justify-content: flex-end; text-align: right; }
.video-step, .split-step { justify-content: center; }

.step-content { max-width: 800px; width: 100%; }

/* Doble Columna (Propuesta y Manifiesto) */
.split-step {
    display: grid;
    /* Forzamos 2 columnas exactamente iguales */
    grid-template-columns: 1fr 1fr; 
    gap: 80px;
    align-items: center;
    width: 100%;
    max-width: 1200px; /* Ancho máximo para que no se desparrame en pantallas 4K */
    margin: 0 auto;
}
.split-step .step-content {
    width: 100%;
    max-width: 500px; /* Controlamos el ancho del bloque de texto */
}
.split-step div:first-child.step-content {
    justify-self: end;
    text-align: left;
}

/* Si el texto es el segundo hijo (Slide 2), lo pegamos al inicio para que pegue al centro */
.split-step div:last-child.step-content {
    justify-self: start;
    text-align: left;
}

/* Estilos de Texto */
.sub-header {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.p-main {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    color: #fff;
    font-weight: 700;
    line-height: 1.15;
}

.p-desc {
    font-size: 1.rem;
    color: rgba(255,255,255,0.6);
    margin-top: 25px;
    font-weight: 300;
}

.grad-word {
    background: var(--gradient);
    -webkit-background-clip: text; /* Propiedad para Chrome/Safari */
    background-clip: text;         /* Propiedad estándar para compatibilidad */
    -webkit-text-fill-color: transparent;
    display: inline;
    white-space: normal;
}

.list-item {
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(255,255,255,0.15); /* Apagado inicial */
    margin-bottom: 30px;
}

/* Video Wrapper */
.video-wrapper {
    width: 55%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(54, 104, 255, 0.1);
}
.video-wrapper video { width: 100%; display: block; }
/* Aseguramos que el contenedor padre sea el punto de referencia */
.scroller-container {
    position: relative;
    width: 100%;
    height: 100vh;
}

/* Esta es la clase que posiciona cada bloque en el centro */
.story-step {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centrado absoluto */
    width: 100%;
    max-width: 1400px;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
}

/* El arreglo para que el degradado NO salte de línea */
.grad-word {
    background: var(--gradient);
    -webkit-background-clip: text; /* Para Chrome y Safari */
    background-clip: text;         /* Propiedad estándar (CORRIGE EL ERROR) */
    -webkit-text-fill-color: transparent;
    display: inline;               /* Mantiene el texto en la misma línea */
    white-space: normal;
}

/* Estructura de dos columnas */
.split-step {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    text-align: left;
}
/* Solo para darle el toque de profundidad a la imagen del brochure */
.brochure-wrapper img {
    max-width: 850px;
    /* Sombra suave para que resalte sobre el fondo blanco */
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.1));
}

/* Si tu botón btn-hero-ghost es blanco por defecto, 
   asegurate de que tenga una variante oscura para fondo blanco */
.btn-secondary-brand {
    border-color: #1a1a1a !important;
    color: #1a1a1a !important;
}

.btn-secondary-brand:hover {
    background-color: #1a1a1a !important;
    color: #fff !important;
}
/* Aire superior e inferior */
.py-large {
    padding-top: 150px;
    padding-bottom: 120px;
}

.section-brochure {
    background-color: #ffffff;
}

/* Ajuste de la imagen para que coincida con el print */
.brochure-img {
    max-width: 850px;
    /* Sombra suave para que no flote en el blanco */
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.12));
}
/* RESET DE SEGURIDAD PARA BOTONES KASIA */
.btn-primary-kasia, .btn-secondary-kasia {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 16px 45px !important;
    border-radius: 50px !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    letter-spacing: 1px !important;
       text-decoration: none !important;
    overflow: hidden !important;
    z-index: 1 !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

/* EL TEXTO: Forzamos blanco para el Primary y negro para el Secondary */
.btn-primary-kasia span { color: #ffffff !important; position: relative; z-index: 3; }
.btn-secondary-kasia span { color: #1a1a1a !important; position: relative; z-index: 3; }

/* EL HOVER DEGRADADO (Igual para ambos) */
.btn-primary-kasia::before, .btn-secondary-kasia::before {
    content: '' !important;
    position: absolute !important;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--gradient) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
    z-index: 2 !important;
}

/* COMPORTAMIENTO ESPECÍFICO */
.btn-primary-kasia { background-color: #1a1a1a !important; border: none !important; }
.btn-secondary-kasia { background-color: transparent !important; border: 1px solid #1a1a1a !important; }

/* ESTADO HOVER PARA AMBOS */
.btn-primary-kasia:hover::before, .btn-secondary-kasia:hover::before { opacity: 1 !important; }
.btn-primary-kasia:hover span, .btn-secondary-kasia:hover span { color: #ffffff !important; }
.btn-secondary-kasia:hover { border-color: transparent !important; }

/* Ajustamos el ancla para que no quede debajo del menú */
#primer-bloque {
    scroll-margin-top: 200px; /* Ajustá este número según la altura de tu navbar */
}
/* --- ESTANDARIZACIÓN DE BOTONES NEGROS --- */
.btn-dark-brand, 
.btn-enviar,
.btn-primary-kasia {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 16px 50px !important;
    background-color: #1D1D1F !important; /* Negro sólido */
    border-radius: 50px !important;
    border: none !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    text-decoration: none !important;
}

/* Forzamos que el texto sea BLANCO y nada más que blanco */
.btn-dark-brand span, 
.btn-dark-brand a,
.btn-enviar,
.btn-primary-kasia {
    color: #FFFFFF !important; 
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
}

/* Hover con tu degradado para todos por igual */
.btn-dark-brand:hover, 
.btn-enviar:hover,
.btn-primary-kasia:hover {
    background: var(--gradient) !important;
    transform: translateY(-2px);
    color: #FFFFFF !important;
}
/* Control de imágenes en el Scrollytelling */
.image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper img {
    width: 80%; /* Ajustá este porcentaje (70% o 80%) para que se vea al tamaño ideal */
    max-width: 500px; /* Evita que en pantallas gigantes se descontrole */
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transition: transform 0.5s ease;
}

/* Efecto opcional: un leve zoom cuando el slide está activo */
.story-step.active .image-wrapper img {
    transform: scale(1.05);
}
.full-step-center {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 1000px; /* Limitamos el ancho para que el texto sea legible y no ocupe toda la pantalla */
    margin: 0 auto;
}

.full-step-center .step-content {
    max-width: 900px; /* Un poco de aire a los costados */
}

.full-step-center .p-main {
    font-size: clamp(2rem, 3vw, 3rem) !important; /* Lo hacemos un poco más grande para que impacte al estar solo */
    line-height: 1.3;
}
.brand-list li a {
    text-decoration: none !important;
    color: inherit !important; /* Mantiene el color negro/gris que ya definimos */
    display: block; /* Hace que toda la línea sea clickable */
    width: 100%;
}

.brand-list li:hover a {
    color: var(--kasia-blue) !important; /* Cambia a azul al pasar el mouse */
}
/* --- SECCIÓN SOBRE NOSOTROS (EDITORIAL) --- */
.section-about-editorial {
    background-color: #ffffff;
    padding: 100px 0;
    font-family: 'Montserrat', sans-serif;
}

.editorial-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* El rótulo superior solicitado */
.editorial-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #A1A1A6; /* Gris claro premium */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

/* Título principal con impacto */
.editorial-lead {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    color: #1D1D1F;
    margin: 0 0 30px 0;
    letter-spacing: -0.5px;
}

/* Cuerpo de texto en dos columnas */
.editorial-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.editorial-body p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
}

/* Resaltado de marcas */
.editorial-body strong {
    color: #1D1D1F;
    font-weight: 700;
}

/* Párrafo destacado con borde azul */
.highlight-text {
    font-weight: 700;
    color: #1D1D1F !important;
    border-left: 3px solid #3668FF;
    padding-left: 25px;
    margin-top: 10px;
}

/* Gradiente para la palabra destacada */
.grad-word {
    background: linear-gradient(90deg, #25E4FC, #3668FF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .editorial-body {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section-about-editorial {
        padding: 60px 0;
    }
    
    .editorial-body {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .editorial-lead {
        margin-bottom: 40px;
    }

    .highlight-text {
        padding-left: 15px;
    }
}/* --- SECCIÓN VISIÓN (GRIS CON IMAGEN LATERAL) --- */
.section-vision-split {
    padding: 120px 0;
}

.vision-grid {
    display: grid;
    /* 60% para el texto, 40% para la imagen vertical */
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.vision-text-content {
    text-align: left;
}

.vision-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

/* Contenedor de la imagen para darle el look vertical */
.vision-image-wrapper {
    width: 100%;
    position: relative;
}

.vision-vertical-img {
    width: 100%;
    height: 600px; /* Forzamos verticalidad */
    object-fit: cover; /* Recorta la imagen para llenar el alto sin deformar */
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    display: block;
}

/* Efecto opcional para que la imagen sobresalga un poco */
.vision-image-wrapper::after {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--gradient);
    z-index: -1;
    border-radius: 20px;
    opacity: 0.3;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .vision-grid {
        grid-template-columns: 1fr; /* Una columna en tablets/móvil */
        gap: 50px;
    }
    
    .vision-vertical-img {
        height: 450px; /* Bajamos el alto en pantallas chicas */
    }
    
    .vision-text-content {
        order: 2; /* Texto abajo en móvil */
    }
    
    .vision-image-wrapper {
        order: 1; /* Imagen arriba en móvil */
    }
}
/* --- SECCIÓN PROPUESTA DE VALOR --- */
.section-value-proposition {
    padding: 120px 0;
}

.value-grid {
    display: grid;
    /* Invertimos: 40% imagen, 60% texto */
    grid-template-columns: 0.8fr 1.2fr;
    gap: 100px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Estilo de la Lista de Valor */
.value-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.value-list li {
    font-size: 1 rem;
    color: #444;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 30px;
    transition: all 0.3s ease;
}

/* Bullet minimalista con tu degradado */
.value-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--gradient);
    border-radius: 50%;
}

.value-list li:hover {
    color: var(--black);
    padding-left: 40px;
}

.value-text-content .highlight-text {
    border-left: 3px solid #3668FF;
    padding-left: 25px;
    font-size: 1.2rem;
    font-weight: 700;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .value-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .value-image-wrapper {
        order: 1;
    }
    
    .value-text-content {
        order: 2;
    }
}
/* Reutilizamos las clases anteriores para mantener la coherencia visual */

.section-partners-split {
    padding: 120px 0;
    border-top: 1px solid #f5f5f7; /* Una línea casi invisible para separar del blanco anterior */
}

/* Ajuste específico para el título de éxito conjunto */
.section-partners-split .editorial-lead {
    margin-bottom: 45px;
}

/* En esta sección, el párrafo tiene un tono más corporativo */
.section-partners-split .vision-description p {
    max-width: 550px;
    font-weight: 400;
}

/* Responsive: En mobile la imagen siempre queda arriba para presentar el tema */
@media (max-width: 992px) {
    .section-partners-split .vision-grid {
        display: flex;
        flex-direction: column;
    }
    .section-partners-split .vision-image-wrapper {
        order: 1;
        margin-bottom: 40px;
    }
    .section-partners-split .vision-text-content {
        order: 2;
    }
}
/* No agregamos nada extra, solo recordamos las reglas de consistencia: */

.section-vision-final {
    padding: 120px 0;
    border-top: 1px solid #eee;
}

.product-flex-grid {
    display: flex;
    flex-wrap: wrap;       /* Permite que bajen si no entran */
    justify-content: center; /* CENTRADO AUTOMÁTICO siempre */
    gap: 25px;             /* Espacio entre tarjetas */
    width: 100%;
    overflow-x: auto;
}

.product-item {
    flex: 1 1 380px;         /* Permite que la tarjeta se achique hasta 380px si es necesario */
    max-width: 420px;        /* Pero nunca más de 420px */
    display: flex;
    justify-content: center;
}

/* Reutilizamos el ancho de tus tarjetas para que no se deformen */
.product-flex-grid .product-card {
    width: 100%;             /* Ahora el ancho lo manda el .product-item */
    margin: 0;
}

/* Responsive simple */
@media (max-width: 992px) {
    .product-flex-grid .product-card {
        width: 340px;      /* Un poco más chicas en tablets */
    }
}

@media (max-width: 576px) {
    .product-flex-grid .product-card {
        width: 100%;       /* Full width en celulares */
        max-width: 400px;
    }
}
.shorts-flex-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.short-item {
    flex: 0 1 320px; /* Ancho ideal para un Short en desktop */
    width: 100%;
}

.short-wrapper {
    position: relative;
    padding-top: 177.77%; /* ESTO ES EL 9:16 (16 / 9 * 100) */
    border-radius: 20px;
    overflow: hidden;
    background-color: #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.short-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive: en celulares se ven de a uno o dos */
@media (max-width: 768px) {
    .short-item {
        flex: 0 1 45%; /* Dos por fila en tablet */
    }
}

@media (max-width: 480px) {
    .short-item {
        flex: 0 1 100%; /* Uno por fila en móvil */
    }
}
/* Texto del cuerpo */
.text-distribuidor {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.text-distribuidor strong {
    color: #000;
    font-weight: 700;
}

/* Línea divisoria solo en desktop */
@media (min-width: 768px) {
    .border-start-md {
        border-left: 1px solid #eee !important;
        padding-left: 3rem;
    }
}

/* Contacto sutil sin tarjetas raras */
.contact-minimal {
    text-align: left;
}

.contact-minimal span {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #999;
    margin-bottom: 5px;
}

.contact-minimal a {
    font-size: 1.1rem;
    color: #111;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-minimal a:hover {
    color: #00d2ff;
}

.opacity-10 { opacity: 0.1; }


