/* ============================================================================
   MABI TAÍNO — Website Styles (V1)
   HTML/CSS/JS estático · Estructura clonada de Electrolit · Identidad Mabi Taíno
   Migrable a Next.js + Tailwind: cada bloque = futuro componente.
   ========================================================================== */

/* ─── DESIGN TOKENS ───────────────────────────────────────────────────────── */
:root {
  /* Paleta principal */
  --jade:        #1A3A2A;
  --jade-mid:    #2C5840;
  --jade-light:  #3D7A59;
  --cane:        #C4963A;
  --cane-light:  #E2B96A;
  --cane-pale:   #F5E4BB;
  --earth:       #7A4E2D;
  --earth-light: #B07850;
  --cream:       #FAF6EE;
  --cream-dark:  #EDE5D0;
  --bone:        #D9CEBC;
  --bark:        #4A3520;
  --ink:         #1C1208;
  --mist:        rgba(26,58,42,.06);
  --whatsapp:    #25D366;

  /* Tipografía */
  --ff-display:  'Cinzel Decorative', serif;
  --ff-heading:  'Cinzel', serif;
  --ff-accent:   'IM Fell English', serif;
  --ff-body:     'DM Sans', sans-serif;

  /* Espaciado / formas */
  --gap:    2rem;
  --radius: 3px;
  --max:    1200px;
  --nav-h:  72px;
  --bar-h:  36px;

  /* Sombras */
  --shadow-card: 0 8px 32px rgba(196,150,58,.18);
  --shadow-soft: 0 4px 20px rgba(28,18,8,.10);
  --shadow-deep: 0 18px 50px rgba(28,18,8,.22);

  /* Patrón de puntos dorados (del brand manual) */
  --dot-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='.8' fill='rgba(196,150,58,.18)'/%3E%3C/svg%3E");
}

/* ─── RESET ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  background: var(--cream);
  color: var(--bark);
  font-family: var(--ff-body);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
::selection { background: var(--cane); color: var(--jade); }

/* ─── TYPOGRAPHY HELPERS ──────────────────────────────────────────────────── */
.display { font-family: var(--ff-display); }
.heading { font-family: var(--ff-heading); }
.accent  { font-family: var(--ff-accent); font-style: italic; }

.eyebrow {
  font-family: var(--ff-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--cane);
}
.section-title {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: .02em;
  color: var(--jade);
}
.section-title em { color: var(--cane); font-style: normal; }
.lead { font-size: 1.05rem; color: var(--bark); opacity: .85; max-width: 60ch; }

/* ─── LAYOUT ──────────────────────────────────────────────────────────────── */
.wrapper { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; position: relative; }
.section--jade  { background: var(--jade);      color: var(--cream); }
.section--ink   { background: var(--ink);       color: var(--cream); }
.section--cream { background: var(--cream); }
.section--alt   { background: var(--cream-dark); }
.section--jade .section-title,
.section--ink  .section-title { color: var(--cream); }
.section--jade .section-title em,
.section--ink  .section-title em { color: var(--cane-light); }
.section--jade .lead,
.section--ink  .lead { color: var(--cream-dark); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(2rem,4vw,3.5rem); }
.section-head .eyebrow { display: block; margin-bottom: 1rem; }
.section-head .lead { margin: 1rem auto 0; }

/* Patrón de puntos sobre fondos jade */
.dotted { position: relative; }
.dotted::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%, rgba(196,150,58,.12) 0%, transparent 70%),
    var(--dot-pattern);
}
.dotted > * { position: relative; z-index: 1; }

/* ─── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--ff-body); font-weight: 600; font-size: .9rem;
  letter-spacing: .04em; text-transform: uppercase;
  padding: .85rem 1.7rem; border-radius: var(--radius);
  transition: all .25s ease; cursor: pointer; border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary { background: var(--cane); color: var(--jade); }
.btn--primary:hover { background: var(--jade); color: var(--cane-light); border-color: var(--cane); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--cane-light); border-color: var(--cane); }
.btn--ghost:hover { background: var(--cane); color: var(--jade); transform: translateY(-2px); }
.btn--dark { background: var(--jade); color: var(--cane-light); }
.btn--dark:hover { background: var(--jade-mid); color: var(--cane-pale); transform: translateY(-2px); }
.btn--wa { background: var(--whatsapp); color: #fff; }
.btn--wa:hover { filter: brightness(1.08); transform: translateY(-2px); }
.btn--lg { padding: 1rem 2.2rem; font-size: .95rem; }

.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─── SVG CURVE DIVIDERS ──────────────────────────────────────────────────── */
.curve { display: block; width: 100%; height: clamp(40px, 6vw, 90px); }
.curve svg { width: 100%; height: 100%; display: block; }

