/* =========================================================
   Kenniel — Natural Hair Care
   Paleta tomada del verde real del logotipo (#2F5A2C) y del
   panal de sus propias fotos. La firma visual es LA ETIQUETA:
   las fichas de producto reproducen la estructura de sus frascos.
   ========================================================= */

:root {
  --bosque: #2f5a2c;
  --bosque-osc: #24451f;
  --oliva: #66754a;
  --salvia: #a9b99b;
  --salvia-cl: #dee6d7;
  --crema: #f5f2e9;
  --hueso: #fcfbf7;
  --miel: #c08a2e;      /* DECORATIVO: 3,2:1 sobre blanco */
  --miel-txt: #8a6212;  /* el que sí vale para texto: 5,5:1 */
  --miel-cl: #e8cb86;   /* sobre verde bosque: 5,0:1 */
  --tinta: #1b2318;
  --gris: #545e4d;

  --display: "Marcellus", "Iowan Old Style", Georgia, serif;
  --texto: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --gutter: 1.25rem;
  --ancho: 1240px;
  --radio: 18px;
  --radio-s: 11px;
  --sombra: 0 1px 2px rgba(27, 35, 24, .04), 0 8px 26px -12px rgba(27, 35, 24, .16);
  --sombra-alta: 0 2px 4px rgba(27, 35, 24, .05), 0 22px 50px -20px rgba(27, 35, 24, .26);
  --barra: 68px;
  --curva: cubic-bezier(.22, .61, .36, 1);
}

@media (min-width: 700px) { :root { --gutter: 2rem; --barra: 78px; } }
@media (min-width: 1100px) { :root { --gutter: 3rem; } }

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* tiene que ser el alto REAL de la barra fija, si no las anclas se meten debajo */
  scroll-padding-top: calc(var(--barra) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--hueso);
  color: var(--tinta);
  font-family: var(--texto);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 380;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.008em;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(2.3rem, 7.2vw, 4.15rem); }
