:root{
  --brand-navy: #121A41;
  --brand-red: rgba(153, 1, 1, .95);
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #f7fafc;
  --ink: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --shadow: 0 10px 30px rgba(2, 6, 23, .08);
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  --radius: 18px;
  --radius-sm: 12px;
  --pad: 18px;
  --focus: 0 0 0 4px rgba(18, 26, 65, .18);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}
img, svg, video{
  max-width: 100%;
  height: auto;
  display: block;
}
a{
  color: inherit;
  text-decoration: none;
}
p{ margin: 0; }
ul{ margin: 0; padding: 0; list-style: none; }

.container{
  width: calc(100% - 48px);
  max-width: none;
  margin: 0 auto;
}

/* Skip link */
.skip-link{
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--brand-navy);
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus{
  left: 12px;
  outline: none;
  box-shadow: var(--focus);
}

/* ==============================
   Utilidades
   ============================== */
.muted{ color: var(--muted); }

/* CTA visual dentro de productos */
.products .badge{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 14px;
  border: 1px solid rgba(18,26,65,.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(242,246,251,.96));
  color: var(--brand-navy);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .01em;
  overflow: hidden;
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    color .18s ease;
}

.products .badge::before{
  content:"";
  position:absolute;
  top:-40%;
  left:-75%;
  width: 55%;
  height: 190%;
  transform: rotate(18deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.55),
    transparent
  );
  opacity: 0;
  transition: left .45s ease, opacity .22s ease;
}

.products .badge:hover{
  transform: translateY(-2px);
  border-color: rgba(18,26,65,.20);
  box-shadow: 0 10px 22px rgba(2, 6, 23, .10);
}

.products .badge:hover::before{
  left: 130%;
  opacity: 1;
}

.products .badge--red{
  background:
    linear-gradient(180deg, rgba(153,1,1,.94), rgba(120,0,0,.94));
  color: #fff;
  border-color: rgba(153,1,1,.22);
  box-shadow: 0 8px 18px rgba(153,1,1,.16);
}

.products .badge--red:hover{
  box-shadow: 0 12px 24px rgba(153,1,1,.22);
}

.kbd{
  font-size: 12px;
  padding: 2px 8px;
  border: 1px solid var(--line);
  border-bottom-width: 2px;
  border-radius: 10px;
  background: #fff;
  color: var(--muted);
}

/* Botones */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease, border-color .12s ease, opacity .12s ease;
  font-weight: 600;
  user-select: none;
  white-space: nowrap;
}
.btn:focus{ outline: none; box-shadow: var(--focus); }
.btn:active{ transform: translateY(1px); }

.btn--primary{
  background: var(--brand-navy);
  color: #fff;
}
.btn--primary:hover{ box-shadow: var(--shadow); }

.btn--accent{
  background: var(--brand-red);
  color: #fff;
}

.btn--ghost{
  background: transparent;
  border-color: var(--line);
  color: var(--brand-navy);
}
.btn--ghost:hover{
  background: rgba(18, 26, 65, .04);
}

/* Campos */
.field{
  display: grid;
  gap: 8px;
}
.label{
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-navy);
}
.input, .select{
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  transition: box-shadow .12s ease, border-color .12s ease;
}
.input:focus, .select:focus{
  outline: none;
  border-color: rgba(18, 26, 65, .35);
  box-shadow: var(--focus);
}

/* Cards */
.card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(18, 26, 65, .15);
}
.card__pad{ padding: 18px; }

/* ==============================
   Header / Navegación
   ============================== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img{
  width: 150px;
  height: auto;
  display: block;
  flex-shrink: 0;
}

.brand__name{
  display: grid;
  line-height: 1.05;
  min-width: 150px;
  max-width: 190px;
  color: #0f1536;
}

.brand__name strong{
  font-size: 14px;
  letter-spacing: .2px;
}

.brand__name span{
  font-size: 12px;
  color: var(--muted);
}

/* Buscador */
.search{
  position: relative;
}
.search__row{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}
.search__input{
  padding-left: 42px;
}
.search__icon{
  position: absolute;
  left: 14px;
  top: 13px;
  width: 18px;
  height: 18px;
  opacity: .65;
}
.suggestions{
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: none;
}
.suggestions a{
  display: flex;
  gap: 10px;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  color: var(--ink);
}
.suggestions a:first-child{ border-top: 0; }
.suggestions a:hover{ background: rgba(18, 26, 65, .04); }
.suggestions small{ color: var(--muted); }

/* Navegación */
.nav{
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-end;
}
.nav__links{
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav a.link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--brand-navy);
  font-weight: 600;
}
.nav a.link:hover{
  background: rgba(18, 26, 65, .04);
}

/* Menú productos */
.menu{
  position: relative;
}
.menu__panel{
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: min(520px, calc(100vw - 40px));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 12px;
  display: none;
  z-index: 60;
}
.menu__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.menu__item{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
}
.menu__item:hover{
  background: rgba(18, 26, 65, .04);
  border-color: rgba(18, 26, 65, .15);
}
.menu__item strong{
  display: block;
  font-size: 13px;
  color: var(--brand-navy);
}
.menu__item span{
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.nav__toggle{
  display: none;
}

.nav-mobile{
  display: none;
}
.nav-mobile.is-open{
  display: block;
}

/* ==============================
   Hero / Compra rápida
   ============================== */
.hero{
  padding: 28px 0 18px;
  background:
    radial-gradient(700px 240px at 15% 0%, rgba(18, 26, 65, .08), transparent 60%),
    radial-gradient(700px 240px at 85% 10%, rgba(153, 1, 1, .06), transparent 65%);
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: stretch;
}
.hero-copy{
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(18, 26, 65, .10);
  background: linear-gradient(180deg, rgba(255,255,255,.85), #fff);
}
.hero-copy h1{
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: -.4px;
  color: var(--brand-navy);
}
.hero-copy p{
  margin-top: 12px;
  color: var(--muted);
  max-width: 62ch;
}
.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.hero-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

/* Panel rápido */
.quick{
  padding: 18px;
}
.quick h2{
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--brand-navy);
}
.quick .grid{
  display: grid;
  gap: 10px;
}
.quick .btn{
  width: 100%;
  margin-top: 10px;
}
.quick small{
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

/* ==============================
   Secciones
   ============================== */
.section{
  padding: 26px 0;
}
.section--alt{
  background: var(--surface-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}
.section-head h2{
  margin: 0;
  font-size: 18px;
  color: var(--brand-navy);
}
.section-head p{
  color: var(--muted);
  max-width: 70ch;
}

/* Tiles */
.tiles{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.tile{
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  min-height: 96px;
  display: grid;
  gap: 8px;
  align-content: start;
}
.tile strong{
  color: var(--brand-navy);
  font-size: 14px;
}
.tile span{
  color: var(--muted);
  font-size: 12px;
}
.tile:hover{ box-shadow: var(--shadow); }

/* Categorías */
.categories{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.cat{
  display: grid;
  gap: 10px;
  padding: 14px;
}
.cat img{
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
}
.cat strong{ color: var(--brand-navy); }
.cat span{
  color: var(--muted);
  font-size: 12px;
}

/* ==========================================================
   Equipos recomendados por área clínica - rediseño premium
   ========================================================== */

.collections{
  display: grid;
  gap: 22px;
}

.collection{
  position: relative;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(18, 26, 65, .10);
  background:
    radial-gradient(520px 180px at 100% 0%, rgba(153,1,1,.04), transparent 60%),
    radial-gradient(420px 180px at 0% 100%, rgba(18,26,65,.05), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.96));
  box-shadow:
    0 12px 28px rgba(2, 6, 23, .06);
  overflow: hidden;
}

.collection::before{
  content:"";
  position:absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.18),
    rgba(255,255,255,0)
  );
}

.collection-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.collection-top h3{
  margin: 0;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--brand-navy);
}

.collection-top .btn--ghost{
  position: relative;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 14px;
  border: 1px solid rgba(18,26,65,.18);

  /* 🔥 más azul visible */
  background: linear-gradient(
    180deg,
    rgba(18,26,65,.06),
    rgba(18,26,65,.02)
  );

  color: var(--brand-navy);
  font-weight: 800;

  box-shadow: 0 8px 18px rgba(18, 26, 65, .08);
  overflow: hidden;
  isolation: auto;

  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    background .18s ease,
    color .18s ease;
}

/* reset pseudo-elementos */
.collection-top .btn--ghost::before,
.collection-top .btn--ghost::after{
  content: none !important;
}

/* 🔥 hover con más identidad */
.collection-top .btn--ghost:hover{
  transform: translateY(-2px);

  background: linear-gradient(
    180deg,
    rgba(18,26,65,.12),
    rgba(18,26,65,.05)
  );

  border-color: rgba(18,26,65,.28);

  /* leve glow azul */
  box-shadow:
    0 12px 28px rgba(18, 26, 65, .18);

  color: var(--brand-navy);
}

/* active */
.collection-top .btn--ghost:active{
  transform: translateY(0);
}

/* focus */
.collection-top .btn--ghost:focus{
  outline: none;
  box-shadow: var(--focus);
}

.products{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
  z-index: 1;
}

/* ==========================================================
   PRODUCT - TECH GLOW PREMIUM (agresivo pero elegante)
   ========================================================== */

.product{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(18,26,65,.12);

  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.95));

  overflow: hidden;

  transform-style: preserve-3d;
  transform-origin: center;

  transition:
    transform .6s cubic-bezier(.22,.85,.25,1),
    box-shadow .3s ease,
    border-color .3s ease;
}