/* ─── MARQUEE (announcement bar + stats ticker + press) ───────────────────── */
.marquee { overflow: hidden; white-space: nowrap; width: 100%; }
.marquee__track {
  display: inline-flex; align-items: center;
  will-change: transform;
  animation: marquee var(--mq-speed, 30s) linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track > * { padding: 0 1.4rem; flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── ANNOUNCEMENT BAR ────────────────────────────────────────────────────── */
.announce {
  background: var(--cane); color: var(--jade);
  height: var(--bar-h); display: flex; align-items: center;
  font-weight: 600; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  position: relative; z-index: 60;
}
.announce .marquee__track { --mq-speed: 30s; }
.announce .sep { color: var(--jade); opacity: .55; }

/* ─── NAVBAR ──────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  background: transparent; border-bottom: 2px solid transparent;
}
.nav--solid {
  background: var(--jade);
  border-bottom-color: var(--cane);
  box-shadow: 0 6px 24px rgba(0,0,0,.18);
}
/* Cuando la página no tiene hero oscuro, el nav arranca sólido */
.nav--always-solid { background: var(--jade); border-bottom-color: var(--cane); }

.nav__inner {
  width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem;
}
.nav__group { display: flex; align-items: center; gap: 1.6rem; }
.nav__group--right { justify-content: flex-end; }
.nav__link {
  font-family: var(--ff-body); font-weight: 500; font-size: .9rem;
  letter-spacing: .03em; color: var(--cream); position: relative;
  display: inline-flex; align-items: center; gap: .35rem; padding: .4rem 0;
  transition: color .2s ease;
}
.nav__link:hover { color: var(--cane-light); }
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--cane); transition: width .25s ease;
}
.nav__link:hover::after { width: 100%; }
.nav__link .caret { font-size: .6rem; transition: transform .2s ease; }

/* Logo central */
.nav__logo { display: flex; align-items: center; justify-content: center; }
.nav__logo img {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover; object-position: center;
  box-shadow: 0 0 0 2px rgba(196,150,58,.5);
  transition: transform .25s ease;
}
.nav__logo:hover img { transform: scale(1.06) rotate(-3deg); }
.nav__logo-word { font-family: var(--ff-display); font-size: 1rem; color: var(--cream); display: none; }

/* Icon buttons (search / cart) */
.nav__icon { color: var(--cream); display: inline-flex; align-items: center; gap: .35rem; transition: color .2s; }
.nav__icon:hover { color: var(--cane-light); }
.nav__icon .badge {
  font-size: .7rem; background: var(--cane); color: var(--jade);
  border-radius: 999px; min-width: 18px; height: 18px; padding: 0 5px;
  display: inline-flex; align-items: center; justify-content: center; font-weight: 700;
}

/* Mega menu / dropdown */
.has-menu { position: relative; }
.menu {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 240px;
  background: var(--jade-mid); border: 1px solid var(--jade-light); border-radius: 6px;
  box-shadow: var(--shadow-deep); padding: .6rem;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 70;
}
.nav__group--right .menu { left: auto; right: 0; }
.has-menu:hover .menu, .has-menu:focus-within .menu { opacity: 1; visibility: visible; transform: translateY(0); }
.menu__group { padding: .5rem .65rem; }
.menu__label { font-family: var(--ff-heading); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--cane); margin-bottom: .35rem; }
.menu__item { display: block; padding: .45rem .65rem; border-radius: 4px; color: var(--cream); font-size: .88rem; transition: background .18s, color .18s; }
.menu__item:hover { background: var(--jade); color: var(--cane-light); }

/* Hamburger (mobile) */
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: .5rem; }
.nav__toggle span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: .3s; }

/* Mobile drawer menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 80; background: var(--jade);
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; padding: 5rem 2rem 2rem; overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { color: var(--cream); font-family: var(--ff-heading); font-size: 1.3rem; padding: .9rem 0; border-bottom: 1px solid rgba(196,150,58,.2); }
.mobile-menu a:hover { color: var(--cane-light); }
.mobile-menu__close { position: absolute; top: 1.4rem; right: 1.6rem; font-size: 2rem; color: var(--cream); line-height: 1; }
.mobile-menu__sub { font-size: 1rem !important; padding-left: 1.2rem !important; opacity: .85; }

/* ─── HERO ────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--jade); color: var(--cream);
  min-height: calc(92vh - var(--nav-h)); display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 3rem 0 5rem;
  margin-top: calc(-1 * var(--nav-h)); padding-top: calc(var(--nav-h) + 3rem);
}
.hero__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.hero__visual { display: flex; align-items: center; justify-content: center; position: relative; }
.hero__rating {
  position: absolute; top: 8%; right: 4%; background: rgba(26,58,42,.7);
  border: 1px solid var(--cane); border-radius: 999px; padding: .5rem 1rem;
  font-size: .8rem; color: var(--cane-light); display: flex; align-items: center; gap: .5rem;
  backdrop-filter: blur(4px);
}
.hero__copy { max-width: 540px; }
.hero h1 {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 1.05; letter-spacing: .02em;
  color: var(--cream); margin: 1rem 0 .8rem;
}
.hero h1 em { color: var(--cane-light); font-style: normal; display: block; }
.hero__tagline { font-family: var(--ff-accent); font-style: italic; font-size: 1.3rem; color: var(--cane-pale); margin-bottom: 1.2rem; }
.hero__desc { color: var(--cream-dark); opacity: .9; margin-bottom: 2rem; max-width: 46ch; }
.hero__benefits { display: flex; gap: 1.8rem; margin-top: 2.5rem; flex-wrap: wrap; }
.hero__benefit { display: flex; flex-direction: column; gap: .2rem; max-width: 120px; }
.hero__benefit .ico { font-size: 1.4rem; }
.hero__benefit strong { font-family: var(--ff-heading); font-size: .8rem; letter-spacing: .08em; color: var(--cane-light); text-transform: uppercase; }
.hero__benefit span { font-size: .8rem; color: var(--cream-dark); opacity: .8; }

/* Botella ilustrada (SVG) */
.bottle { width: clamp(180px, 30vw, 300px); filter: drop-shadow(0 20px 40px rgba(0,0,0,.4)); animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-14px); } }