h2 { font-size: clamp(1.85rem, 4.6vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

:focus-visible {
  outline: 3px solid var(--bosque);
  outline-offset: 3px;
  border-radius: 4px;
}
.seccion--verde :focus-visible, .cta-final :focus-visible, .pie :focus-visible {
  outline-color: var(--miel-cl);
}

.sr {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.saltar {
  position: absolute; top: -100px; left: var(--gutter); z-index: 200;
  background: var(--bosque); color: #fff; padding: .8rem 1.2rem;
  border-radius: 0 0 10px 10px; font-weight: 600; text-decoration: none;
}
.saltar:focus { top: 0; }

/* ---------- envoltorios ---------- */

.env { width: 100%; max-width: var(--ancho); margin-inline: auto; padding-inline: var(--gutter); }
.env--estrecho { max-width: 820px; }

.seccion { padding-block: clamp(3.75rem, 9vw, 7rem); position: relative; }
.seccion--crema { background: var(--crema); }
.seccion--verde { background: var(--bosque); color: var(--hueso); }
.seccion--verde h2, .seccion--verde h3 { color: #fff; }

.cabeza { max-width: 660px; margin-bottom: clamp(2.25rem, 4vw, 3.5rem); }
.cabeza--centro { margin-inline: auto; text-align: center; }

.rotulo {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--miel-txt); margin-bottom: 1rem;
}
.seccion--verde .rotulo, .cta-final .rotulo { color: var(--miel-cl); }
.rotulo::before {
  content: ""; width: 26px; height: 1px; background: currentColor; opacity: .55;
}

.entradilla { color: var(--gris); font-size: 1.075rem; margin-top: 1.1rem; }
.seccion--verde .entradilla, .cta-final .entradilla { color: rgba(255, 255, 255, .82); }

/* ---------- botones ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.7rem; border-radius: 999px; border: 1.5px solid transparent;
  font-family: var(--texto); font-size: .95rem; font-weight: 650; letter-spacing: .01em;
  text-decoration: none; cursor: pointer; text-align: center;
  transition: background-color .25s var(--curva), color .25s var(--curva),
              border-color .25s var(--curva), transform .25s var(--curva),
              box-shadow .25s var(--curva);
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--verde { background: var(--bosque); color: #fff; }
.btn--verde:hover { background: var(--bosque-osc); box-shadow: var(--sombra-alta); }

.btn--wa { background: #1f9d55; color: #fff; }
.btn--wa:hover { background: #17773f; box-shadow: var(--sombra-alta); }

.btn--linea { border-color: currentColor; color: var(--bosque); background: transparent; }
.btn--linea:hover { background: var(--bosque); border-color: var(--bosque); color: #fff; }

.seccion--verde .btn--linea, .cta-final .btn--linea { color: #fff; }
.seccion--verde .btn--linea:hover, .cta-final .btn--linea:hover {
  background: #fff; border-color: #fff; color: var(--bosque);
}

.btn--claro { background: var(--hueso); color: var(--bosque); }
.btn--claro:hover { background: #fff; box-shadow: var(--sombra-alta); }

.btn--bloque { width: 100%; }
.btn--grande { padding: 1.15rem 2.3rem; font-size: 1.03rem; }

/* ---------- insignia de envíos ---------- */

.envio {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .5rem 1.05rem .5rem .75rem; border-radius: 999px;
  background: rgba(255, 255, 255, .88); border: 1px solid var(--salvia);
  color: var(--bosque); font-size: .84rem; font-weight: 600;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.envio svg { width: 1.15rem; height: 1.15rem; flex: none; color: var(--bosque); }
.envio--verde { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .3); color: #fff; }
.envio--verde svg { color: var(--miel-cl); }

/* ---------- cabecera ---------- */

.cabecera {
  position: fixed; inset: 0 0 auto; z-index: 100; height: var(--barra);
  background: rgba(252, 251, 247, .82);
  backdrop-filter: blur(14px) saturate(1.4); -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--curva), background-color .3s var(--curva);
}
.cabecera.pegada { border-bottom-color: rgba(169, 185, 155, .5); background: rgba(252, 251, 247, .95); }

.cabecera__interior {
  height: 100%; display: flex; align-items: center; gap: 1rem;
  max-width: var(--ancho); margin-inline: auto; padding-inline: var(--gutter);
}

.marca { display: flex; align-items: center; text-decoration: none; margin-right: auto; }
.marca img { height: 40px; width: auto; }
@media (min-width: 700px) { .marca img { height: 46px; } }

.nav { display: none; align-items: center; gap: 1.7rem; }
@media (min-width: 1000px) { .nav { display: flex; } }

.nav__enlace {
  position: relative; text-decoration: none; font-size: .92rem; font-weight: 550;
  color: var(--tinta); padding-block: .35rem; transition: color .22s var(--curva);
}
.nav__enlace::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px;
  background: var(--bosque); transform: scaleX(0); transform-origin: right;
  transition: transform .3s var(--curva);
}
.nav__enlace:hover { color: var(--bosque); }
.nav__enlace:hover::after, .nav__enlace[aria-current="true"]::after { transform: scaleX(1); transform-origin: left; }
.nav__enlace[aria-current="true"] { color: var(--bosque); }

.nav__cta { padding: .68rem 1.3rem; font-size: .88rem; }

.hamburguesa {
  display: grid; place-content: center; gap: 5px; width: 46px; height: 46px;
  margin-right: -8px; border: 0; background: transparent; cursor: pointer; padding: 0;
}
@media (min-width: 1000px) { .hamburguesa { display: none; } }
.hamburguesa__barra {
  display: block; width: 24px; height: 1.8px; background: var(--tinta); border-radius: 2px;
  transition: transform .3s var(--curva), opacity .2s var(--curva);
}
.hamburguesa[aria-expanded="true"] .hamburguesa__barra:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
.hamburguesa[aria-expanded="true"] .hamburguesa__barra:nth-child(2) { opacity: 0; }
.hamburguesa[aria-expanded="true"] .hamburguesa__barra:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }

/* ---------- menú móvil ----------
   El telón va POR ENCIMA de la cabecera (110 > 100) para que el primer
   enlace sea pulsable; por eso lleva su PROPIO botón de cerrar: la
   hamburguesa es hija de .cabecera, que es fixed con z-index y crea
   contexto de apilamiento, así que no puede saltar por encima del telón. */

.menu {
  position: fixed; inset: 0; z-index: 110; display: none;
  flex-direction: column; gap: 1.5rem;
  padding: 6.5rem var(--gutter) 2.5rem;
  background: var(--crema); overflow-y: auto; overscroll-behavior: contain;
}
.menu.abierto { display: flex; animation: menu-entra .32s var(--curva) both; }
@keyframes menu-entra { from { opacity: 0; transform: translateY(-10px); } }

.menu__cerrar {
  position: absolute; top: 1.05rem; right: var(--gutter);
  width: 46px; height: 46px; display: grid; place-content: center;
  border: 1px solid var(--salvia); border-radius: 50%;
  background: var(--hueso); color: var(--tinta); cursor: pointer;
}
.menu__cerrar svg { width: 19px; height: 19px; }

.menu ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .3rem; }
.menu__enlace {
  display: block; padding: .72rem 0; text-decoration: none;
  font-family: var(--display); font-size: 1.55rem; color: var(--tinta);
  border-bottom: 1px solid rgba(169, 185, 155, .45);
}
.menu__enlace:hover { color: var(--bosque); }
.menu__pie { display: grid; gap: .7rem; margin-top: auto; padding-top: 1.5rem; }