/* 🔥 Glow azul + rojo */
.product::before{
  content:"";
  position:absolute;
  inset: -40%;

  background:
    radial-gradient(circle at 30% 30%, rgba(18,26,65,.25), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(153,1,1,.18), transparent 60%);

  opacity: 0;
  transition: opacity .35s ease;
  z-index: 0;
}

/* 🔥 línea energética animada */
.product::after{
  content:"";
  position:absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(18,26,65,.15),
    rgba(153,1,1,.18),
    transparent 80%
  );

  transform: translateX(-120%);
  transition: transform .6s cubic-bezier(.22,.85,.25,1);
  z-index: 0;
}

/* ----------------------------------
   HOVER
---------------------------------- */
.product:hover{
  transform:
    perspective(1200px)
    rotateX(6deg)
    rotateY(-10deg)
    scale(1.06);

  border-color: rgba(18,26,65,.25);

  box-shadow:
    0 30px 50px rgba(2,6,23,.18),
    0 10px 30px rgba(18,26,65,.12);
}

.product:hover::before{
  opacity: 1;
}

.product:hover::after{
  transform: translateX(120%);
}

/* ----------------------------------
   CONTENIDO EN CAPAS (depth real)
---------------------------------- */
.product{
  transition:
    transform .35s cubic-bezier(.22,.85,.25,1),
    box-shadow .35s ease,
    border-color .35s ease;
  
}

.product::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(
    300px 120px at 50% 0%,
    rgba(18,26,65,.08),
    transparent 70%
  );
  opacity: 0;
  transition: opacity .35s ease;
}

.product:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(2,6,23,.12);
  border-color: rgba(18,26,65,.18);
}

.product:hover::before{
  opacity: 1;
}

.product:hover img{
  transform: scale(1.04);
}

.product strong, .meta {
  color:#16204d;   
}
/* ==========================================================
   NOSOTROS - Trust cards flotantes premium
   ========================================================== */

#nosotros{
  position: relative;
  overflow: hidden;
}

#nosotros::before{
  content:"";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(420px 180px at 12% 0%, rgba(18,26,65,.06), transparent 60%),
    radial-gradient(420px 180px at 88% 100%, rgba(153,1,1,.05), transparent 60%);
  pointer-events: none;
}

.trust{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust .card{
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(18,26,65,.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.95));
  box-shadow:
    0 12px 28px rgba(2, 6, 23, .07);
  transition:
    transform .24s ease,
    box-shadow .24s ease,
    border-color .24s ease,
    background .24s ease;
  animation: trustFloat 5.8s ease-in-out infinite;
}

.trust .card:nth-child(2){
  animation-delay: .8s;
}

.trust .card:nth-child(3){
  animation-delay: 1.6s;
}

.trust .card:nth-child(4){
  animation-delay: 2.4s;
}

.trust .card::before{
  content:"";
  position:absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(18,26,65,.0),
    rgba(18,26,65,.55),
    rgba(153,1,1,.45),
    rgba(18,26,65,.0)
  );
  opacity: .85;
}

.trust .card::after{
  content:"";
  position:absolute;
  inset: 0;
  background:
    radial-gradient(180px 70px at 100% 0%, rgba(153,1,1,.05), transparent 60%),
    radial-gradient(180px 70px at 0% 100%, rgba(18,26,65,.05), transparent 60%);
  opacity: 0;
  transition: opacity .24s ease;
  pointer-events: none;
}

.trust .card:hover{
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(18,26,65,.18);
  box-shadow:
    0 20px 40px rgba(2, 6, 23, .14);
}

.trust .card:hover::after{
  opacity: 1;
}

.trust .card__pad{
  display: grid;
  gap: 10px;
  padding: 22px 18px 20px;
}

.trust strong{
  color: var(--brand-navy);
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -.01em;
}

.trust span{
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  max-width: 28ch;
}

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

/* ==========================================================
   NOSOTROS mobile autoplay slider
   ========================================================== */
.trustNav{
  display: none !important;
}

@media (max-width: 860px){
  .trust{
    position: relative;
    display: block;
    min-height: 230px; /* ajustable según tu contenido */
  }

  .trust .card{
    position: absolute;
    inset: 0;
    width: 100%;
    min-width: 100%;
    animation: none;
    opacity: 0;
    transform: translateX(18px) scale(.985);
    pointer-events: none;
    transition:
      opacity .55s ease,
      transform .55s cubic-bezier(.22,.85,.25,1),
      box-shadow .28s ease,
      border-color .28s ease;
  }

  .trust .card.is-active{
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
    z-index: 2;
    box-shadow: 0 18px 34px rgba(2, 6, 23, .12);
  }

  .trust .card.is-prev{
    opacity: 0;
    transform: translateX(-18px) scale(.985);
    z-index: 1;
  }

  .trust .card__pad{
    padding: 22px 18px 20px;
  }
}
/* ==========================================================
   Nosotros - iconos minimal premium
   ========================================================== */

.trustIcon{
  position: relative;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: var(--brand-navy);
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,250,252,.92));
  border: 1px solid rgba(18,26,65,.10);
  box-shadow:
    0 10px 22px rgba(2, 6, 23, .06);
  overflow: hidden;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease,
    color .22s ease,
    background .22s ease;
}

.trustIcon::before{
  content:"";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 25%, rgba(18,26,65,.10), transparent 55%),
    radial-gradient(circle at 75% 75%, rgba(153,1,1,.10), transparent 60%);
  opacity: .8;
  pointer-events: none;
}

.trustIcon svg{
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  transition: transform .22s ease;
}

.trust .card:hover .trustIcon{
  transform: translateY(-2px) scale(1.04);
  border-color: rgba(18,26,65,.18);
  box-shadow:
    0 14px 26px rgba(2, 6, 23, .10);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(244,247,252,.94));
}

.trust .card:hover .trustIcon svg{
  transform: scale(1.06);
}

/* ==========================================================
   CTA sección (Nosotros / secciones)
   ========================================================== */

.section-head{
  align-items: center;
}

.btn--section-cta{
  flex-shrink: 0;
}

/* Desktop: alineado a la derecha */
@media (min-width: 861px){
  .section-head{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

/* Mobile: se baja debajo del texto */
@media (max-width: 860px){
  .section-head{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .btn--section-cta{
    width: 100%;
    justify-content: center;
  }
}

/* Marcas */
.brands{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  align-items: center;
}
.brand-logo{
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
}
.brand-logo img{
  width: 100%;
  height: 54px;
  object-fit: contain;
  opacity: .9;
}

/* Contacto */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-card{
  padding: 18px;
}
.contact-card h3{
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--brand-navy);
}
.contact-list{
  display: grid;
  gap: 10px;
  margin-top: 10px;
}
.contact-list a{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
}
.contact-list a:hover{ background: rgba(18, 26, 65, .04); }
.contact-list small{ color: var(--muted); }

/* ==========================================================
   FOOTER NUEVO - clean / premium / apple-inspired
   ========================================================== */

.site-footer--new{
  position: relative;
  background: var(--brand-navy);
  color: rgba(255,255,255,.92);
  padding: 34px 0 18px;
  overflow: hidden;
}

.site-footer--new::before{
  content:"";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(520px 180px at 10% 0%, rgba(255,255,255,.05), transparent 60%),
    radial-gradient(520px 180px at 90% 100%, rgba(153,1,1,.12), transparent 60%);
  pointer-events: none;
}

.site-footer--new .container{
  position: relative;
  z-index: 1;
}

.footerMain{
  display: grid;
  grid-template-columns: 1.25fr .9fr 1fr;
  gap: 28px;
  align-items: start;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.footerBrand{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}

.footerBrand__logo img{
  width: 86px;
  height: auto;
  display: block;
}

.footerBrand__copy h3{
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -.02em;
}

.footerBrand__copy p{
  margin: 0;
  max-width: 38ch;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.72);
  margin-top: 20px;
}

.footerNav{
  display: grid;
  gap: 20px;
  align-content: start;
  justify-items: center;

}

.footerNav a{
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: rgba(255,255,255,.84);
  font-size: 14px;
  font-weight: 600;
  transition: color .18s ease, transform .18s ease;
}

.footerNav a:hover{
  color: #fff;
  transform: translateX(2px);
}

.footerContact{
  display: grid;
  gap: 12px;
  align-content: start;
}

.footerContact a{
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  transition:
    transform .18s ease,
    background-color .18s ease,
    border-color .18s ease;
}

.footerContact a:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.14);
}