/* ─── STATS TICKER ────────────────────────────────────────────────────────── */
.ticker { background: var(--cane); color: var(--jade); padding: .9rem 0; }
.ticker .marquee__track { --mq-speed: 40s; }
.ticker span { font-family: var(--ff-heading); font-weight: 600; font-size: .85rem; letter-spacing: .2em; text-transform: uppercase; }
.ticker .sep { color: var(--jade); opacity: .5; }
.ticker--jade { background: var(--jade); color: var(--cane); }
.ticker--jade .sep { color: var(--cane-light); opacity: .6; }

/* ─── PROMO SPLIT (VitaFos) ───────────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { border-radius: 10px; overflow: hidden; }
.split__copy .eyebrow { margin-bottom: 1rem; display: block; }
.split__copy h2 { margin-bottom: 1rem; }
.split__copy p { margin-bottom: 1.6rem; }

/* ─── FEATURE STEPS (Science teaser / Mabi 101) ───────────────────────────── */
.steps { display: flex; flex-direction: column; gap: clamp(2.5rem, 6vw, 5rem); }
.step { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.step:nth-child(even) .step__media { order: 2; }
.step__num { font-family: var(--ff-display); font-size: 2.6rem; color: var(--cane); line-height: 1; opacity: .85; }
.step h3 { font-family: var(--ff-heading); font-weight: 700; font-size: clamp(1.3rem,2.5vw,1.9rem); color: var(--jade); margin: .6rem 0 .9rem; }
.section--jade .step h3 { color: var(--cream); }
.step__media { border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-soft); }
.step__chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.2rem; }

/* ─── ILLUSTRATION TILE (placeholder visual) ──────────────────────────────── */
.illus {
  position: relative; aspect-ratio: 4/3; border-radius: 10px; overflow: hidden;
  background: linear-gradient(135deg, var(--jade) 0%, var(--jade-mid) 100%);
  display: flex; align-items: center; justify-content: center;
}
.illus--cream { background: linear-gradient(135deg, var(--cane-pale) 0%, var(--cream-dark) 100%); }
.illus--earth { background: linear-gradient(135deg, var(--earth) 0%, var(--earth-light) 100%); }
.illus__pattern { position: absolute; inset: 0; background: var(--dot-pattern); opacity: .5; }
.illus__svg { position: relative; width: 62%; max-width: 280px; }
.illus__label {
  position: absolute; bottom: .9rem; left: .9rem; font-family: var(--ff-heading);
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--cane-light);
  background: rgba(26,58,42,.55); padding: .3rem .6rem; border-radius: 3px; backdrop-filter: blur(3px);
}
.illus--square { aspect-ratio: 1/1; }
.illus--tall { aspect-ratio: 3/4; }

/* Imagen real cargada como fondo (cover) — oculta la ilustración SVG de respaldo */
.illus.has-img { background-size: cover !important; background-position: center !important; background-repeat: no-repeat; }
.illus.has-img .illus__svg, .illus.has-img .illus__pattern { display: none; }
/* Recorte (botella/producto) centrado sobre el backdrop */
.illus__photo-cut { position: relative; z-index: 2; width: 72%; max-width: 280px; height: auto; margin: auto; filter: drop-shadow(0 14px 28px rgba(0,0,0,.3)); }
.bottle .illus__photo-cut, .bottle.has-img .illus__photo-cut { width: 100%; max-width: none; }

/* ─── CHIPS / PILLS / BADGES ──────────────────────────────────────────────── */
.chip {
  display: inline-flex; align-items: center; gap: .4rem; font-size: .78rem; font-weight: 600;
  letter-spacing: .04em; padding: .35rem .8rem; border-radius: 999px;
  background: rgba(196,150,58,.14); color: var(--earth); border: 1px solid rgba(196,150,58,.4);
}
.section--jade .chip { color: var(--cane-light); background: rgba(196,150,58,.12); }
.badge-best {
  position: absolute; top: .9rem; left: .9rem; z-index: 2;
  background: var(--cane); color: var(--jade); font-family: var(--ff-heading);
  font-weight: 700; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 3px;
}