/* ---------- hero ---------- */

.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  padding-top: calc(var(--barra) + 2rem); padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
  overflow: hidden; background: var(--crema);
}
.hero__fondo { position: absolute; inset: 0; z-index: 0; }
/* La foto YA viene compuesta sobre crema, con la melena en el borde derecho
   y su propio desvanecido: el degradado de aquí solo remata los bordes. */
.hero__fondo img { width: 100%; height: 100%; object-fit: cover; object-position: 100% 0%; }
.hero__fondo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(245, 242, 233, .55) 0%, rgba(245, 242, 233, 0) 26%);
}
@media (max-width: 900px) {
  .hero__fondo img { object-position: 78% 0%; }
  .hero__fondo::after {
    background: linear-gradient(to top, rgba(245, 242, 233, .97) 0%, rgba(245, 242, 233, .9) 38%, rgba(245, 242, 233, .5) 66%, rgba(245, 242, 233, .12) 100%);
  }
}
.hero__env { position: relative; z-index: 1; width: 100%; }
.hero__caja { max-width: 640px; }
.hero h1 { margin-bottom: 1.1rem; }
.hero__sub { font-size: clamp(1.02rem, 1.9vw, 1.2rem); color: var(--gris); max-width: 33em; }
.hero__botones { display: flex; flex-wrap: wrap; gap: .75rem; margin-block: 1.9rem 1.4rem; }

.hero__producto {
  display: none; position: absolute; z-index: 1; right: var(--gutter); bottom: 0;
  width: min(25vw, 310px); border-radius: var(--radio) var(--radio) 0 0;
  overflow: hidden; box-shadow: var(--sombra-alta);
}
@media (min-width: 1080px) { .hero__producto { display: block; } }

.hero__baja {
  position: absolute; z-index: 1; left: 50%; bottom: 1.1rem; translate: -50% 0;
  display: none; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gris); text-decoration: none; align-items: center; gap: .45rem;
}
@media (min-width: 700px) and (min-height: 700px) { .hero__baja { display: inline-flex; } }
.hero__baja span { display: block; width: 1px; height: 26px; background: var(--salvia); animation: baja 2.1s ease-in-out infinite; }
@keyframes baja { 0%, 100% { transform: scaleY(.35); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } }

/* ---------- tira de confianza ---------- */

.tira { background: var(--bosque); color: var(--hueso); padding-block: 1.15rem; overflow: hidden; }
.tira__pista { display: flex; align-items: center; gap: 2.6rem; flex-wrap: wrap; justify-content: center; }
.tira__item {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  white-space: nowrap;
}
.tira__item svg { width: 1.05rem; height: 1.05rem; color: var(--miel-cl); flex: none; }

/* ---------- beneficios ---------- */

.beneficios { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); gap: 1rem; }

.beneficio {
  background: var(--hueso); border: 1px solid rgba(169, 185, 155, .48);
  border-radius: var(--radio); padding: 1.6rem 1.35rem;
  transition: transform .3s var(--curva), box-shadow .3s var(--curva), border-color .3s var(--curva);
}
.seccion--crema .beneficio { background: #fff; }
.beneficio:hover { transform: translateY(-4px); box-shadow: var(--sombra); border-color: var(--salvia); }
.beneficio__icono {
  width: 46px; height: 46px; display: grid; place-content: center; margin-bottom: 1rem;
  border-radius: 13px; background: var(--salvia-cl); color: var(--bosque);
}
.beneficio__icono svg { width: 23px; height: 23px; }
.beneficio h3 { font-size: 1.12rem; margin-bottom: .35rem; }
.beneficio p { font-size: .93rem; color: var(--gris); line-height: 1.55; }

/* ---------- ingredientes ---------- */

.ingredientes { display: grid; gap: 1.4rem; }
@media (min-width: 860px) { .ingredientes { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; } }

.ingrediente {
  position: relative; border-radius: var(--radio); overflow: hidden;
  background: #fff; box-shadow: var(--sombra);
  transition: transform .35s var(--curva), box-shadow .35s var(--curva);
}
.ingrediente:hover { transform: translateY(-5px); box-shadow: var(--sombra-alta); }
.ingrediente__foto { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.ingrediente__foto img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--curva);
}
.ingrediente:hover .ingrediente__foto img { transform: scale(1.045); }
.ingrediente__nombre {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 3rem 1.4rem 1.15rem; color: #fff;
  background: linear-gradient(to top, rgba(20, 30, 18, .88), rgba(20, 30, 18, .45) 55%, transparent);
  font-family: var(--display); font-size: 1.65rem; line-height: 1.1;
}
.ingrediente__cuerpo { padding: 1.35rem 1.4rem 1.6rem; }
.ingrediente__cuerpo p { font-size: .95rem; color: var(--gris); }
.ingrediente__lista { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: .48rem; }
.ingrediente__lista li { position: relative; padding-left: 1.5rem; font-size: .9rem; color: var(--tinta); }
.ingrediente__lista li::before {
  content: ""; position: absolute; left: 0; top: .48em; width: 9px; height: 9px;
  border-radius: 50% 0 50% 50%; background: var(--oliva); rotate: 45deg;
}

/* =========================================================
   FIRMA — la etiqueta Kenniel.
   Reproduce la estructura real de sus frascos: marca arriba,
   nombre en versalitas dentro de un filete, subtítulo en píldora,
   ingredientes, y el texto pequeño justificado.
   ========================================================= */

.productos { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); }

.producto {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid rgba(169, 185, 155, .5); border-radius: var(--radio);
  overflow: hidden; transition: transform .35s var(--curva), box-shadow .35s var(--curva);
}
.producto:hover { transform: translateY(-5px); box-shadow: var(--sombra-alta); }

.producto__foto {
  position: relative; overflow: hidden; background: var(--crema);
  border-bottom: 1px solid rgba(169, 185, 155, .45);
}
.producto__foto img {
  width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5;
  transition: transform .7s var(--curva);
}
.producto:hover .producto__foto img { transform: scale(1.04); }