.footerContact strong{
  font-size: 13px;
  color: #fff;
}

.footerContact span{
  font-size: 13px;
  color: rgba(255,255,255,.72);
}

.footerStrip{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footerMiniLinks{
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footerMiniLinks a{
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 600;
  transition: color .18s ease;
}

.footerMiniLinks a:hover{
  color: #fff;
}

.footerSocials{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footerSocial{
  position: relative;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #fff;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
  overflow: hidden;
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    background-color .18s ease,
    color .18s ease;
}

.footerSocial::before{
  content:"";
  position: absolute;
  top: -35%;
  left: -65%;
  width: 46%;
  height: 180%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent);
  opacity: 0;
  transition: left .45s ease, opacity .2s ease;
}

.footerSocial svg{
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 1;
}

.footerSocial:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(0,0,0,.18);
  border-color: rgba(255,255,255,.16);
}

.footerSocial:hover::before{
  left: 130%;
  opacity: 1;
}

.footerSocial--facebook:hover{ color: #8ab4ff; }
.footerSocial--instagram:hover{ color: #ff7bc2; }
.footerSocial--youtube:hover{ color: #ff8a8a; }
.footerSocial--tiktok:hover{ color: #ffffff; }

.footerBottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 14px;
  color: rgba(255,255,255,.58);
  font-size: 12px;
}

/* ==============================
   Tablet
   ============================== */
@media (max-width: 980px){
  .footerMain{
    grid-template-columns: 1fr 1fr;
  }

  .footerBrand{
    grid-column: 1 / -1;
  }

  .footerStrip{
    flex-direction: column;
    align-items: flex-start;
  }

  .footerBottom{
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==============================
   Mobile
   ============================== */
@media (max-width: 640px){
  .site-footer--new{
    padding: 26px 0 16px;
  }

  .footerMain{
    grid-template-columns: 1fr;
    gap: 18px;
    padding-bottom: 18px;
  }

  .footerBrand{
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
  }

  .footerBrand__logo img{
    width: 72px;
  }

  .footerBrand__copy h3{
    font-size: 18px;
  }

  .footerBrand__copy p{
    font-size: 13px;
    line-height: 1.5;
  }

  .footerNav{
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
  }

  .footerContact{
    gap: 10px;
  }

  .footerContact a{
    padding: 10px 12px;
  }

  .footerStrip{
    padding: 16px 0 12px;
    gap: 14px;
  }

  .footerMiniLinks{
    gap: 12px;
  }

  .footerSocials{
    gap: 8px;
  }

  .footerSocial{
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .footerBottom{
    padding-top: 12px;
    gap: 6px;
  }
}

/* ==============================
   HERO Slider
   ============================== */
.hero--snap{
  padding: 26px 0 14px;
  background:
    radial-gradient(820px 260px at 15% 0%, rgba(18, 26, 65, .10), transparent 60%),
    radial-gradient(820px 260px at 85% 6%, rgba(153, 1, 1, .08), transparent 65%);
}
.heroTop {
  display: flex;
  justify-content: space-between; 
  align-items: center;            
  gap: 20px;
  padding: 40px 20px;
}

.heroTop > div:first-child {
  flex: 1; 
}

.heroTitle {
  margin: 0;
  text-align: left;
  max-width: 700px;
  line-height: 1.2;
}

.heroCtas {
  display: flex;
  gap: 12px;
  align-items: center;
}
.heroCarousel{
  overflow: hidden;
}
.heroTrack{
  display: flex;
  gap: 0;
  padding: 0;
  overflow: visible;
  scroll-snap-type: none;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: auto;
  scrollbar-width: auto;
  transition: transform .55s cubic-bezier(.22,.85,.25,1);
  will-change: transform;
}
.heroTrack::-webkit-scrollbar{ display:none; }

.heroCard{
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 18px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 18px;
  margin: 0;
  position: relative;
  min-height: 380px;
}
.heroCard:hover{
  box-shadow: var(--shadow);
  border-color: rgba(18, 26, 65, .15);
  transform: none;
}

.heroCardCopy{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 8px 6px 8px 4px;
  max-width: 560px;
}

.heroH2{
  margin: 0;
  font-size: clamp(24px, 2.4vw, 42px);
  line-height: 1.05;
  color: var(--brand-navy);
}

.heroCardCopy p{
  margin: 0;
  color: var(--muted);
  max-width: 52ch;
  font-size: 16px;
  line-height: 1.55;
}

.heroCardActions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.heroCardMedia{
  display: flex;
  align-items: stretch;
}

.heroCardMedia img{
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
}

.heroNav{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px 14px;
  border-top: 1px solid rgba(18, 26, 65, .10);
}

/* ==============================
   HERO NAV BUTTON - PREMIUM
   ============================== */

.heroNavBtn{
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 18px;

  border: 1px solid rgba(18, 26, 65, .18);
  background: #f8fafc;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  overflow: hidden;

  box-shadow:
    0 8px 22px rgba(2, 6, 23, .08);

  transition:
    transform .22s ease,
    box-shadow .22s ease,
    background .22s ease,
    border-color .22s ease;
}

/* brillo tipo botón detalle */
.heroNavBtn::before{
  content:"";
  position:absolute;
  top:-40%;
  left:-80%;
  width: 60%;
  height: 200%;
  transform: rotate(18deg);

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.55),
    transparent
  );

  opacity: 0;
  transition: left .55s ease, opacity .25s ease;
  z-index: 0;
}

/* línea inferior elegante */
.heroNavBtn::after{
  content:"";
  position:absolute;
  left: 14px;
  right: 14px;
  bottom: 10px;
  height: 2px;
  border-radius: 999px;

  background: linear-gradient(
    90deg,
    rgba(153,1,1,0),
    rgba(153,1,1,.65),
    rgba(153,1,1,0)
  );

  transform: scaleX(.25);
  transform-origin: left;
  transition: transform .22s ease;
  z-index: 1;
}

/* icono */
.heroNavBtn svg,
.heroNavBtn span{
  position: relative;
  z-index: 2;
  font-size: 18px;
  font-weight: 900;
  color: var(--brand-navy);
  transition: transform .2s ease;
}

/* hover */
.heroNavBtn:hover{
  transform: translateY(-2px) scale(1.04);
  border-color: rgba(18, 26, 65, .28);
  box-shadow:
    0 14px 34px rgba(2, 6, 23, .14);
  background: #eef2f7;
}

.heroNavBtn:hover::before{
  left: 130%;
  opacity: 1;
}

.heroNavBtn:hover::after{
  transform: scaleX(1);
}

/* micro animación direccional */
.heroNavBtn:hover span{
  transform: translateX(2px);
}

.heroNavBtn:first-child:hover span{
  transform: translateX(-2px);
}

/* active */
.heroNavBtn:active{
  transform: scale(0.96);
}

/* focus accesible */
.heroNavBtn:focus{
  outline: none;
  box-shadow: var(--focus);
}

.heroDots{
  display:flex;
  gap: 8px;
  align-items:center;
}
.heroDot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(18, 26, 65, .25);
  background: rgba(18, 26, 65, .10);
  cursor:pointer;
}
.heroDot.is-active{
  background: var(--brand-red);
  border-color: rgba(153, 1, 1, .55);
}
.heroHint{
  margin-top: 10px;
  font-size: 12px;
}

.heroViewport{
  overflow: hidden;
  padding: 14px;
  box-sizing: border-box;
}
.heroViewport .heroTrack{
  display: flex;
  gap: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100%;
  box-sizing: border-box;
  will-change: transform;
}
.heroViewport .heroCard{
  flex: 0 0 100% !important;
  width: 100%;
  min-width: 100%;
  box-sizing: border-box;
}
.heroViewport .heroCard:hover{
  transform: none !important;
}
.heroViewport .heroCardMedia img{
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* ==============================
   Botón Ver detalles
   ============================== */
.btn--detail{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  border: 1px solid rgba(18, 26, 65, .18);
  background: #f8fafc; /* fondo limpio y estable */
  color: var(--brand-navy);
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 700;

  overflow: hidden;
  box-shadow: none;
  isolation: auto; /* quitamos el stacking raro */
}

/* contenido siempre arriba */
.btn--detail > span{
  position: relative;
  z-index: 2;
}

/* línea inferior */
.btn--detail::after{
  content:"";
  position:absolute;
  left: 14px;
  right: 14px;
  bottom: 9px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(153,1,1,0),
    rgba(153,1,1,.65),
    rgba(153,1,1,0)
  );
  transform: scaleX(.2);
  transform-origin: left;
  transition: transform .22s ease;
  opacity: .9;
  z-index: 1;
}

/* brillo diagonal */
.btn--detail::before{
  content:"";
  position:absolute;
  top:-40%;
  left:-80%;
  width: 60%;
  height: 200%;
  transform: rotate(18deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.55),
    transparent
  );
  opacity: 0;
  transition: left .55s ease, opacity .25s ease;
  z-index: 0;
  pointer-events: none;
}

.btn--detail .arrow{
  display:inline-block;
  margin-left: 4px;
  transform: translateX(-2px);
  opacity: 0;
  transition: transform .18s ease, opacity .18s ease;
  font-weight: 900;
}

.btn--detail:hover{
  background: #eef2f7;
  border-color: rgba(18, 26, 65, .28);
  box-shadow: 0 10px 25px rgba(2, 6, 23, .08);
}

.btn--detail:hover::after{
  transform: scaleX(1);
}

.btn--detail:hover::before{
  left: 130%;
  opacity: 1;
}

.btn--detail:hover .arrow{
  transform: translateX(0);
  opacity: 1;
}

.btn--detail:focus{
  outline: none;
  box-shadow: var(--focus);
}

/* ==========================================================
   HERO CTAs – Energy Glow Animado
   ========================================================== */

.heroCtas .btn{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .2px;
  border-radius: 18px;
  border: 1px solid transparent;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform .18s ease,
    box-shadow .24s ease,
    border-color .24s ease,
    background .24s ease,
    color .24s ease;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Texto siempre arriba */
.heroCtas .btn > *{
  position: relative;
  z-index: 3;
}

.heroCtas .btn::before{
  content:"";
  position:absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255,255,255,.25),
    transparent 70%
  );
  opacity: 0;
  transition: opacity .25s ease;
  z-index: 0; /* antes estaba afectando demasiado */
  pointer-events: none;
}

/* barrido energético */
.heroCtas .btn::after{
  content:"";
  position:absolute;
  top: -30%;
  left: -85%;
  width: 42%;
  height: 190%;
  transform: rotate(18deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.28),
    transparent
  );
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}

/* ----------------------------------
   Botón azul
   ---------------------------------- */
.heroCtas .btn--primary{
  color: #fff;
  background: linear-gradient(180deg, #182257 0%, #121A41 45%, #101837 100%);
  border-color: rgba(255,255,255,.07);
  box-shadow:
    0 10px 24px rgba(18, 26, 65, .22),
    0 0 0 1px rgba(255,255,255,.02) inset;
}

/* aura externa */
.heroCtas .btn--primary .energy-ring,
.heroCtas .btn--primary span.energy-ring{
  display: none;
}

.heroCtas .btn--primary:hover{
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(180deg, #24307a 0%, #1b255f 46%, #16204d 100%);
  border-color: rgba(255,255,255,.14);
  box-shadow:
    0 18px 38px rgba(18, 26, 65, .28),
    0 0 18px rgba(58, 86, 210, .24),
    0 0 34px rgba(40, 60, 140, .18),
    0 0 0 1px rgba(255,255,255,.04) inset;
}

.heroCtas .btn--primary:hover::after{
  opacity: 1;
  animation: energySweep 1.1s cubic-bezier(.22,.85,.25,1) infinite;
}

/* glow pulsante azul */
.heroCtas .btn--primary:hover{
  animation: energyPulseBlue 1.8s ease-in-out infinite;
}

/* ----------------------------------
   Botón rojo
   ---------------------------------- */
.heroCtas .btn--accent{
  color: #fff;
  background: linear-gradient(180deg, #b20b0b 0%, #990101 45%, #770000 100%);
  border-color: rgba(255,255,255,.07);
  box-shadow:
    0 10px 24px rgba(153,1,1,.22),
    0 0 0 1px rgba(255,255,255,.02) inset;
}

.heroCtas .btn--accent:hover{
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(180deg, #d11212 0%, #b50a0a 46%, #990101 100%);
  border-color: rgba(255,255,255,.14);
  box-shadow:
    0 18px 38px rgba(153,1,1,.28),
    0 0 18px rgba(232, 62, 62, .24),
    0 0 34px rgba(185, 30, 30, .18),
    0 0 0 1px rgba(255,255,255,.04) inset;
}

.heroCtas .btn--accent:hover::after{
  opacity: 1;
  animation: energySweep 1.1s cubic-bezier(.22,.85,.25,1) infinite;
}

.heroCtas .btn--accent:hover{
  animation: energyPulseRed 1.8s ease-in-out infinite;
}

/* active */
.heroCtas .btn:active{
  transform: translateY(-1px) scale(.995);
}

/* focus */
.heroCtas .btn:focus{
  outline: none;
  box-shadow: var(--focus);
}

/* keyframes */
@keyframes energySweep{
  0%{
    left: -85%;
    opacity: 0;
  }
  15%{
    opacity: 1;
  }
  55%{
    opacity: 1;
  }
  100%{
    left: 145%;
    opacity: 0;
  }
}

@keyframes energyPulseBlue{
  0%, 100%{
    box-shadow:
      0 18px 38px rgba(18, 26, 65, .26),
      0 0 16px rgba(58, 86, 210, .18),
      0 0 28px rgba(40, 60, 140, .12),
      0 0 0 1px rgba(255,255,255,.04) inset;
  }
  50%{
    box-shadow:
      0 20px 42px rgba(18, 26, 65, .30),
      0 0 22px rgba(58, 86, 210, .26),
      0 0 40px rgba(40, 60, 140, .18),
      0 0 0 1px rgba(255,255,255,.05) inset;
  }
}

@keyframes energyPulseRed{
  0%, 100%{
    box-shadow:
      0 18px 38px rgba(153,1,1,.26),
      0 0 16px rgba(232, 62, 62, .18),
      0 0 28px rgba(185, 30, 30, .12),
      0 0 0 1px rgba(255,255,255,.04) inset;
  }
  50%{
    box-shadow:
      0 20px 42px rgba(153,1,1,.30),
      0 0 22px rgba(232, 62, 62, .26),
      0 0 40px rgba(185, 30, 30, .18),
      0 0 0 1px rgba(255,255,255,.05) inset;
  }
}

/* Mobile */
@media (max-width: 520px){
  .heroCtas .btn{
    padding: 16px 20px;
    font-size: 16px;
    border-radius: 16px;
  }
}

/* ==============================
   Mega-menu split
   ============================== */
.menu__panel--split{
  width: min(920px, calc(100vw - 24px));
  padding: 12px;
  border-radius: 20px;
  overflow: hidden;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: min(920px, calc(100vw - 48px));
  background:
    radial-gradient(520px 210px at 15% 0%, rgba(18,26,65,.07), transparent 60%),
    radial-gradient(520px 210px at 85% 0%, rgba(153,1,1,.06), transparent 65%),
    #fff;
}
.splitMenu{
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 12px;
  align-items: stretch;
}
.splitMenu__left{
  border: 1px solid rgba(18,26,65,.10);
  border-radius: 18px;
  background: rgba(18,26,65,.02);
  padding: 10px;
  display: grid;
  gap: 8px;
}
.splitMenu__kicker{
  margin: 4px 6px 2px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .2px;
  text-transform: uppercase;
  color: rgba(18,26,65,.80);
}
.splitTab{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(18,26,65,.10);
  background: rgba(255,255,255,.88);
  color: var(--brand-navy);
  font-weight: 800;
  cursor: pointer;
  transition: background-color .14s ease, border-color .14s ease, transform .14s ease;
}
.splitTab:hover{
  background: rgba(18,26,65,.03);
  border-color: rgba(18,26,65,.18);
  transform: translateY(-1px);
}
.splitTab.is-active{
  background: rgba(18,26,65,.06);
  border-color: rgba(153,1,1,.22);
  box-shadow: 0 12px 24px rgba(2,6,23,.08);
}
.splitMenu__all{
  margin-top: 2px;
  display: inline-flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px dashed rgba(18,26,65,.22);
  color: var(--brand-navy);
  font-weight: 900;
  background: rgba(255,255,255,.7);
}
.splitMenu__all:hover{
  border-color: rgba(153,1,1,.30);
  background: rgba(153,1,1,.03);
}
.splitMenu__right{
  border: 1px solid rgba(18,26,65,.10);
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  padding: 10px;
  display: grid;
  gap: 10px;
}
.splitPanel{ display: none; }
.splitPanel.is-active{ display: block; }

.splitPanel__title{
  margin: 6px 6px 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .2px;
  text-transform: uppercase;
  color: rgba(18,26,65,.80);
}
.splitPanel__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0 6px 6px;
}
.splitLink{
  display: grid;
  gap: 2px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.94);
  transition: transform .14s ease, border-color .14s ease, background-color .14s ease, box-shadow .14s ease;
  position: relative;
  overflow: hidden;
}
.splitLink::before{
  content:"";
  position:absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18,26,65,.06), rgba(153,1,1,.04));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s cubic-bezier(.22,.85,.25,1);
  z-index: 0;
}
.splitLink strong,
.splitLink span{
  position: relative;
  z-index: 1;
}
.splitLink strong{
  font-size: 13px;
  color: var(--brand-navy);
}
.splitLink span{
  font-size: 12px;
  color: var(--muted);
}
.splitLink:hover{
  transform: translateY(-2px);
  border-color: rgba(18,26,65,.18);
  box-shadow: 0 14px 30px rgba(2,6,23,.10);
}
.splitLink:hover::before{
  transform: scaleX(1);
}
.splitMenu__cta{
  border-top: 1px solid rgba(18,26,65,.10);
  padding: 10px 6px 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.splitMenu__note{
  font-size: 13px;
  color: var(--muted);
  max-width: 70ch;
}
.splitMenu__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ==============================
   Header ajustes
   ============================== */
@media (min-width: 981px){
  .site-header .search{
    display: none;
  }
}
.site-header .btn[href*="#categorias"]{
  display: none !important;
}
.headerSocials{
  display: none !important;
}

/* ==============================
   Redes sociales flotantes izquierda
   Solo una se despliega a la vez
   ============================== */
.socialFloat{
  position: fixed;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.socialFloat__btn{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 54px;
  height: 54px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(18, 26, 65, .12);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,250,252,.94));
  color: var(--brand-navy);
  box-shadow: 0 10px 26px rgba(2, 6, 23, .10);
  backdrop-filter: blur(10px);
  overflow: hidden;
  isolation: isolate;
  transition:
    width .26s cubic-bezier(.22,.85,.25,1),
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    color .18s ease,
    background-color .18s ease;
}

.socialFloat__btn svg{
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  transition: transform .18s ease;
}

.socialFloat__btn span{
  margin-left: 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .1px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity .18s ease,
    transform .18s ease;
  pointer-events: none;
}

/* shine */
.socialFloat__btn::before{
  content: "";
  position: absolute;
  top: -35%;
  left: -65%;
  width: 46%;
  height: 180%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.58), transparent);
  opacity: 0;
  transition: left .45s ease, opacity .2s ease;
  z-index: -1;
}