/* ─── COMPARISON TABLE ────────────────────────────────────────────────────── */
.compare { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.compare__col {
  border-radius: 10px; padding: 1.8rem 1.5rem; border: 1px solid var(--bone); background: var(--cream);
  color: var(--bark);
}
.compare__col--hero { background: var(--jade); color: var(--cream); border-color: var(--cane); box-shadow: var(--shadow-card); transform: scale(1.03); }
.compare__col h3 { font-family: var(--ff-heading); font-size: 1.1rem; margin-bottom: 1.2rem; color: var(--jade); }
.compare__col--hero h3 { color: var(--cane-light); }
.compare__list li { display: flex; gap: .6rem; padding: .5rem 0; font-size: .9rem; border-top: 1px solid rgba(122,78,45,.12); }
.compare__col--hero .compare__list li { border-top-color: rgba(196,150,58,.2); }
.compare__list li:first-child { border-top: none; }
.compare__list .yes { color: var(--jade-light); font-weight: 700; }
.compare__col--hero .compare__list .yes { color: var(--cane-light); }
.compare__list .no { color: var(--earth-light); opacity: .8; }

/* ─── PRODUCT CARDS ───────────────────────────────────────────────────────── */
.tabs { display: flex; gap: .6rem; justify-content: center; margin-bottom: 2.5rem; flex-wrap: wrap; }
.tab {
  font-family: var(--ff-heading); font-size: .85rem; letter-spacing: .08em; text-transform: uppercase;
  padding: .6rem 1.4rem; border-radius: 999px; border: 1px solid var(--bone); color: var(--bark);
  transition: all .2s ease; background: transparent;
}
.tab:hover { border-color: var(--cane); color: var(--earth); }
.tab.active { background: var(--jade); color: var(--cane-light); border-color: var(--jade); }
.section--jade .tab { color: var(--cream-dark); border-color: var(--jade-light); }
.section--jade .tab.active { background: var(--cane); color: var(--jade); border-color: var(--cane); }

.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.6rem; }
.product-card {
  position: relative; background: var(--cream); border: 1px solid var(--bone); border-radius: 12px;
  overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; display: flex; flex-direction: column;
}
.product-card:hover { transform: scale(1.03); box-shadow: var(--shadow-card); }
.product-card__media { aspect-ratio: 1/1; background: linear-gradient(135deg, var(--jade), var(--jade-mid)); display: flex; align-items: center; justify-content: center; position: relative; }
.product-card__media .illus__pattern { opacity: .4; }
.product-card__body { padding: 1.4rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.product-card__body h3 { font-family: var(--ff-heading); font-size: 1.25rem; color: var(--jade); }
.product-card__cat { font-family: var(--ff-accent); font-style: italic; color: var(--earth); font-size: .95rem; }
.product-card__body .btn { margin-top: auto; align-self: flex-start; }

/* ─── REVIEWS ─────────────────────────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; }
.review-card { background: var(--cream); border: 1px solid var(--bone); border-radius: 12px; padding: 1.8rem; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; gap: 1rem; }
.review-card__stars { color: var(--cane); letter-spacing: .15em; }
.review-card__text { font-family: var(--ff-accent); font-style: italic; font-size: 1.05rem; color: var(--bark); line-height: 1.6; }
.review-card__author { display: flex; align-items: center; gap: .6rem; margin-top: auto; }
.review-card__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--jade); color: var(--cane-light); display: flex; align-items: center; justify-content: center; font-family: var(--ff-heading); font-weight: 700; }
.review-card__meta strong { display: block; font-size: .9rem; color: var(--jade); }
.review-card__meta span { font-size: .78rem; color: var(--earth); }
.verified { font-size: .7rem; color: var(--jade-light); display: inline-flex; align-items: center; gap: .3rem; }

/* ─── PRESS MARQUEE ───────────────────────────────────────────────────────── */
.press { padding: 2.5rem 0; border-top: 1px solid var(--bone); border-bottom: 1px solid var(--bone); }
.press .marquee__track { --mq-speed: 35s; }
.press__logo { font-family: var(--ff-heading); font-weight: 600; font-size: 1.05rem; letter-spacing: .08em; color: var(--earth); opacity: .65; text-transform: uppercase; }

/* ─── OCCASION TABS (Hydration For) ───────────────────────────────────────── */
.occasion { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.occasion__media { position: relative; border-radius: 12px; overflow: hidden; min-height: 360px; }
.occasion__panel { display: none; }
.occasion__panel.active { display: block; animation: crossfade .4s ease; }
@keyframes crossfade { from { opacity: 0; } to { opacity: 1; } }
.occasion__copy h3 { font-family: var(--ff-heading); font-size: clamp(1.5rem,3vw,2.2rem); color: var(--jade); margin-bottom: 1rem; }
.section--jade .occasion__copy h3 { color: var(--cream); }

/* ─── STORY TEASER ────────────────────────────────────────────────────────── */
.story { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.story__media { border-radius: 12px; overflow: hidden; min-height: 380px; position: relative; }

/* ─── INSTAGRAM GRID ──────────────────────────────────────────────────────── */
.ig-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.ig-tile { position: relative; aspect-ratio: 1/1; border-radius: 8px; overflow: hidden; cursor: pointer; }
.ig-tile .illus { border-radius: 8px; height: 100%; }
.ig-tile__overlay {
  position: absolute; inset: 0; background: rgba(26,58,42,.55); opacity: 0;
  display: flex; align-items: center; justify-content: center; color: var(--cane-light);
  transition: opacity .25s ease; font-size: 1.6rem;
}
.ig-tile:hover .ig-tile__overlay { opacity: 1; }

/* ─── TIMELINE (Historia) ─────────────────────────────────────────────────── */
.timeline { max-width: 760px; margin: 0 auto; position: relative; padding-left: 2.5rem; }
.timeline::before { content: ''; position: absolute; left: 8px; top: .5rem; bottom: .5rem; width: 2px; background: linear-gradient(var(--cane), var(--jade-light)); }
.timeline__item { position: relative; padding-bottom: 2.5rem; }
.timeline__item::before { content: ''; position: absolute; left: -2.5rem; top: .35rem; width: 18px; height: 18px; border-radius: 50%; background: var(--cane); border: 3px solid var(--cream); margin-left: 0; }
.timeline__when { font-family: var(--ff-heading); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cane); }
.timeline__what { font-size: 1.05rem; color: var(--bark); margin-top: .3rem; }
.section--jade .timeline__item::before { border-color: var(--jade); }
.section--jade .timeline__what { color: var(--cream-dark); }

/* ─── ACCORDION (FAQ) ─────────────────────────────────────────────────────── */
.accordion { max-width: 800px; margin: 0 auto; }
.acc-item { border-bottom: 1px solid var(--bone); }
.acc-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.3rem 0; font-family: var(--ff-heading); font-size: 1.05rem; color: var(--jade); }
.acc-q .ico { transition: transform .25s ease; color: var(--cane); font-size: 1.4rem; line-height: 1; }
.acc-item.open .acc-q .ico { transform: rotate(45deg); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.acc-a p { padding: 0 0 1.3rem; color: var(--bark); opacity: .9; }

/* ─── PAGE HERO (inner pages) ─────────────────────────────────────────────── */
.page-hero { background: var(--jade); color: var(--cream); text-align: center; padding: clamp(4rem,9vw,7rem) 0 clamp(3rem,6vw,5rem); position: relative; overflow: hidden; }
.page-hero h1 { font-family: var(--ff-display); font-size: clamp(2.2rem,6vw,3.8rem); color: var(--cream); margin-bottom: 1rem; }
.page-hero p { font-family: var(--ff-accent); font-style: italic; font-size: 1.25rem; color: var(--cane-pale); max-width: 600px; margin: 0 auto; }

/* Collage (historia hero) */
.collage { display: grid; grid-template-columns: repeat(4,1fr); gap: .8rem; margin-top: 3rem; }
.collage .illus { aspect-ratio: 3/4; }

/* ─── PRODUCT DETAIL ──────────────────────────────────────────────────────── */
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.pdp__media { position: sticky; top: calc(var(--nav-h) + 1.5rem); }
.pdp__media .illus { aspect-ratio: 1/1; }
.pdp h1 { font-family: var(--ff-display); font-size: clamp(2rem,4vw,3rem); color: var(--jade); margin-bottom: .4rem; }
.pdp__cat { font-family: var(--ff-accent); font-style: italic; color: var(--earth); font-size: 1.15rem; margin-bottom: 1.4rem; }
.pdp__desc { margin-bottom: 1.6rem; }
.pdp__section-label { font-family: var(--ff-heading); font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; color: var(--cane); margin: 1.6rem 0 .7rem; }
.pdp__chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.pdp__benefits { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.pdp__benefit { display: flex; gap: .6rem; align-items: center; font-size: .92rem; }
.pdp__benefit .ico { color: var(--jade-light); }

/* ─── WHERE TO BUY ────────────────────────────────────────────────────────── */
.locations { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 1.2rem; }
.location-card { background: var(--cream); border: 1px solid var(--bone); border-radius: 10px; padding: 1.5rem; }
.location-card h3 { font-family: var(--ff-heading); color: var(--jade); font-size: 1.05rem; margin-bottom: .4rem; }
.location-card p { font-size: .9rem; color: var(--bark); opacity: .85; }

/* ─── CONTACT ─────────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--earth); margin-bottom: .4rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: .8rem 1rem; border: 1px solid var(--bone); border-radius: var(--radius);
  font-family: var(--ff-body); font-size: .95rem; background: var(--cream); color: var(--bark); transition: border-color .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--cane); }
.field textarea { min-height: 130px; resize: vertical; }
.contact-info li { display: flex; gap: .8rem; padding: .8rem 0; border-bottom: 1px solid var(--bone); }
.contact-info .ico { color: var(--cane); font-size: 1.2rem; }
.contact-info strong { display: block; color: var(--jade); font-family: var(--ff-heading); font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; }

/* ─── EMAIL SIGNUP ────────────────────────────────────────────────────────── */
.signup { display: flex; gap: .6rem; max-width: 420px; flex-wrap: wrap; }
.signup input {
  flex: 1; min-width: 180px; background: transparent; border: none; border-bottom: 2px solid var(--cane);
  color: var(--cream); padding: .7rem .2rem; font-family: var(--ff-body); font-size: .95rem;
}
.signup input::placeholder { color: var(--cream-dark); opacity: .6; }
.signup input:focus { outline: none; border-bottom-color: var(--cane-light); }

/* ─── FOOTER ──────────────────────────────────────────────────────────────── */
.footer { background: var(--ink); color: var(--cream-dark); padding-top: 0; }
.footer__top { padding: clamp(3rem,6vw,4.5rem) 0 2.5rem; }
.footer__cols { display: grid; grid-template-columns: repeat(4, 1fr) 1.4fr; gap: 2rem; }
.footer__col h4 { font-family: var(--ff-heading); font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--cane); margin-bottom: 1.1rem; }
.footer__col a { display: block; padding: .35rem 0; font-size: .9rem; color: var(--cream-dark); opacity: .85; transition: color .2s, opacity .2s; }
.footer__col a:hover { color: var(--cane-light); opacity: 1; }
.footer__signup p { font-size: .9rem; margin-bottom: 1rem; }
.footer__social { display: flex; gap: 1rem; margin-top: 1.3rem; }
.footer__social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--jade-light); display: flex; align-items: center; justify-content: center; color: var(--cane-light); transition: all .2s; }
.footer__social a:hover { background: var(--cane); color: var(--jade); border-color: var(--cane); transform: translateY(-2px); }
.footer__brand { text-align: center; padding: 2.5rem 0; border-top: 1px solid rgba(196,150,58,.15); }
.footer__brand img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 1rem; box-shadow: 0 0 0 3px rgba(196,150,58,.4); }
.footer__bottom { padding: 1.5rem 0; border-top: 1px solid rgba(196,150,58,.15); font-size: .8rem; text-align: center; opacity: .7; }
.footer__bottom a { color: var(--cane-light); }
.footer__bottom .sep { opacity: .4; }