.etiqueta {
  position: relative; padding: 1.35rem 1.25rem 1.2rem; text-align: center;
  display: flex; flex-direction: column; justify-content: center; min-height: 178px;
  background:
    radial-gradient(120% 90% at 50% 0%, #fff 0%, var(--crema) 78%),
    var(--crema);
  border-bottom: 1px solid rgba(169, 185, 155, .45);
}
.etiqueta::before, .etiqueta::after {
  content: ""; position: absolute; left: 50%; translate: -50% 0;
  width: min(84%, 230px); height: 1px; background: rgba(169, 185, 155, .55);
}
.etiqueta::before { top: .55rem; }
.etiqueta::after { bottom: .55rem; }


.etiqueta__nombre {
  display: inline-block; padding: .5rem .95rem; margin: 0 0 .7rem;
  border: 1px solid var(--oliva); border-radius: 3px;
  font-family: var(--texto); font-size: .95rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--bosque); line-height: 1.25;
}
.etiqueta__rotulo {
  display: inline-block; padding: .26rem .8rem; border-radius: 999px;
  background: var(--bosque); color: #fff;
  font-size: .64rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
}
.etiqueta__ing { margin: 1rem 0 0; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--oliva); }
.etiqueta__tam { margin-top: .5rem; font-size: .73rem; letter-spacing: .09em; color: var(--gris); }

.producto__cuerpo { display: flex; flex-direction: column; flex: 1; padding: 1.35rem 1.3rem 1.45rem; }
.producto__resumen { font-size: .93rem; color: var(--gris); line-height: 1.6; }
.producto__extra { margin-top: .5rem; font-size: .84rem; color: var(--miel-txt); font-weight: 600; }

.producto__beneficios { list-style: none; margin: 1.1rem 0 0; padding: 0; display: grid; gap: .42rem; }
.producto__beneficios li { position: relative; padding-left: 1.45rem; font-size: .89rem; }
.producto__beneficios li svg { position: absolute; left: 0; top: .28em; width: 15px; height: 15px; color: var(--oliva); }

.producto__pie { margin-top: auto; padding-top: 1.3rem; }
.producto__precio {
  display: flex; align-items: baseline; gap: .3rem; margin-bottom: .9rem;
  font-family: var(--display); font-size: 1.62rem; color: var(--tinta);
}
.producto__precio span { font-family: var(--texto); font-size: .78rem; font-weight: 600; color: var(--gris); letter-spacing: .06em; }

/* combo */
.combo {
  margin-top: 1.6rem; display: grid; gap: 1.6rem; align-items: center;
  background: var(--bosque); color: var(--hueso); border-radius: var(--radio);
  padding: clamp(1.75rem, 4vw, 2.75rem); overflow: hidden;
}
@media (min-width: 820px) { .combo { grid-template-columns: 1.25fr .75fr; } }
.combo h3 { font-size: clamp(1.5rem, 3vw, 2.05rem); margin-bottom: .7rem; }
.combo p { color: rgba(255, 255, 255, .82); font-size: .97rem; }
.combo p.combo__precio {
  font-family: var(--display); font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1.05; margin: 1.1rem 0 1.4rem; color: var(--miel-cl);
}
.combo__foto { border-radius: var(--radio-s); overflow: hidden; box-shadow: var(--sombra-alta); }
.combo__foto img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- la familia (fotos reales) ---------- */

.familia { display: grid; gap: 1rem; }
@media (min-width: 760px) { .familia { grid-template-columns: repeat(3, 1fr); } }
.familia figure { margin: 0; border-radius: var(--radio); overflow: hidden; background: var(--crema); box-shadow: var(--sombra); }
.familia img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 4; }
.familia figcaption {
  padding: .8rem 1rem 1rem; font-size: .82rem; color: var(--gris); background: #fff;
}

/* ---------- rutina ---------- */