/* línea inferior */
.socialFloat__btn::after{
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(18,26,65,0), rgba(18,26,65,.35), rgba(18,26,65,0));
  transform: scaleX(.28);
  transform-origin: left;
  transition: transform .22s ease;
  opacity: .9;
}

.socialFloat__btn:hover{
  width: 156px;
  transform: translateX(4px);
  border-color: rgba(18, 26, 65, .22);
  box-shadow: 0 16px 34px rgba(2, 6, 23, .16);
}

.socialFloat__btn:hover span{
  opacity: 1;
  transform: translateX(0);
}

.socialFloat__btn:hover svg{
  transform: scale(1.08);
}

.socialFloat__btn:hover::before{
  left: 130%;
  opacity: 1;
}

.socialFloat__btn:hover::after{
  transform: scaleX(1);
}

.socialFloat__btn:focus{
  outline: none;
  box-shadow: var(--focus);
}

/* variantes por red */
.socialFloat__btn--facebook:hover{
  color: #1877f2;
  border-color: rgba(24,119,242,.24);
  background: linear-gradient(180deg, rgba(24,119,242,.06), rgba(255,255,255,.96));
}

.socialFloat__btn--youtube:hover{
  color: #ff0000;
  border-color: rgba(255,0,0,.22);
  background: linear-gradient(180deg, rgba(255,0,0,.05), rgba(255,255,255,.96));
}