/* ─── WHATSAPP FLOAT ──────────────────────────────────────────────────────── */
.wa-float {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 90;
  background: var(--whatsapp); color: #fff; display: inline-flex; align-items: center; gap: .55rem;
  padding: .8rem 1.2rem; border-radius: 999px; font-weight: 600; font-size: .9rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.25); transition: transform .3s ease, opacity .3s ease;
}
.wa-float:hover { transform: scale(1.05); }
.wa-float.hidden { transform: translateY(120px); opacity: 0; pointer-events: none; }
.wa-float svg { width: 22px; height: 22px; }

/* ─── SCROLL REVEAL ───────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; } .reveal.d2 { transition-delay: .2s; } .reveal.d3 { transition-delay: .3s; }

/* ─── UTILITIES ───────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; }
.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: 1rem; }
.cta-band .btn-row { justify-content: center; }
.divider-note { text-align: center; max-width: 600px; margin: 2.5rem auto 0; font-family: var(--ff-accent); font-style: italic; font-size: 1.15rem; color: var(--earth); }
.section--jade .divider-note { color: var(--cane-pale); }

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .footer__signup { grid-column: 1 / -1; }
  .ig-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 880px) {
  .nav__group--left .nav__link, .nav__group--right .nav__link, .nav__group .has-menu, .nav__icon--search { display: none; }
  .nav__toggle { display: flex; }
  .nav__inner { grid-template-columns: auto 1fr auto; }
  .nav__group--left { justify-content: flex-start; }
  .hero__grid, .split, .step, .occasion, .story, .pdp, .contact-grid { grid-template-columns: 1fr; }
  .split--reverse .split__media, .step:nth-child(even) .step__media { order: 0; }
  .hero__visual { order: -1; }
  .compare { grid-template-columns: 1fr; }
  .compare__col--hero { transform: none; }
  .collage { grid-template-columns: repeat(2,1fr); }
  .pdp__media { position: static; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 520px) {
  .wrapper { padding: 0 1.2rem; }
  .marquee__track { --mq-speed: 22s !important; }
  .hero__benefits { gap: 1.2rem; }
  .pdp__benefits { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .btn { width: 100%; justify-content: center; }
  .btn-row { width: 100%; }
  .wa-float span { display: none; }
  .wa-float { padding: .9rem; }
}

/* ════════════════════════════════════════════════════════════════════════════
   COMPONENTES PREMIUM (adaptados de la carpeta /Componentes a la marca)
   ════════════════════════════════════════════════════════════════════════════ */