.rutina { display: grid; gap: 0; counter-reset: paso; }
@media (min-width: 900px) { .rutina { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }

.paso {
  position: relative; display: grid; grid-template-columns: 62px 1fr; gap: 0 1.1rem;
  padding: 1.35rem 0; border-bottom: 1px solid rgba(169, 185, 155, .45);
}
@media (min-width: 900px) {
  .paso {
    grid-template-columns: 1fr; gap: 0; padding: 1.75rem 1.5rem;
    background: #fff; border: 1px solid rgba(169, 185, 155, .5);
    border-radius: var(--radio);
    transition: transform .3s var(--curva), box-shadow .3s var(--curva);
  }
  .paso:hover { transform: translateY(-4px); box-shadow: var(--sombra); }
}

/* .paso tiene TRES ítems de rejilla (::before, h3, p) y en móvil solo
   dos pistas: sin asignación explícita el <p> cae en la columna de 62 px. */
.paso::before {
  counter-increment: paso; content: counter(paso, decimal-leading-zero);
  grid-column: 1; grid-row: 1 / span 2; align-self: start;
  font-family: var(--display); font-size: 2.1rem; line-height: 1; color: var(--salvia);
}
.paso > * { grid-column: 2; }
@media (min-width: 900px) {
  .paso::before { grid-column: 1; grid-row: auto; display: block; margin-bottom: .7rem; }
  .paso > * { grid-column: 1; }
}
.paso h3 { font-size: 1.2rem; margin-bottom: .3rem; }
.paso p { font-size: .92rem; color: var(--gris); line-height: 1.55; }
.paso__prod {
  display: inline-block; margin-top: .55rem; font-size: .78rem; font-weight: 650;
  letter-spacing: .08em; text-transform: uppercase; color: var(--miel-txt);
  text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 1px;
}

/* ---------- testimonios ---------- */

.carrusel { position: relative; }
.carrusel__pista {
  display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-block: .4rem; padding-inline-end: var(--gutter);
  scrollbar-width: none; -ms-overflow-style: none;
}
.carrusel__pista::-webkit-scrollbar { display: none; }

.testimonio {
  flex: 0 0 min(88%, 380px); scroll-snap-align: start;
  background: #fff; border: 1px solid rgba(169, 185, 155, .5);
  border-radius: var(--radio); padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column;
}
.testimonio__estrellas { display: flex; gap: .18rem; margin-bottom: .95rem; color: var(--miel); }
.testimonio__estrellas svg { width: 17px; height: 17px; }
.testimonio blockquote {
  margin: 0; font-family: var(--display); font-size: 1.24rem; line-height: 1.4; color: var(--tinta);
}
.testimonio figcaption { margin-top: 1.1rem; font-size: .82rem; color: var(--gris); }

.carrusel__mandos { display: flex; gap: .6rem; margin-top: 1.4rem; }
.carrusel__btn {
  width: 46px; height: 46px; display: grid; place-content: center; cursor: pointer;
  border: 1px solid var(--salvia); border-radius: 50%; background: #fff; color: var(--bosque);
  transition: background-color .22s var(--curva), color .22s var(--curva), border-color .22s var(--curva);
}
.carrusel__btn:hover { background: var(--bosque); border-color: var(--bosque); color: #fff; }
.carrusel__btn svg { width: 19px; height: 19px; }

.aviso {
  margin-top: 1.5rem; padding: .9rem 1.1rem; border-left: 3px solid var(--salvia);
  background: var(--crema); border-radius: 0 var(--radio-s) var(--radio-s) 0;
  font-size: .85rem; color: var(--gris);
}
.seccion--crema .aviso { background: #fff; }

/* ---------- cifras ---------- */

.cifras { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr)); }
.cifra {
  text-align: center; padding: 1.9rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, .22); border-radius: var(--radio);
  background: rgba(255, 255, 255, .05);
}
.cifra__num { font-family: var(--display); font-size: clamp(2.1rem, 5vw, 2.9rem); line-height: 1; color: var(--miel-cl); }
.cifra__txt { margin-top: .6rem; font-size: .9rem; color: rgba(255, 255, 255, .84); line-height: 1.45; }