.socialFloat__btn--instagram:hover{
  color: #c13584;
  border-color: rgba(193,53,132,.24);
  background: linear-gradient(180deg, rgba(193,53,132,.06), rgba(255,255,255,.96));
}

.socialFloat__btn--tiktok:hover{
  color: #111111;
  border-color: rgba(0,0,0,.18);
  background: linear-gradient(180deg, rgba(18,26,65,.06), rgba(255,255,255,.96));
}

/* ==============================
   Botón subir arriba premium
   ============================== */
.toTop{
  position: fixed;
  right: 24px;
  bottom: 108px;
  z-index: 85;
  width: 62px;
  height: 62px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(18,26,65,.98), rgba(10,16,40,.98));
  color: #fff;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    0 18px 38px rgba(18, 26, 65, .30),
    inset 0 1px 0 rgba(255,255,255,.08);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}

.toTop svg{
  width: 24px;
  height: 24px;
  transition: transform .2s ease;
}

/* halo suave */
.toTop::before{
  content: "";
  position: absolute;
  inset: -35%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.22), transparent 55%);
  opacity: .65;
  z-index: -2;
}

/* shine diagonal */
.toTop::after{
  content: "";
  position: absolute;
  top: -40%;
  left: -65%;
  width: 48%;
  height: 190%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
  opacity: 0;
  transition: left .5s ease, opacity .22s ease;
  z-index: -1;
}

.toTop:hover{
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 24px 46px rgba(18, 26, 65, .38),
    inset 0 1px 0 rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.18);
}

.toTop:hover svg{
  transform: translateY(-3px);
}

.toTop:hover::after{
  left: 135%;
  opacity: 1;
}

.toTop:focus{
  outline: none;
  box-shadow: var(--focus);
}

/* ==============================
   Responsive
   ============================== */
@media (max-width: 980px){
  .container{
    width: calc(100% - 32px);
  }

  .header-inner{
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand toggle"
      "search search";
  }
  .brand{ grid-area: brand; }
  .search{ grid-area: search; }
  .nav{ display: none; }
  .nav__toggle{
    grid-area: toggle;
    display: inline-flex;
  }

  .nav-mobile{
    border-top: 1px solid var(--line);
    padding: 10px 0 14px;
  }
  .nav-mobile a{
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    color: var(--brand-navy);
    font-weight: 600;
  }
  .nav-mobile .sub{
    padding: 6px 0 14px;
    display: none;
  }
  .nav-mobile .sub.is-open{ display: grid; gap: 8px; }
  .nav-mobile .sub a{
    font-weight: 600;
    color: var(--ink);
    border-bottom: 0;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid var(--line);
  }

  .hero-grid{ grid-template-columns: 1fr; }
  .heroCard{ grid-template-columns: 1fr; }
  .heroCardMedia img{ height: 180px; }
  .heroViewport{ padding: 12px; }
  .heroViewport .heroCardMedia img{ height: 180px; }

  .tiles{ grid-template-columns: repeat(2, 1fr); }
  .categories{ grid-template-columns: repeat(2, 1fr); }
  .products{ grid-template-columns: repeat(2, 1fr); }
  .trust{ grid-template-columns: repeat(2, 1fr); }
  .brands{ grid-template-columns: repeat(3, 1fr); }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }

  .menu__panel--split{
    width: min(740px, calc(100vw - 24px));
  }
  .splitMenu{
    grid-template-columns: 1fr;
  }
  .splitPanel__grid{
    grid-template-columns: 1fr;
  }
  .splitMenu__actions .btn{
    width: 100%;
  }

.socialFloat{
  left: 12px;
  gap: 8px;
}
.socialFloat__btn{
  width: 48px;
  height: 48px;
  padding: 0 15px;
  justify-content: flex-start;
  border-radius: 16px;
}
.socialFloat__btn:hover{
  width: 48px;
  transform: none;
}
.socialFloat__btn span{
  display: none;
}

.toTop{
  right: 16px;
  bottom: 96px;
  width: 56px;
  height: 56px;
  border-radius: 18px;
}
}