/* ─── HERO: capa de imagen/video de fondo + título animado ─────────────────── */
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--jade); }
.hero__video { width: 100%; height: 100%; object-fit: cover; opacity: .4; }
.hero__overlay { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(26,58,42,.55) 0%, rgba(26,58,42,.78) 60%, rgba(26,58,42,.92) 100%); }
.hero.dotted::before { z-index: 2; }
.hero .wrapper { position: relative; z-index: 3; }
[data-animate-words] .w { display: inline-block; opacity: 0; transform: translateY(16px); animation: fadeUp .7s cubic-bezier(.2,.7,.2,1) forwards; }
.hero h1 em.w { display: block; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* ─── BOTÓN GLOW (ButtonColorful) ──────────────────────────────────────────── */
.btn--glow { position: relative; overflow: hidden; isolation: isolate; }
.btn--glow::before { content: ''; position: absolute; inset: -2px; z-index: -1;
  background: linear-gradient(110deg, var(--cane), var(--cane-light), var(--earth-light), var(--cane));
  background-size: 200% 100%; filter: blur(10px); opacity: .55; transition: opacity .4s ease;
  animation: glowpan 6s linear infinite; }
.btn--glow:hover::before { opacity: .95; }
@keyframes glowpan { to { background-position: 200% 0; } }

/* ─── TEXT REVEAL POR SCROLL (post-hero) ───────────────────────────────────── */
.text-reveal { position: relative; height: 180vh; background: var(--cream-dark); }
.text-reveal__sticky { position: sticky; top: 0; min-height: 100vh; display: flex; align-items: center; }
.text-reveal__p { font-family: var(--ff-heading); font-weight: 700; line-height: 1.3;
  font-size: clamp(1.5rem, 4.2vw, 3.1rem); max-width: 980px; margin: 0 auto; padding: 0 2rem;
  color: var(--jade); display: flex; flex-wrap: wrap; gap: .25em .35em; }
.tr-word { opacity: .16; transition: opacity .25s ease; }
.tr-word em { font-style: normal; color: var(--cane); }

/* ─── COMPARADOR BEFORE/AFTER ──────────────────────────────────────────────── */
.compare-slider { position: relative; width: 100%; max-width: 760px; margin: 0 auto; aspect-ratio: 16/10;
  border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-deep); user-select: none; touch-action: pan-y; cursor: ew-resize; }
.compare-slider__layer { position: absolute; inset: 0; }
.compare-slider__layer .illus { width: 100%; height: 100%; border-radius: 0; aspect-ratio: auto; }
.compare-slider__after { clip-path: inset(0 50% 0 0); }
.compare-slider__tag { position: absolute; top: 1rem; font-family: var(--ff-heading); font-size: .72rem;
  letter-spacing: .15em; text-transform: uppercase; color: var(--cane-light); background: rgba(26,58,42,.6);
  padding: .35rem .7rem; border-radius: 3px; backdrop-filter: blur(4px); z-index: 4; }
.compare-slider__tag--l { left: 1rem; } .compare-slider__tag--r { right: 1rem; }
.compare-slider__handle { position: absolute; top: 0; bottom: 0; width: 3px; background: var(--cane); left: 50%; transform: translateX(-50%); z-index: 5; }
.compare-slider__knob { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 46px; height: 46px;
  border-radius: 50%; background: var(--cane); color: var(--jade); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.35); font-size: 1.1rem; transition: transform .2s ease; }
.compare-slider.dragging .compare-slider__knob { transform: translate(-50%,-50%) scale(1.12); }