/* ---------- instagram ---------- */

.ig-rejilla { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.ig-rejilla > div { border-radius: var(--radio); overflow: hidden; background: var(--crema); min-height: 740px; }
.ig-rejilla iframe { width: 100%; height: 740px; border: 0; display: block; background: var(--crema); }

/* ---------- CTA final ---------- */

.cta-final {
  position: relative; overflow: hidden; color: var(--hueso);
  padding-block: clamp(4.5rem, 11vw, 8rem); text-align: center; background: var(--bosque-osc);
}
.cta-final__fondo { position: absolute; inset: 0; z-index: 0; }
.cta-final__fondo img { width: 100%; height: 100%; object-fit: cover; }
.cta-final__fondo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(36, 69, 31, .93), rgba(36, 69, 31, .78));
}
.cta-final .env { position: relative; z-index: 1; }
.cta-final h2 { margin-bottom: 1rem; }
.cta-final__botones { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 2rem; }

/* ---------- pie ---------- */

.pie { background: var(--tinta); color: rgba(255, 255, 255, .72); padding-block: 3.5rem 2rem; font-size: .92rem; }
.pie__rejilla { display: grid; gap: 2.4rem; }
@media (min-width: 780px) { .pie__rejilla { grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; } }
.pie__marca img { height: 54px; width: auto; filter: brightness(0) invert(1); opacity: .95; }
.pie__marca p { margin-top: 1rem; max-width: 30em; }
.pie h3 { font-family: var(--texto); font-size: .76rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #fff; margin-bottom: 1rem; }
.pie ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.pie a { color: rgba(255, 255, 255, .78); text-decoration: none; transition: color .2s var(--curva); }
.pie a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.pie__envio {
  margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid rgba(255, 255, 255, .14);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
}
.pie__envio strong { color: #fff; font-weight: 650; }
.pie__legal { font-size: .8rem; color: rgba(255, 255, 255, .5); }

/* ---------- flotantes ---------- */

.flotante {
  position: fixed; right: max(1rem, calc((100vw - var(--ancho)) / 2 - 60px)); bottom: 1.1rem;
  z-index: 90; display: grid; gap: .6rem; justify-items: center;
}
.flotante__wa {
  width: 58px; height: 58px; border-radius: 50%; background: #1f9d55; color: #fff;
  display: grid; place-content: center; box-shadow: 0 8px 26px -6px rgba(31, 157, 85, .55);
  transition: transform .25s var(--curva), background-color .25s var(--curva);
}
.flotante__wa:hover { transform: scale(1.07); background: #17773f; }
.flotante__wa svg { width: 30px; height: 30px; }

.arriba {
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  border: 1px solid var(--salvia); background: rgba(252, 251, 247, .94); color: var(--bosque);
  display: grid; place-content: center; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: opacity .3s var(--curva), transform .3s var(--curva), visibility .3s;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.arriba.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.arriba svg { width: 19px; height: 19px; }

/* ---------- revelados ---------- */

.js .revela { opacity: 0; transform: translateY(22px); }
.js .revela.dentro {
  opacity: 1; transform: none;
  transition: opacity .7s var(--curva), transform .7s var(--curva);
}
.js .revela.dentro[style*="--tarda"] { transition-delay: var(--tarda); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .js .revela { opacity: 1; transform: none; }
}


/* ---------- resultados ---------- */

.resultados { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 900px) { .resultados { grid-template-columns: 1.05fr .95fr; gap: 3.5rem; } }
.resultados__foto { margin: 0; border-radius: var(--radio); overflow: hidden; box-shadow: var(--sombra-alta); }
.resultados__foto img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 11 / 9; }
.resultados__botones { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