@media (min-width: 861px){
  .site-header .header-inner{
    grid-template-columns: 220px 1fr auto;
    align-items: center;
  }
  .site-header .nav{
    display: flex !important;
  }
  .site-header .nav__toggle{
    display: none !important;
  }
  .site-header .nav-mobile{
    display: none !important;
  }
}

@media (max-width: 860px){
  .site-header .header-inner{
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand toggle"
      "search search";
    align-items: center;
    gap: 12px;
  }
  .site-header .brand{
    grid-area: brand;
    align-items: center;
  }
  .site-header .search{
    grid-area: search;
    display: block !important;
    width: 100%;
  }
  .site-header .nav{
    display: none !important;
  }
  .site-header .nav__toggle{
    grid-area: toggle;
    display: inline-flex !important;
  }
  .site-header .nav-mobile{
    display: none !important;
    width: 100%;
    border-top: 1px solid var(--line);
    padding: 10px 0 14px;
  }
  .site-header .nav-mobile.is-open{
    display: block !important;
  }
  .site-header .nav-mobile > a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    color: var(--brand-navy);
    font-weight: 600;
  }
  .site-header .nav-mobile .sub{
    display: none;
    padding: 6px 0 14px;
  }
  .site-header .nav-mobile .sub.is-open{
    display: grid;
    gap: 8px;
  }
  .site-header .nav-mobile .sub a{
    display: block;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--ink);
    font-weight: 600;
  }
.site-header .brand img{
  width: 120px;
}

.site-header .brand__name{
  min-width: 132px;
  max-width: 160px;
}

.site-header .brand__name strong{
  font-size: 14px;
}

.site-header .brand__name span{
  font-size: 12px;
}
}

@media (max-width: 640px){
.socialFloat{
  left: 10px;
  top: auto;
  bottom: 92px;
  transform: none;
  gap: 8px;
}

.socialFloat__btn{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  padding: 0 14px;
}

.socialFloat__btn:hover{
  width: 46px;
  transform: none;
}

.socialFloat__btn svg{
  width: 17px;
  height: 17px;
}

.toTop{
  right: 14px;
  bottom: 84px;
  width: 52px;
  height: 52px;
  border-radius: 16px;
}

.toTop svg{
  width: 22px;
  height: 22px;
}
}

@media (max-width: 520px){
  .container{
    width: calc(100% - 24px);
  }

  .tiles{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }

  .heroCtas .btn{
    padding: 16px 20px;
    font-size: 16px;
  }

  .site-header .brand{
    gap: 8px;
  }
.site-header .brand img{
  width: 110px;
}

.site-header .brand__name{
  min-width: 118px;
  max-width: 138px;
}

.site-header .brand__name strong{
  font-size: 13px;
}

.site-header .brand__name span{
  font-size: 11px;
}
  .site-header .search__row{
    grid-template-columns: 1fr;
  }
  .site-header .search__input{
    min-width: 0;
  }
}

.heroCtas{
  display: flex;
  gap: 12px;
  margin-top: 16px;

  margin-left: auto; /* 👈 ESTA ES LA CLAVE REAL */
}

.menu-overlay{
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, .38);
  backdrop-filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
  z-index: 40;
}

.menu-overlay.is-active{
  opacity: 1;
  pointer-events: auto;
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 70;
}

.menu{
  position: relative;
}

.menu__panel{
  z-index: 80;
}

@media (max-width: 860px){
  .site-header .brand__name{
    display: none !important;
  }

}



/* ==============================
   HAMBURGER PREMIUM CON COLOR
   ============================== */

.nav__toggle{
  width: 54px;
  height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(18, 26, 65, .15);
  
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,250,252,.92));
  
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  
  position: relative;
  overflow: hidden;
  
  box-shadow:
    0 10px 26px rgba(2, 6, 23, .10),
    inset 0 1px 0 rgba(255,255,255,.6);
  
  transition: all .28s cubic-bezier(.22,.85,.25,1);
}

/* glow azul + rojo */
.nav__toggle::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:
    radial-gradient(circle at 30% 30%, rgba(18,26,65,.25), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(153,1,1,.25), transparent 60%);
  opacity:0;
  transition: opacity .35s ease;
}

/* borde animado */
.nav__toggle::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    120deg,
    rgba(18,26,65,.4),
    rgba(153,1,1,.4),
    rgba(18,26,65,.4)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: .4;
  transition: opacity .3s ease;
}

/* hover */
.nav__toggle:hover{
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 16px 34px rgba(2, 6, 23, .18),
    0 0 20px rgba(153,1,1,.15);
}

.nav__toggle:hover::before{
  opacity:1;
}

.nav__toggle:hover::after{
  opacity: .9;
}

/* líneas */
.burger{
  position: relative;
  width: 24px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.burger span{
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 999px;

  background: linear-gradient(
    90deg,
    var(--brand-navy),
    var(--brand-red)
  );

  transition: all .32s cubic-bezier(.22,.85,.25,1);
}

/* estado activo (X) */
.nav__toggle.is-active{
  background:
    linear-gradient(180deg, rgba(18,26,65,.06), rgba(255,255,255,.96));
}

.nav__toggle.is-active::before{
  opacity: 1;
}

/* animación burger */
.nav__toggle.is-active .burger span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.is-active .burger span:nth-child(2){
  opacity: 0;
  transform: scaleX(0);
}

.nav__toggle.is-active .burger span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

/* RESET DURO DEL BOTON DETALLE */
a.btn--detail,
button.btn--detail,
.btn.btn--detail{
  -webkit-appearance: none !important;
  appearance: none !important;
  background: #f8fafc !important;
  background-image: none !important;
  color: var(--brand-navy) !important;
  border: 1px solid rgba(18, 26, 65, .18) !important;
  box-shadow: none !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  isolation: auto !important;
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 12px 16px !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  text-decoration: none !important;
}

a.btn--detail::before,
button.btn--detail::before,
.btn.btn--detail::before{
  content: "" !important;
  position: absolute !important;
  top: -40% !important;
  left: -80% !important;
  width: 60% !important;
  height: 200% !important;
  transform: rotate(18deg) !important;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.55),
    transparent
  ) !important;
  opacity: 0 !important;
  transition: left .55s ease, opacity .25s ease !important;
  z-index: 0 !important;
  pointer-events: none !important;
  box-shadow: none !important;
  filter: none !important;
}

a.btn--detail::after,
button.btn--detail::after,
.btn.btn--detail::after{
  content: "" !important;
  position: absolute !important;
  left: 14px !important;
  right: 14px !important;
  bottom: 9px !important;
  height: 2px !important;
  border-radius: 999px !important;
  background: linear-gradient(
    90deg,
    rgba(153,1,1,0),
    rgba(153,1,1,.65),
    rgba(153,1,1,0)
  ) !important;
  transform: scaleX(.2) !important;
  transform-origin: left !important;
  transition: transform .22s ease !important;
  opacity: .9 !important;
  z-index: 1 !important;
  box-shadow: none !important;
  filter: none !important;
}

a.btn--detail > *,
button.btn--detail > *,
.btn.btn--detail > *{
  position: relative !important;
  z-index: 2 !important;
  background: transparent !important;
  color: inherit !important;
  box-shadow: none !important;
  filter: none !important;
}

a.btn--detail:hover,
button.btn--detail:hover,
.btn.btn--detail:hover{
  background: #eef2f7 !important;
  background-image: none !important;
  border-color: rgba(18, 26, 65, .28) !important;
  box-shadow: 0 10px 25px rgba(2, 6, 23, .08) !important;
  color: var(--brand-navy) !important;
}

a.btn--detail:hover::before,
button.btn--detail:hover::before,
.btn.btn--detail:hover::before{
  left: 130% !important;
  opacity: 1 !important;
}

a.btn--detail:hover::after,
button.btn--detail:hover::after,
.btn.btn--detail:hover::after{
  transform: scaleX(1) !important;
}

a.btn--detail .arrow,
button.btn--detail .arrow,
.btn.btn--detail .arrow{
  display: inline-block !important;
  margin-left: 4px !important;
  transform: translateX(-2px) !important;
  opacity: 0 !important;
  transition: transform .18s ease, opacity .18s ease !important;
  font-weight: 900 !important;
}

a.btn--detail:hover .arrow,
button.btn--detail:hover .arrow,
.btn.btn--detail:hover .arrow{
  transform: translateX(0) !important;
  opacity: 1 !important;
}

@media (max-width: 980px){

  .heroCard{
    display: flex;          
    flex-direction: column; 
  }

  .heroCardMedia{
    order: 1; 
  }

  .heroCardCopy{
    order: 2; 
  }

}

/* ==========================================================
   Categorías destacadas - hover preview premium
   ========================================================== */

.categories{
  position: relative;
}