/* ─── TESTIMONIOS EN COLUMNAS (vertical auto-scroll) ───────────────────────── */
.tcols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; max-height: 640px; overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 86%, transparent);
          mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 86%, transparent); }
.tcol { overflow: hidden; }
.tcol__track { display: flex; flex-direction: column; gap: 1.2rem; animation: vmarq var(--vd, 26s) linear infinite; }
.tcols:hover .tcol__track { animation-play-state: paused; }
.tcol:nth-child(2) .tcol__track { --vd: 34s; }
.tcol:nth-child(3) .tcol__track { --vd: 30s; }
@keyframes vmarq { to { transform: translateY(-50%); } }

/* ─── GALERÍA BENTO + LIGHTBOX ─────────────────────────────────────────────── */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 130px; gap: .8rem; }
.bento-tile { position: relative; border-radius: 14px; overflow: hidden; cursor: zoom-in;
  transition: transform .25s ease, box-shadow .25s ease; }
.bento-tile:hover { transform: scale(1.015); box-shadow: var(--shadow-card); z-index: 2; }
.bento-tile .illus { width: 100%; height: 100%; border-radius: 0; aspect-ratio: auto; }
.bento-tile__cap { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1rem; background: linear-gradient(to top, rgba(28,18,8,.78), transparent 60%); opacity: 0; transition: opacity .25s ease; }
.bento-tile:hover .bento-tile__cap { opacity: 1; }
.bento-tile__cap strong { color: var(--cream); font-family: var(--ff-heading); font-size: .95rem; }
.bento-tile__cap span { color: var(--cane-light); font-size: .78rem; }
.col-2 { grid-column: span 2; } .row-2 { grid-row: span 2; }

.lightbox { position: fixed; inset: 0; z-index: 120; display: none; align-items: center; justify-content: center; padding: 2rem;
  background: rgba(28,18,8,.88); backdrop-filter: blur(8px); }
.lightbox.open { display: flex; animation: lbfade .25s ease; }
@keyframes lbfade { from { opacity: 0; } to { opacity: 1; } }
.lightbox__stage { position: relative; max-width: 920px; width: 100%; }
.lightbox__media { width: 100%; aspect-ratio: 16/10; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-deep); background: var(--jade); }
.lightbox__media .illus { width: 100%; height: 100%; border-radius: 0; aspect-ratio: auto; }
.lightbox__media img { width: 100%; height: 100%; object-fit: cover; }
.lightbox__info { text-align: center; color: var(--cream); margin-top: 1rem; }
.lightbox__info strong { font-family: var(--ff-heading); display: block; }
.lightbox__info span { color: var(--cream-dark); font-size: .9rem; opacity: .8; }
.lightbox__close { position: absolute; top: -3rem; right: 0; color: var(--cream); font-size: 2rem; line-height: 1; }
.lightbox__dock { display: flex; gap: .5rem; justify-content: center; margin-top: 1.2rem; flex-wrap: wrap; }
.lightbox__thumb { width: 46px; height: 46px; border-radius: 8px; overflow: hidden; opacity: .5; cursor: pointer;
  border: 2px solid transparent; transition: all .2s ease; }
.lightbox__thumb.active { opacity: 1; border-color: var(--cane); transform: translateY(-4px); }
.lightbox__thumb .illus { width: 100%; height: 100%; border-radius: 0; aspect-ratio: auto; }
.lightbox__thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ─── PRECIOS (tiers por caja) ─────────────────────────────────────────────── */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: stretch; max-width: 980px; margin: 0 auto; }
.price-card { position: relative; background: var(--cream); border: 1px solid var(--bone); border-radius: 16px;
  padding: 2.2rem 1.8rem; text-align: center; display: flex; flex-direction: column; align-items: center;
  transition: transform .25s ease, box-shadow .25s ease; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.price-card--feat { background: var(--jade); color: var(--cream); border-color: var(--cane); box-shadow: var(--shadow-card); }
.price-card__tag { position: absolute; top: -.8rem; left: 50%; transform: translateX(-50%); background: var(--cane); color: var(--jade);
  font-family: var(--ff-heading); font-weight: 700; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; padding: .3rem .8rem; border-radius: 999px; }
.price-card__qty { font-family: var(--ff-heading); font-size: 1.1rem; color: var(--earth); letter-spacing: .05em; text-transform: uppercase; }
.price-card--feat .price-card__qty { color: var(--cane-light); }
.price-card__off { font-family: var(--ff-display); font-size: 3rem; line-height: 1; color: var(--jade); margin: .5rem 0; }
.price-card--feat .price-card__off { color: var(--cane-light); }
.price-card__off small { font-size: 1rem; display: block; font-family: var(--ff-body); color: var(--earth); letter-spacing: .1em; }
.price-card--feat .price-card__off small { color: var(--cane-pale); }
.price-card__list { margin: 1.2rem 0 1.8rem; display: flex; flex-direction: column; gap: .55rem; font-size: .9rem; }
.price-card__list li { display: flex; gap: .5rem; align-items: center; justify-content: center; }
.price-card__list .yes { color: var(--jade-light); display: inline-flex; }
.price-card--feat .price-card__list .yes { color: var(--cane-light); }
.price-card .btn { margin-top: auto; width: 100%; justify-content: center; }

/* ─── CTA BAND (Cta4) + TEXTO FLIP ─────────────────────────────────────────── */
.cta4 { display: flex; gap: 2.5rem; align-items: center; justify-content: space-between; flex-wrap: wrap;
  background: var(--jade); color: var(--cream); border: 1px solid var(--cane); border-radius: 18px; padding: clamp(2rem,5vw,3.5rem); }
.cta4__main { flex: 1 1 360px; }
.cta4__main h2 { color: var(--cream); margin-bottom: .6rem; }
.cta4__main h2 em { color: var(--cane-light); font-style: normal; }
.cta4__list { flex: 0 1 280px; display: flex; flex-direction: column; gap: .7rem; }
.cta4__list li { display: flex; gap: .6rem; align-items: center; font-weight: 500; }
.cta4__list .yes { color: var(--cane-light); display: inline-flex; }

.flip { display: inline-flex; align-items: center; }
.flip-word { display: inline-block; color: var(--cane); opacity: 0; filter: blur(8px); transform: translateY(6px); }
.flip-word.in { animation: flipIn .55s ease forwards; }
@keyframes flipIn { to { opacity: 1; filter: blur(0); transform: none; } }

/* ─── DOCK MAGNÉTICO (redes) ───────────────────────────────────────────────── */
.footer__social a { transition: transform .15s ease, background .2s, color .2s, border-color .2s; will-change: transform; }

/* ─── SHOP CARDS PRO (Nuestra Línea — venta directa) ──────────────────────── */
.shop-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.8rem; max-width: 820px; margin: 0 auto; }
.shop-card { position: relative; background: var(--cream); border: 1px solid var(--bone); border-radius: 18px; overflow: hidden;
  display: flex; flex-direction: column; transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .35s ease; }