.cat{
  position: relative;
  overflow: hidden;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease,
    background-color .22s ease;
}

.cat::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0),
    rgba(18,26,65,.04)
  );
  opacity: 0;
  transition: opacity .22s ease;
  pointer-events: none;
}

.cat:hover{
  transform: translateY(-4px);
  border-color: rgba(18,26,65,.18);
  box-shadow: 0 18px 34px rgba(2, 6, 23, .12);
}

.cat:hover::before{
  opacity: 1;
}

.cat img{
  transition:
    transform .35s cubic-bezier(.22,.85,.25,1),
    filter .35s ease;
}

.cat:hover img{
  transform: scale(1.035);
}

/* Preview global */
.catPreview{
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity .25s ease,
    visibility .25s ease;
}

.catPreview.is-active{
  opacity: 1;
  visibility: visible;
  pointer-events: none;
}

.catPreview__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 30, .34);
  backdrop-filter: blur(8px);
}

.catPreview__card{
  position: relative;
  z-index: 1;
  width: min(960px, calc(100vw - 64px));
  min-height: 420px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(248,250,252,.88));
  box-shadow:
    0 30px 70px rgba(2, 6, 23, .24),
    0 0 0 1px rgba(255,255,255,.04) inset;
  transform: translateY(14px) scale(.96);
  transition:
    transform .28s cubic-bezier(.22,.85,.25,1),
    opacity .25s ease;
}

.catPreview.is-active .catPreview__card{
  transform: translateY(0) scale(1);
}

.catPreview__media{
  position: relative;
  overflow: hidden;
  background: #e9eef5;
}

.catPreview__media::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18,26,65,.06), rgba(153,1,1,.04));
  pointer-events: none;
}

.catPreview__media img{
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transform: scale(1.06);
  filter: saturate(1.02) contrast(1.02);
}

.catPreview__content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 38px 40px;
  background:
    radial-gradient(520px 180px at 100% 0%, rgba(153,1,1,.05), transparent 60%),
    radial-gradient(420px 180px at 0% 100%, rgba(18,26,65,.06), transparent 60%);
}

.catPreview__kicker{
  margin: 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(18,26,65,.65);
}

.catPreview__content h3{
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.02;
  color: var(--brand-navy);
  letter-spacing: -.03em;
}

.catPreview__content p:last-child{
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 34ch;
}

/* mobile y touch: desactivar preview */
@media (max-width: 980px){
  .catPreview{
    display: none !important;
  }
}

/* ==========================================================
   Categorías mobile slider
   ========================================================== */
.categoriesNav{
  display: none;
}

@media (max-width: 860px){
  .categories{
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }

  .categories::-webkit-scrollbar{
    display: none;
  }

  .categories .cat{
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    transform-origin: center center;
    transition:
      transform .28s ease,
      opacity .28s ease,
      box-shadow .28s ease,
      border-color .28s ease;
  }

  .categories .cat img{
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background: #fff;
  }

  .categories .cat.is-active{
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 16px 32px rgba(2, 6, 23, .10);
    border-color: rgba(18, 26, 65, .14);
  }

  .categories .cat:not(.is-active){
    transform: scale(.985);
    opacity: .92;
  }

  .categoriesNav{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
  }

  .categoriesDot{
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(18, 26, 65, .22);
    background: rgba(18, 26, 65, .10);
    cursor: pointer;
    transition:
      transform .18s ease,
      background-color .18s ease,
      border-color .18s ease;
  }

  .categoriesDot.is-active{
    background: var(--brand-red);
    border-color: rgba(153,1,1,.55);
    transform: scale(1.12);
  }
}

/* ==========================================================
   Collection slider mobile
   ========================================================== */
.collectionNav{
  display: none;
}

@media (max-width: 860px){
  .collection{
    padding: 16px;
    border-radius: 22px;
  }

  .collection-top{
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .collection-top h3{
    font-size: 22px;
  }

  .collectionSlider{
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    padding-bottom: 4px;
  }

  .collectionSlider::-webkit-scrollbar{
    display: none;
  }

  .collectionSlider .product{
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    transition:
      transform .28s ease,
      opacity .28s ease,
      box-shadow .28s ease,
      border-color .28s ease;
  }

  .collectionSlider .product.is-active{
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 18px 34px rgba(2, 6, 23, .12);
  }

  .collectionSlider .product:not(.is-active){
    transform: scale(.985);
    opacity: .93;
  }

  .collectionSlider .product img{
    aspect-ratio: 1 / 1;
    object-fit: contain;
  }

  .collectionNav{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
  }

  .collectionDot{
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(18,26,65,.22);
    background: rgba(18,26,65,.10);
    cursor: pointer;
    transition:
      transform .18s ease,
      background-color .18s ease,
      border-color .18s ease;
  }

  .collectionDot.is-active{
    background: var(--brand-red);
    border-color: rgba(153,1,1,.55);
    transform: scale(1.12);
  }
}

/* ==========================================================
   BLOG - Full width carousel premium
   ========================================================== */

.section--blog{
  position: relative;
  overflow: hidden;
  padding: 34px 0 40px;
  background:
    radial-gradient(920px 260px at 15% 0%, rgba(18,26,65,.06), transparent 60%),
    radial-gradient(920px 260px at 85% 100%, rgba(153,1,1,.05), transparent 65%);
}

.blogShell{
  width: 100%;
}

.section-head--blog{
  margin-bottom: 18px;
}

.blogHeadBtn{
  flex-shrink: 0;
}

.blogCarouselWrap{
  position: relative;
  width: 100%;
  overflow: hidden;
}

.blogCarouselViewport{
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0 20px;
}

.blogTrack{
  display: flex;
  align-items: center;
  gap: 28px;
  will-change: transform;
  transition: transform .7s cubic-bezier(.22,.85,.25,1);
  padding: 0 calc(50vw - 540px);
  box-sizing: border-box;
}

.blogSlide{
  position: relative;
  flex: 0 0 min(1080px, 78vw);
  width: min(1080px, 78vw);
  opacity: .42;
  transform: scale(.9);
  filter: blur(2.2px);
  transition:
    transform .7s cubic-bezier(.22,.85,.25,1),
    opacity .45s ease,
    filter .45s ease;
  pointer-events: none;
}



.blogSlide.is-active{
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
  pointer-events: auto;
}

.blogSlide__link{
  position: relative;
  display: block;
  min-height: 560px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 30px 70px rgba(2, 6, 23, .22),
    0 0 0 1px rgba(255,255,255,.04) inset;
  background: #dfe7f2;
}

.blogSlide__media{
  position: absolute;
  inset: 0;
}

.blogSlide__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .7s cubic-bezier(.22,.85,.25,1);
}

.blogSlide.is-active:hover .blogSlide__media img{
  transform: scale(1.05);
}

.blogSlide__overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,12,28,.18) 0%, rgba(8,12,28,.08) 20%, rgba(8,12,28,.58) 100%),
    linear-gradient(90deg, rgba(18,26,65,.16), rgba(153,1,1,.08));
}

.blogSlide__content{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 34px 34px 30px;
  color: #fff;
}

.blogSlide__eyebrow{
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.blogSlide__content h3{
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.03;
  letter-spacing: -.03em;
  max-width: 14ch;
  text-wrap: balance;
  color: white;
}

.blogSlide__content p{
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,.9);
  max-width: 54ch;
}

.blogSlide__cta{
  margin-top: 18px;
}

.blogSlide__cta .btn--detail{
  background: rgba(255,255,255,.14) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,.18) !important;
  box-shadow: none !important;
}

.blogSlide__cta .btn--detail:hover{
  background: rgba(255,255,255,.2) !important;
  border-color: rgba(255,255,255,.26) !important;
}

.blogNav{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 10px;
}

.blogNavBtn{
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(18,26,65,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.94));
  color: var(--brand-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(2, 6, 23, .08);
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    background .18s ease;
}

.blogNavBtn:hover{
  transform: translateY(-2px);
  border-color: rgba(18,26,65,.2);
  box-shadow: 0 16px 28px rgba(2, 6, 23, .12);
}

.blogDots{
  display: flex;
  align-items: center;
  gap: 8px;
}

.blogDot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(18,26,65,.24);
  background: rgba(18,26,65,.12);
  transition:
    transform .18s ease,
    background-color .18s ease,
    border-color .18s ease;
}

.blogDot.is-active{
  background: var(--brand-red);
  border-color: rgba(153,1,1,.55);
  transform: scale(1.15);
}

/* Tablet */
@media (max-width: 1200px){
  .blogTrack{
    padding: 0 calc(50vw - 420px);
  }

  .blogSlide{
    flex: 0 0 min(840px, 84vw);
    width: min(840px, 84vw);
  }

  .blogSlide__link{
    min-height: 500px;
  }
}

/* Mobile */
@media (max-width: 860px){
  .section--blog{
    padding: 28px 0 34px;
  }

  .section-head--blog{
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .blogTrack{
    gap: 18px;
    padding: 0 calc(50vw - 44vw);
  }

  .blogSlide{
    flex: 0 0 88vw;
    width: 88vw;
    opacity: .55;
    transform: scale(.94);
    filter: blur(1.8px);
  }

  .blogSlide__link{
    min-height: 440px;
    border-radius: 24px;
  }

  .blogSlide__content{
    padding: 24px 20px 22px;
  }

  .blogSlide__content h3{
    font-size: 26px;
    max-width: 13ch;
  }

  .blogSlide__content p{
    font-size: 14px;
    line-height: 1.55;
    max-width: none;
  }

  .blogNav{
    margin-top: 12px;
  }

  .blogNavBtn{
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }
}

@media (max-width: 520px){
  .blogTrack{
    padding: 0 calc(50vw - 43vw);
  }

  .blogSlide{
    flex: 0 0 86vw;
    width: 86vw;
  }

  .blogSlide__link{
    min-height: 400px;
  }

  .blogSlide__content h3{
    font-size: 24px;
  }

  .blogSlide__eyebrow{
    font-size: 11px;
    padding: 6px 10px;
  }
}

@media (max-width: 1200px){

  /* Oculta dots */
  .blogDots{
    display: none !important;
  }

  /* 🔥 Oculta flechas */
  .blogNavBtn{
    display: none !important;
  }

  /* Ajusta contenedor para que no deje hueco */
  .blogNav{
    display: none !important;
  }

}

/* ==========================================================
   Kicker genérico
   ========================================================== */
.section-kicker{
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(18,26,65,.65);
}


/* ==========================================================
   B) Proceso de compra
   ========================================================== */
.section--process{
  position: relative;
  overflow: hidden;
}

.section-head--process{
  align-items: center;
}

.processTimeline{
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.processTimeline{
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.processProgress{
  position: absolute;
  top: 27px;
  left: 10%;
  right: 10%;
  height: 6px;
  z-index: 0;
  pointer-events: none;
}

.processProgress__base{
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(18,26,65,.10),
    rgba(153,1,1,.10),
    rgba(18,26,65,.10)
  );
  overflow: hidden;
}

.processProgress__fill{
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(18,26,65,.85),
    rgba(153,1,1,.75)
  );
  box-shadow:
    0 0 18px rgba(18,26,65,.14),
    0 0 22px rgba(153,1,1,.10);
  transition: width .45s cubic-bezier(.22,.85,.25,1);
}

.processStep{
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.processStep__num{
  position: relative;
  z-index: 2;
}

.processStep{
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.processStep__num{
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid rgba(18,26,65,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.94));
  color: var(--brand-navy);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(2, 6, 23, .07);
}

.processStep__card{
  min-height: 190px;
  padding: 20px 18px;
  border-radius: 22px;
  border: 1px solid rgba(18,26,65,.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.95));
  box-shadow: 0 12px 24px rgba(2, 6, 23, .06);
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease;
}

.processStep:hover .processStep__card{
  transform: translateY(-6px);
  border-color: rgba(18,26,65,.16);
  box-shadow: 0 18px 32px rgba(2, 6, 23, .10);
}

.processStep h3{
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--brand-navy);
  line-height: 1.15;
}

.processStep p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.processNav{
  display: none;
}

/* ==========================================================
   Responsive - Autoridad
   ========================================================== */
@media (max-width: 980px){
  .authorityGrid{
    grid-template-columns: repeat(2, 1fr);
  }

  .authorityStats{
    grid-template-columns: 1fr;
  }

  .processTimeline{
    grid-template-columns: 1fr;
  }

  .processTimeline::before{
    display: none;
  }
}

@media (max-width: 860px){
  .section-head--authority,
  .section-head--process{
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .authorityGrid{
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    padding-bottom: 4px;
  }

  .authorityGrid::-webkit-scrollbar{
    display: none;
  }

  .authorityGrid .authorityCard{
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    animation: none;
    transition:
      transform .28s ease,
      opacity .28s ease,
      box-shadow .28s ease,
      border-color .28s ease;
  }

  .authorityGrid .authorityCard.is-active{
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 18px 34px rgba(2, 6, 23, .12);
  }

  .authorityGrid .authorityCard:not(.is-active){
    transform: scale(.985);
    opacity: .93;
  }

  .authorityNav{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
  }

  .authorityDot{
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(18,26,65,.22);
    background: rgba(18,26,65,.10);
    cursor: pointer;
    transition:
      transform .18s ease,
      background-color .18s ease,
      border-color .18s ease;
  }

  .authorityDot.is-active{
    background: var(--brand-red);
    border-color: rgba(153,1,1,.55);
    transform: scale(1.12);
  }

  .processTimeline{
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    padding-bottom: 4px;
  }

  .processTimeline::-webkit-scrollbar{
    display: none;
  }

  .processStep{
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    transition:
      transform .28s ease,
      opacity .28s ease;
  }

  .processStep.is-active{
    transform: scale(1);
    opacity: 1;
  }

  .processStep:not(.is-active){
    transform: scale(.985);
    opacity: .94;
  }

  .processStep__card{
    min-height: auto;
  }

  .processNav{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
  }

  .processDot{
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(18,26,65,.22);
    background: rgba(18,26,65,.10);
    cursor: pointer;
    transition:
      transform .18s ease,
      background-color .18s ease,
      border-color .18s ease;
  }

  .processDot.is-active{
    background: var(--brand-red);
    border-color: rgba(153,1,1,.55);
    transform: scale(1.12);
  }
}

@media (max-width: 1200px){
  .authorityNav,
  .processNav{
    display: none !important;
  }
}

@media (max-width: 860px){
  .authorityGrid{
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    padding-bottom: 4px;
  }

  .authorityGrid::-webkit-scrollbar{
    display: none;
  }

  .authorityGrid .authorityCard{
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .processTimeline{
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    padding-bottom: 4px;
  }

  .processTimeline::-webkit-scrollbar{
    display: none;
  }

  .processStep{
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
}

@media (max-width: 860px){
  .heroNavBtn{
    display: none !important;
  }

  .heroNav{
    justify-content: center;
  }

  .socialFloat{
    display: none !important;
  }
}

@media (max-width: 860px){
  .heroViewport{
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }

  .heroViewport::-webkit-scrollbar{
    display: none;
  }

  .heroTrack{
    will-change: auto;
  }

  .heroCard{
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
}

@media (max-width: 860px){
  .heroTrack{
    transition: none !important;
  }
}

/* Desktop / base */
.authorityGrid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Tablet */
@media (max-width: 980px) and (min-width: 861px){
  .authorityGrid{
    grid-template-columns: repeat(2, 1fr);
  }

  .authorityNav{
    display: none !important;
  }
}

/* Mobile */
@media (max-width: 860px){
  .authorityGrid{
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    padding-bottom: 4px;
  }

  .authorityGrid::-webkit-scrollbar{
    display: none;
  }

  .authorityGrid .authorityCard{
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .authorityNav{
    display: none !important;
  }
}

/* Desktop / base */
.processTimeline{
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 8px;
}

/* Tablet */
@media (max-width: 980px) and (min-width: 861px){
  .processTimeline{
    grid-template-columns: 1fr;
  }

  .processProgress{
    display: none;
  }

  .processNav{
    display: none !important;
  }
}

/* Mobile */
@media (max-width: 860px){
  .processTimeline{
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    padding-bottom: 4px;
  }

  .processTimeline::-webkit-scrollbar{
    display: none;
  }

  .processStep{
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .processProgress,
  .processNav{
    display: none !important;
  }
}

@media (max-width: 860px){

  .btn--section-cta{
    width: auto;             
    align-self: flex-end;   
    padding: 12px 18px;    
    font-size: 14px;
    min-width: 140px;    
    justify-content: center;
  }

}

.footer-brand{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.footerBrand__logo{
  order: 1; 
  flex-shrink: 0;
}

.footerBrand__copy{
  order: 2; 
  max-width: 420px;
  text-align: center;
}

.footerBrand__logo img{
  width: 150px;
  height: auto;
  display: block;
}

@media (max-width: 860px){
  .footer-brand{
    flex-direction: column;
    align-items: flex-start;
  }

  .footerBrand__logo{
    order: 1;
  }

  .footerBrand__copy{
    order: 2;
    max-width: none;
  }

  .footerBrand__logo img{
    width: 120px;
  }
}