.shop-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-deep); border-color: var(--cane); }
.shop-card__media { position: relative; height: 240px; overflow: hidden; display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 50% 40%, var(--jade-mid), var(--jade)); }
.shop-card--earth .shop-card__media { background: radial-gradient(circle at 50% 40%, var(--earth-light), var(--earth)); }
.shop-card__media::after { content: ''; position: absolute; inset: 0; background: var(--dot-pattern); opacity: .4; }
.shop-card__media .illus { width: 100%; height: 100%; border-radius: 0; aspect-ratio: auto; background: none !important; }
.shop-card__media .illus__pattern { display: none; }
.shop-card__media .illus__svg { position: relative; z-index: 1; width: auto; height: 92%; max-width: 88%; transition: transform .45s ease; }
.shop-card__media .illus__photo-cut { width: auto; height: 90%; max-width: 80%; transition: transform .45s ease; }
.shop-card:hover .shop-card__media .illus__svg,
.shop-card:hover .shop-card__media .illus__photo-cut { transform: translateY(-10px) scale(1.05) rotate(-1.5deg); }
.shop-card .badge-best { z-index: 3; }
.shop-card__body { padding: 1.6rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.shop-card__stars { color: var(--cane); font-size: .9rem; letter-spacing: .06em; }
.shop-card__stars span { color: var(--earth); font-size: .76rem; }
.shop-card__body h3 { font-family: var(--ff-heading); font-weight: 700; font-size: 1.45rem; color: var(--jade); line-height: 1.1; }
.shop-card__cat { font-family: var(--ff-accent); font-style: italic; color: var(--earth); font-size: 1rem; }
.shop-card__chips { display: flex; gap: .4rem; flex-wrap: wrap; margin: .3rem 0 .2rem; }
.shop-card__actions { display: flex; gap: .6rem; margin-top: auto; padding-top: 1rem; }
.shop-card__actions .btn { flex: 1; justify-content: center; padding: .8rem .6rem; font-size: .82rem; }

/* ─── SECCIÓN CON VIDEO DE FONDO (post-hero / text-reveal) ─────────────────── */
.text-reveal--media { background: linear-gradient(135deg, var(--jade) 0%, var(--earth) 100%); }
.text-reveal--media .text-reveal__sticky { overflow: hidden; justify-content: center; }
.text-reveal__bg { position: absolute; inset: 0; z-index: 0; }
.text-reveal__bg video { width: 100%; height: 100%; object-fit: cover; }
.text-reveal__overlay { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(26,58,42,.45) 0%, rgba(26,58,42,.62) 100%); }
.text-reveal--media .text-reveal__p { position: relative; z-index: 2; color: var(--cream); }
.text-reveal--media .tr-word { opacity: .22; }
.text-reveal--media .tr-word em { color: var(--cane-light); }

/* ─── SECCIÓN CON VIDEO DE FONDO REUTILIZABLE (.section--media) ────────────── */
.section--media { position: relative; background: var(--jade); color: var(--cream); overflow: hidden; }
.section--media > .wrapper { position: relative; z-index: 2; }
.section--media .section-title { color: var(--cream); }
.section--media .section-title em { color: var(--cane-light); }
.section--media .lead { color: var(--cream-dark); }
.section__bg { position: absolute; inset: 0; z-index: 0; background: var(--jade); }
.section__bg video { width: 100%; height: 100%; object-fit: cover; }
.section__overlay { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(26,58,42,.55) 0%, rgba(26,58,42,.78) 100%); }

/* ─── RESPONSIVE de los nuevos componentes ─────────────────────────────────── */
@media (max-width: 880px) {
  .tcols { grid-template-columns: repeat(2, 1fr); max-height: 560px; }
  .pricing { grid-template-columns: 1fr; max-width: 420px; }
  .price-card--feat { order: -1; }
  .bento { grid-auto-rows: 110px; }
  .cta4 { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .tcols { grid-template-columns: 1fr; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .col-2 { grid-column: span 2; } .row-2 { grid-row: span 1; }
  .text-reveal { height: 150vh; }
}

/* ─── REDUCED MOTION ──────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
