/* =========================================================
   Globos Burbuja — globosburbuja.com
   Paleta: rosa empolvado + dorado sobre blanco
   Tipografía: Fraunces (display) + Inter (cuerpo)
   ========================================================= */

:root {
  /* Color */
  --white: #FFFFFF;
  --cream: #FBF7F4;
  --blush-soft: #F7E8E6;
  --blush: #E8C5C1;
  --blush-deep: #D8A8A3;
  --ink: #3A3A38;
  --ink-soft: #4A4A48;
  --ink-mute: #6E6E6B;
  --gold: #C9A24B;          /* SOLO líneas, bordes, viñetas, iconos decorativos */
  --gold-dark: #8A6A22;     /* texto/iconos dorados que deben leerse (AA) */
  --gold-ui: #A07E2E;       /* bordes/UI */
  --line: #ECE4DC;
  --line-gold: rgba(201, 162, 75, 0.45);
  --shadow-rose: rgba(216, 168, 163, 0.28);
  --glass-fill: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.55);
  --wa: #25D366;
  --focus: #8A6A22;

  /* Tipografía */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --gold-on-blush: #5E4612; /* dorado legible sobre fondos rosados (AA) */

  /* Medidas */
  --r-sm: 10px;
  --r: 14px;
  --r-icon: 14px;
  --r-lg: 22px;
  --r-pill: 999px;
  --header-h: 72px;
  --container: 1180px;
  --container-narrow: 760px;
  --pad-x: clamp(1.1rem, 4vw, 2rem);
  --section-y: clamp(3.5rem, 7vw, 6.5rem);
  --shadow-card: 0 22px 50px -28px var(--shadow-rose);
  --shadow-soft: 0 10px 30px -18px rgba(58, 58, 56, 0.18);
  --shadow-hover: 0 16px 34px -16px rgba(58, 58, 56, 0.5);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 14px); overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* Iconos del sprite: los de trazo necesitan stroke=currentColor (los sólidos
   definen su propio fill y no se ven afectados) */
svg:has(use) { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  font-size: clamp(1.0625rem, 0.4vw + 1rem, 1.125rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; color: inherit; cursor: pointer; }

::selection { background: var(--blush); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed; left: 50%; top: -60px; transform: translateX(-50%);
  background: var(--ink); color: #fff; padding: .6rem 1.1rem;
  border-radius: var(--r-pill); z-index: 250; transition: top .2s ease;
}
.skip-link:focus { top: 10px; }

/* ===== Tipografía ===== */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.12; letter-spacing: -0.01em; color: var(--ink); }
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 1.06; font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.3rem; line-height: 1.25; }
em { font-style: italic; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.9rem;
}
/* Sobre fondos rosados el dorado necesita oscurecerse para cumplir contraste AA */
.occasions .eyebrow, .wholesale .eyebrow, .final-cta .eyebrow { color: var(--gold-on-blush); }

/* ===== Layout ===== */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad-x); }
.container--narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--section-y); }

.section__head { max-width: 720px; margin-inline: auto; text-align: center; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section__head h2 { position: relative; padding-bottom: 1.1rem; }
.section__head h2::after {
  content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 54px; height: 2px; background: var(--gold); border-radius: 2px;
}
.section__lead { color: var(--ink-soft); margin-top: 1rem; font-size: 1.075rem; }

/* ===== Botones ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 600; font-size: 0.98rem; line-height: 1;
  padding: 0.92rem 1.5rem; border-radius: var(--r-pill); border: 1.5px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
  cursor: pointer; text-align: center; white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn--lg { padding: .9rem 1.55rem; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--primary { background: var(--ink); color: #fff; box-shadow: var(--shadow-soft); }
.btn--primary:hover { background: #2a2a28; transform: translateY(-2px); box-shadow: var(--shadow-hover); }

.btn--dark { background: #232321; color: #fff; }
.btn--dark:hover { background: #15140f; transform: translateY(-2px); }

.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line-gold); }
.btn--ghost:hover { background: var(--cream); border-color: var(--gold-ui); transform: translateY(-2px); }

.btn--outline { background: transparent; color: var(--ink); border-color: rgba(58,58,56,.45); }
.btn--outline:hover { background: rgba(58,58,56,.08); border-color: var(--ink); }

.btn--wa { background: var(--ink); color: #fff; }
.btn--wa:hover { background: #2a2a28; transform: translateY(-2px); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background-color .3s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px -20px rgba(58,58,56,.4); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 72px; }

.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand__mark { display: inline-flex; flex: none; }
.brand__word { font-family: var(--font-display); font-size: 1.32rem; font-weight: 400; letter-spacing: -0.01em; color: var(--ink); }
.brand__word em { font-style: italic; color: var(--gold-dark); }

.nav { display: flex; align-items: center; }
.nav__menu { display: flex; align-items: center; gap: clamp(.6rem, 1.6vw, 1.6rem); }
.nav__menu a:not(.btn) { font-size: 0.96rem; color: var(--ink-soft); font-weight: 500; padding: .4rem 0; position: relative; transition: color .2s ease; }
.nav__menu a:not(.btn)::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px; background: var(--gold); transition: width .25s ease; }
.nav__menu a:not(.btn):hover { color: var(--ink); }
.nav__menu a:not(.btn):hover::after { width: 100%; }
.nav__cta { padding: .62rem 1.1rem; font-size: .92rem; }

.nav__toggle { display: none; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 12px; background: transparent; border: 1px solid var(--line); }
.nav__toggle-close { display: none; }

@media (max-width: 980px) {
  .nav__toggle { display: inline-flex; }
  .nav__menu {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: .2rem;
    background: #fff; padding: 5.5rem 1.6rem 2rem; box-shadow: -20px 0 60px -30px rgba(58,58,56,.5);
    transform: translateX(100%); visibility: hidden; overflow-y: auto;
    transition: transform .32s cubic-bezier(.4,0,.2,1), visibility 0s linear .32s;
  }
  .nav__menu.is-open { transform: translateX(0); visibility: visible; transition: transform .32s cubic-bezier(.4,0,.2,1), visibility 0s; }
  .nav__menu li { border-bottom: 1px solid var(--line); }
  .nav__menu li.nav__cta-li { border: 0; margin-top: 1rem; }
  .nav__menu a:not(.btn) { display: block; padding: .95rem .2rem; font-size: 1.05rem; }
  .nav__menu a:not(.btn)::after { display: none; }
  .nav__cta { width: 100%; }
  body.nav-open { overflow: hidden; }
  .nav__toggle[aria-expanded="true"] .nav__toggle-open { display: none; }
  .nav__toggle[aria-expanded="true"] .nav__toggle-close { display: block; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(40,30,30,.32); z-index: 99; opacity: 0; pointer-events: none; transition: opacity .3s ease; }
  .nav-backdrop.is-open { opacity: 1; pointer-events: auto; }
}

/* ===== Hero ===== */
.hero { position: relative; padding-top: clamp(2.5rem, 5vw, 4.5rem); padding-bottom: clamp(2.5rem, 5vw, 4.5rem); overflow: hidden; }
.hero__inner { display: grid; grid-template-columns: 1.05fr 0.85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero__title { margin-top: .3rem; font-size: clamp(2.05rem, 6.4vw, 4.4rem); }
.brk { display: none; }
@media (min-width: 700px) { .brk { display: inline; } }
.hero__title em { font-style: italic; color: var(--gold-dark); }
.hero__subtitle { margin-top: 1.4rem; font-size: 1.18rem; color: var(--ink-soft); max-width: 30ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; margin-top: 2rem; }
.hero__trust li { display: inline-flex; align-items: center; gap: .45rem; font-size: .9rem; color: var(--ink-mute); font-weight: 500; }
.hero__trust svg { color: var(--gold-dark); flex: none; }

.hero__bubbles { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.bub {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, rgba(255,255,255,.9), rgba(247,232,230,.35) 60%, rgba(232,197,193,.25));
  box-shadow: inset 0 0 0 1px rgba(201,162,75,.22);
  animation: floatY 16s ease-in-out infinite;
}
.bub--1 { width: 120px; height: 120px; left: 4%; top: 18%; animation-duration: 18s; }
.bub--2 { width: 60px; height: 60px; left: 46%; top: 8%; animation-duration: 14s; animation-delay: -3s; }
.bub--3 { width: 200px; height: 200px; right: 2%; bottom: -4%; animation-duration: 22s; animation-delay: -6s; opacity: .7; }
.bub--4 { width: 38px; height: 38px; left: 30%; bottom: 14%; animation-duration: 12s; animation-delay: -2s; }
@keyframes floatY { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-26px) } }

.hero__figure { position: relative; margin: 0; }
.hero__art { width: 100%; height: auto; filter: drop-shadow(0 30px 50px var(--shadow-rose)); animation: floatY 9s ease-in-out infinite; }
.hero__cap { position: absolute; left: 50%; bottom: 6%; transform: translateX(-50%); }
.hero__cap span {
  display: inline-block; background: var(--glass-fill); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border); color: var(--ink); font-size: .82rem; font-weight: 500;
  padding: .42rem .9rem; border-radius: var(--r-pill); box-shadow: var(--shadow-soft);
}

/* ===== Trust bar ===== */
.trustbar { border-block: 1px solid var(--line); background: var(--cream); }
.trustbar__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem clamp(1rem, 3vw, 2.4rem); padding-block: 1rem; }
.trustbar span { display: inline-flex; align-items: center; gap: .5rem; font-size: .86rem; font-weight: 500; color: var(--ink-soft); }
.trustbar svg { color: var(--gold-dark); flex: none; }

/* ===== Elige tu camino ===== */
.choose__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.2rem, 3vw, 2rem); }
.path-card { position: relative; border-radius: var(--r-lg); padding: clamp(1.6rem, 3vw, 2.4rem); display: flex; flex-direction: column; box-shadow: var(--shadow-card); }
.path-card--retail { background: #fff; border: 1px solid var(--line-gold); }
.path-card--mayoreo { background: linear-gradient(180deg, #FBEEEC 0%, #F7E8E6 100%); border: 1px solid rgba(216,168,163,.5); }
.path-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: var(--r-icon); background: #fff; border: 1px solid var(--line-gold); color: var(--gold-dark); margin-bottom: 1.1rem; }
.path-card--mayoreo .path-card__icon { background: rgba(255,255,255,.7); }
.path-card h3 { font-size: 1.5rem; }
.path-card__blurb { color: var(--ink-soft); margin-top: .7rem; }
.ticklist { margin-top: 1.2rem; display: grid; gap: .6rem; }
.ticklist li { position: relative; padding-left: 1.7rem; color: var(--ink-soft); font-size: .98rem; }
.ticklist li::before {
  content: ""; position: absolute; left: 0; top: .35em; width: 14px; height: 8px;
  border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg);
}
.ticklist--2col { grid-template-columns: 1fr 1fr; }
.path-card__badge { margin-top: 1.3rem; font-size: .82rem; font-weight: 500; color: var(--ink-mute); background: var(--cream); border: 1px dashed var(--line-gold); padding: .55rem .8rem; border-radius: var(--r); }
.path-card--mayoreo .path-card__badge { background: rgba(255,255,255,.55); }
.path-card__price { margin-top: 1.1rem; margin-bottom: 1.3rem; font-family: var(--font-display); font-size: 1.12rem; color: var(--ink); }
.path-card__price strong { color: var(--gold-dark); font-weight: 500; }
.path-card .btn { margin-top: auto; }

/* ===== Qué es ===== */
.about { background: var(--cream); }
.about__grid { display: grid; grid-template-columns: 0.85fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about__bubble { aspect-ratio: 1; border-radius: var(--r-lg); max-width: 420px; margin-inline: auto; width: 100%; box-shadow: var(--shadow-card); }
.about__text .about__lead { font-family: var(--font-display); font-style: italic; font-size: 1.4rem; color: var(--ink); margin: .4rem 0 1.2rem; }
.about__text p { color: var(--ink-soft); }
.about__text strong { color: var(--ink); font-weight: 600; }
.facts { margin-top: 1.8rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.6rem; }
.facts__item { border-top: 1px solid var(--line-gold); padding-top: .7rem; }
.facts dt { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dark); font-weight: 600; }
.facts dd { font-size: .95rem; color: var(--ink-soft); margin-top: .25rem; }

/* ===== Personalización ===== */
.custom__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: clamp(.9rem, 2vw, 1.4rem); }
.custom__item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: .75rem .75rem 1.2rem; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; overflow: hidden; }
.custom__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--line-gold); }
.custom__pic { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; display: block; border-radius: var(--r-sm); background: var(--cream); margin-bottom: .85rem; }
.custom__item:hover .custom__pic { /* sutil zoom de la foto */ }
.custom__item h3 { font-size: 1.18rem; padding-inline: .55rem; }
.custom__item p { color: var(--ink-soft); font-size: .94rem; margin-top: .35rem; padding-inline: .55rem; }

/* ===== Galería ===== */
.gallery__note { text-align: center; margin-top: 2.2rem; color: var(--ink-mute); font-size: .98rem; }

/* ===== Carruseles por tema (un recuadro por servicio) ===== */
.carousels { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: clamp(1.2rem, 2.6vw, 2rem); }
.carousel { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-card); display: flex; flex-direction: column; }
.carousel__viewport { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--cream); }
.carousel__track { display: flex; height: 100%; transition: transform .45s cubic-bezier(.4, 0, .2, 1); }
.carousel__img { flex: 0 0 100%; width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel__tag { position: absolute; top: .8rem; left: .8rem; z-index: 2; background: rgba(255,255,255,0.88); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border: 1px solid var(--glass-border); color: var(--ink); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; padding: .38rem .85rem; border-radius: var(--r-pill); box-shadow: 0 2px 8px -3px rgba(58,58,56,.35); }
.carousel__count { position: absolute; top: .8rem; right: .8rem; z-index: 2; background: rgba(58, 58, 56, .72); color: #fff; font-size: .76rem; font-weight: 600; padding: .32rem .7rem; border-radius: var(--r-pill); }
.carousel__count b { font-weight: 700; }
.carousel__arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.9); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border: 1px solid var(--glass-border); color: var(--ink); display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px -4px rgba(58,58,56,.45); cursor: pointer; transition: background .2s ease, transform .2s ease, opacity .2s ease; }
.carousel__arrow:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.carousel__arrow:active { transform: translateY(-50%) scale(.96); }
.carousel__arrow--prev { left: .7rem; }
.carousel__arrow--next { right: .7rem; }
.carousel__arrow--next svg { transform: scaleX(-1); }
.carousel__caps { padding: 1.1rem 1.3rem .5rem; min-height: 124px; }
.cap { display: none; }
.cap.is-active { display: block; animation: capIn .45s ease; }
@keyframes capIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.cap h3 { font-size: 1.2rem; }
.cap p { color: var(--ink-soft); font-size: .94rem; margin-top: .4rem; }
.carousel__dots { display: flex; gap: .1rem; justify-content: center; padding: .2rem 0 1rem; }
.carousel__dots .dot { width: 30px; height: 34px; padding: 0; border: 0; background: transparent; cursor: pointer; position: relative; }
.carousel__dots .dot::before { content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 8px; height: 8px; border-radius: 50%; background: var(--line); transition: background .2s ease, transform .2s ease; }
.carousel__dots .dot:hover::before { background: var(--blush-deep); }
.carousel__dots .dot.is-active::before { background: var(--gold-dark); transform: translate(-50%, -50%) scale(1.35); }
.carousel__dots .dot:focus-visible { outline-offset: -2px; }
.carousel:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
@media (prefers-reduced-motion: reduce) { .carousel__track { transition: none; } .cap.is-active { animation: none; } }

/* ===== Por qué ===== */
.why { background: var(--cream); }
.why__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(1rem, 2.2vw, 1.7rem); }
.why__item { background: #fff; border-radius: var(--r-lg); padding: 1.8rem 1.6rem; border: 1px solid var(--line); }
.why__icon { display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; border-radius: 14px; background: var(--blush-soft); color: var(--gold-dark); margin-bottom: 1rem; }
.why__item h3 { font-size: 1.2rem; }
.why__item p { color: var(--ink-soft); margin-top: .55rem; font-size: .97rem; }

/* ===== Retail ===== */
.retail { background: #fff; }
.retail__occasions { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr)); gap: clamp(.9rem, 2vw, 1.4rem); }
.retail__occasions li { padding: 1.4rem 1.5rem; border-radius: var(--r); border: 1px solid var(--line); border-left: 3px solid var(--gold); background: var(--cream); }
.retail__occasions h3 { font-size: 1.2rem; }
.retail__occasions p { color: var(--ink-soft); font-size: .94rem; margin-top: .35rem; }
.retail__coverage { margin-top: 2.4rem; background: linear-gradient(180deg, #fff, var(--cream)); border: 1px solid var(--line-gold); border-radius: var(--r-lg); padding: clamp(1.6rem, 3vw, 2.4rem); text-align: center; }
.retail__coverage-head { display: inline-flex; align-items: center; gap: .6rem; color: var(--ink); justify-content: center; }
.retail__coverage-head svg { color: var(--gold-dark); }
.retail__coverage-head h3 { font-size: 1.3rem; }
.zone-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: .55rem; margin-top: 1.3rem; }
.zone-chips li { background: #fff; border: 1px solid var(--line-gold); color: var(--ink-soft); padding: .45rem 1rem; border-radius: var(--r-pill); font-size: .9rem; font-weight: 500; }
.zone-chips--light li { background: rgba(255,255,255,.6); }
.retail__coverage-note { color: var(--ink-mute); font-size: .92rem; margin-top: 1.2rem; }
.retail__cta { margin-top: 1.8rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.retail__price { font-family: var(--font-display); font-size: 1.15rem; }
.retail__price strong { color: var(--gold-dark); font-weight: 500; }

/* ===== Ocasiones (banda rosa) ===== */
.occasions { background: var(--blush-soft); }
.occasions__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr)); gap: clamp(.9rem, 2vw, 1.3rem); }
.occasions__grid li { background: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.8); border-radius: var(--r-lg); padding: 1.5rem 1.4rem; }
.occasions__icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 1px solid var(--line-gold); color: var(--gold-dark); margin-bottom: .9rem; }
.occasions__grid h3 { font-size: 1.2rem; }
.occasions__grid p { color: var(--ink-soft); font-size: .93rem; margin-top: .35rem; }

/* ===== Mayoreo ===== */
.wholesale { background: linear-gradient(180deg, var(--blush-soft) 0%, #F2DAD7 100%); }
.wholesale__grid { display: grid; grid-template-columns: 1.4fr 0.85fr; gap: clamp(1.4rem, 3vw, 2.4rem); align-items: start; }
.wholesale__main { background: #fff; border-radius: var(--r-lg); padding: clamp(1.6rem, 3vw, 2.4rem); border: 1px solid var(--line-gold); box-shadow: var(--shadow-card); }
.wholesale__margin { display: flex; gap: .8rem; background: var(--cream); border-radius: var(--r); padding: 1.1rem 1.2rem; font-size: 1.02rem; color: var(--ink); }
.wholesale__margin svg { color: var(--gold-dark); flex: none; margin-top: .15rem; }
.wholesale__main .ticklist { margin-top: 1.5rem; }
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: .9rem; margin-top: 1.8rem; }
.tier { position: relative; border: 1px solid var(--line); border-radius: var(--r); padding: 1.3rem 1.1rem; text-align: center; background: var(--cream); }
.tier--mid { background: #fff; border-color: var(--line-gold); }
.tier--best { background: #fff; border: 1.5px solid var(--gold); box-shadow: var(--shadow-card); }
.tier__flag { position: absolute; top: -.7rem; left: 50%; transform: translateX(-50%); background: var(--ink); color: #fff; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; padding: .28rem .7rem; border-radius: var(--r-pill); }
.tier__qty { display: block; font-family: var(--font-display); font-size: 1.22rem; color: var(--ink); margin-bottom: .35rem; }
.tier p { font-size: .88rem; color: var(--ink-soft); }
.tiers__note { font-size: .82rem; color: var(--ink-mute); margin-top: 1.1rem; }

.wholesale__aside { background: #232321; color: #fff; border-radius: var(--r-lg); padding: clamp(1.6rem, 3vw, 2.2rem); box-shadow: var(--shadow-card); position: sticky; top: calc(var(--header-h) + 18px); }
.wholesale__aside h3 { color: #fff; font-size: 1.3rem; }
.wholesale__aside .zone-chips { justify-content: flex-start; }
.wholesale__aside .zone-chips li { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: #F3ECE4; }
.wholesale__min { margin-top: 1.4rem; display: grid; gap: .6rem; }
.wholesale__min p { display: flex; align-items: center; gap: .55rem; font-size: .96rem; color: #EDE6DE; }
.wholesale__min strong { color: #fff; }
.wholesale__min svg { color: var(--gold); flex: none; }
.wholesale__open { font-size: .92rem; color: #CFC8C0; margin-top: 1.2rem; margin-bottom: 1.4rem; }

/* ===== Envíos ===== */
.shipping__couriers { display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem; margin-bottom: 2.4rem; }
.courier { display: inline-flex; align-items: center; gap: .45rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill); padding: .55rem 1.2rem; font-weight: 600; letter-spacing: .02em; color: var(--ink); }
.courier--time { color: var(--ink-soft); font-weight: 500; background: var(--cream); }
.courier--time svg { color: var(--gold-dark); }

/* ===== Pasos ===== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.5vw, 2rem); counter-reset: step; }
.steps li { position: relative; padding-top: .5rem; }
.steps__num { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--gold); color: var(--gold-dark); font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 1rem; }
.steps h3 { font-size: 1.2rem; }
.steps p { color: var(--ink-soft); margin-top: .5rem; font-size: .96rem; }
.howto { background: var(--cream); }

/* ===== Testimonios ===== */
.testi__layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(1.2rem, 3vw, 2rem); align-items: start; }
.testi__feature { position: relative; background: var(--glass-fill); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid var(--glass-border); border-radius: var(--r-lg); padding: clamp(1.8rem, 3vw, 2.6rem); box-shadow: var(--shadow-card); }
.testi { background: linear-gradient(180deg, #fff 0%, var(--blush-soft) 100%); }
.testi__stars { display: flex; gap: .15rem; color: var(--gold-dark); margin-bottom: 1.1rem; }
.testi__stars svg { fill: var(--gold-dark); stroke: var(--gold-dark); }
.testi__feature blockquote { font-family: var(--font-display); font-size: 1.45rem; line-height: 1.4; color: var(--ink); }
.testi__feature figcaption, .testi__card figcaption { margin-top: 1.3rem; display: flex; flex-direction: column; }
.testi__feature figcaption strong, .testi__card figcaption strong { font-weight: 600; }
.testi__feature figcaption span, .testi__card figcaption span { font-size: .88rem; color: var(--ink-mute); margin-top: .15rem; }
.testi__strip { display: grid; gap: 1rem; }
.testi__card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.5rem 1.6rem; box-shadow: var(--shadow-soft); }
.testi__card blockquote { color: var(--ink-soft); font-size: .98rem; }

/* ===== FAQ ===== */
.faq { background: var(--cream); }
.faq__list { display: grid; gap: .8rem; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.faq__item[open] { border-color: var(--line-gold); box-shadow: var(--shadow-soft); }
.faq__item summary { list-style: none; cursor: pointer; padding: 1.2rem 1.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-family: var(--font-display); font-size: 1.12rem; color: var(--ink); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__plus { position: relative; flex: none; width: 20px; height: 20px; }
.faq__plus::before, .faq__plus::after { content: ""; position: absolute; background: var(--gold-dark); border-radius: 2px; transition: transform .25s ease; }
.faq__plus::before { left: 0; top: 9px; width: 20px; height: 2px; }
.faq__plus::after { left: 9px; top: 0; width: 2px; height: 20px; }
.faq__item[open] .faq__plus::after { transform: rotate(90deg); opacity: 0; }
.faq__answer { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); }
.faq__answer p { max-width: 64ch; }

/* ===== CTA final ===== */
.final-cta { background: var(--blush); padding-block: clamp(3.5rem, 7vw, 6rem); }
.final-cta__inner { text-align: center; max-width: 720px; }
.final-cta h2 { font-size: clamp(2.1rem, 4.5vw, 3.3rem); color: var(--ink); }
.final-cta h2 em { font-style: italic; color: var(--gold-dark); }
.final-cta p { color: var(--ink-soft); margin-top: 1rem; font-size: 1.1rem; max-width: 52ch; margin-inline: auto; }
.final-cta__btns { display: flex; flex-wrap: wrap; justify-content: center; gap: .85rem; margin-top: 2rem; }

/* ===== Footer ===== */
.site-footer { background: var(--cream); border-top: 2px solid var(--gold); padding-top: clamp(3rem, 5vw, 4.5rem); }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: clamp(1.6rem, 3vw, 2.6rem); padding-bottom: 2.6rem; }
.brand--footer { margin-bottom: 1rem; }
.site-footer__tagline { color: var(--ink-soft); font-size: .95rem; max-width: 34ch; }
.site-footer__social { display: flex; gap: .6rem; margin-top: 1.3rem; }
.site-footer__social a { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-gold); color: var(--gold-dark); transition: all .2s ease; }
.site-footer__social a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.site-footer__col h3 { font-family: var(--font-body); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dark); font-weight: 600; margin-bottom: 1rem; }
.site-footer__col ul { display: grid; gap: .65rem; }
.site-footer__col a { color: var(--ink-soft); font-size: .95rem; transition: color .2s ease; }
.site-footer__col a:hover { color: var(--ink); }
.site-footer__contact ul { gap: .8rem; }
.site-footer__contact li { display: flex; align-items: center; gap: .55rem; color: var(--ink-soft); font-size: .95rem; }
.site-footer__contact svg { color: var(--gold-dark); flex: none; }
.site-footer__care { font-size: .82rem; color: var(--ink-mute); margin-top: 1.1rem; line-height: 1.55; }
.site-footer__legal { border-top: 1px solid var(--line); padding-block: 1.5rem 2rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem; }
.site-footer__legal p { font-size: .82rem; color: var(--ink-mute); }
.site-footer__edit { font-style: italic; }

/* ===== WhatsApp flotante ===== */
.wa-float {
  position: fixed; right: clamp(1rem, 3vw, 1.6rem); bottom: clamp(1rem, 3vw, 1.6rem); z-index: 90;
  display: inline-flex; align-items: center; gap: .45rem; padding: .58rem 1rem .58rem .72rem;
  background: var(--ink); color: #fff; border-radius: var(--r-pill);
  box-shadow: 0 14px 34px -12px rgba(58,58,56,.6); min-height: 48px;
  opacity: 0; transform: translateY(20px) scale(.9); pointer-events: none;
  transition: opacity .35s ease, transform .35s ease, background-color .2s ease;
}
.wa-float.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.wa-float:hover { background: #2a2a28; }
.wa-float svg { color: var(--wa); flex: none; width: 25px; height: 25px; }
.wa-float__label { font-weight: 600; font-size: .92rem; }
.wa-float.pulse-once { animation: waPulse 1.4s ease 1; }
@keyframes waPulse { 0%,100% { box-shadow: 0 14px 34px -12px rgba(58,58,56,.6); } 50% { box-shadow: 0 14px 34px -12px rgba(58,58,56,.6), 0 0 0 12px rgba(37,211,102,.16); } }

/* ===== Reveal ===== */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .8s cubic-bezier(.2,.7,.2,1); transition-delay: var(--reveal-delay, 0ms); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal--left { transform: translateX(-34px); }
.js .reveal--right { transform: translateX(34px); }
.js .reveal--scale { transform: scale(.92); }
.js .reveal--up { transform: translateY(40px); }
.js .reveal--left.is-visible, .js .reveal--right.is-visible, .js .reveal--scale.is-visible, .js .reveal--up.is-visible { transform: none; }

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .bub, .hero__art { animation: none !important; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__content { order: 2; }
  .hero__media { order: 1; max-width: 380px; margin-inline: auto; }
  .hero__subtitle { margin-inline: auto; }
  .hero__cta, .hero__trust { justify-content: center; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { order: 2; }
  .wholesale__grid { grid-template-columns: 1fr; }
  .wholesale__aside { position: static; }
  .testi__layout { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .choose__grid { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .ticklist--2col { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 1.6rem; }
  .tiers { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
  /* Área táctil cómoda en enlaces del footer */
  .site-footer__col ul { gap: .15rem; }
  .site-footer__col a { display: inline-block; padding: .45rem 0; }
  /* Flechas del carrusel más grandes y separadas del borde */
  .carousel__arrow { width: 48px; height: 48px; }
  .carousel__arrow--prev { left: 1rem; }
  .carousel__arrow--next { right: 1rem; }
}
@media (max-width: 460px) {
  .site-footer__grid { grid-template-columns: 1fr; }
  .wa-float__label { display: none; }
  .wa-float { padding: .9rem; min-width: 56px; justify-content: center; }
  .hero__trust { gap: .5rem 1rem; }
  .btn { white-space: normal; }
  .retail__cta .btn, .final-cta .btn { width: 100%; }
}

/* =========================================================
   Dinamismo y animaciones
   ========================================================= */

/* Barra de progreso de scroll */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 200;
  background: linear-gradient(90deg, var(--gold), var(--blush-deep));
  box-shadow: 0 0 12px rgba(201, 162, 75, 0.5);
  transform: scaleX(0); transform-origin: left center; transition: transform .1s linear;
}

/* Regla dorada que se dibuja al revelar la sección */
.js .section__head h2::after { width: 0; transition: width .8s cubic-bezier(.2,.7,.2,1) .2s; }
.js .section__head.is-visible h2::after { width: 54px; }

/* Texto con brillo dorado animado */
.shine {
  background: linear-gradient(100deg, var(--gold-dark) 16%, #E4C06A 40%, #F3DD98 50%, #E4C06A 60%, var(--gold-dark) 84%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shine 5.5s linear infinite;
}
@keyframes shine { to { background-position: 220% center; } }

/* Menú: enlace de la sección activa */
.nav__menu a:not(.btn).is-current { color: var(--ink); }
.nav__menu a:not(.btn).is-current::after { width: 100%; }

/* Barra de confianza en marquesina continua */
.trustbar__inner { flex-wrap: nowrap; justify-content: flex-start; overflow: hidden; gap: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee-track { display: flex; flex: none; align-items: center; gap: .8rem clamp(1.4rem, 3vw, 2.6rem);
  padding-right: clamp(1.4rem, 3vw, 2.6rem); animation: marquee 34s linear infinite; }
.trustbar:hover .marquee-track { animation-play-state: paused; }
.trustbar__inner span { flex: none; white-space: nowrap; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Brillo que barre los botones */
.btn--primary, .btn--dark, .btn--wa { position: relative; overflow: hidden; }
.btn--primary::after, .btn--dark::after, .btn--wa::after {
  content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.32), transparent);
  transform: skewX(-18deg); transition: left .65s ease; pointer-events: none;
}
.btn--primary:hover::after, .btn--dark:hover::after, .btn--wa:hover::after { left: 150%; }
.btn svg { transition: transform .25s ease; }
.btn--primary:hover svg, .btn--dark:hover svg, .btn--wa:hover svg, .btn--ghost:hover svg { transform: translateX(3px); }

/* Inclinación 3D sutil (se activa por JS en dispositivos con cursor) */
[data-tilt] { transform-style: preserve-3d; }
.js [data-tilt] { transition: transform .25s cubic-bezier(.2,.7,.2,1), opacity .7s ease; will-change: transform; }

/* Pasos: realce al pasar el cursor */
.steps__num { transition: transform .3s ease, box-shadow .3s ease, background-color .3s ease; }
.steps li:hover .steps__num { transform: translateY(-4px); box-shadow: 0 12px 24px -12px var(--shadow-rose); }
.why__icon, .custom__icon, .occasions__icon { transition: transform .3s ease; }
.why__item:hover .why__icon, .custom__item:hover .custom__icon, .occasions__grid li:hover .occasions__icon { transform: translateY(-3px) rotate(-6deg); }

/* Franja de estadísticas con contadores */
.stats { background: #fff; border-block: 1px solid var(--line); }
.stats .container { padding-block: clamp(2rem, 4vw, 3rem); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { position: relative; text-align: center; padding: .6rem 1rem; }
.stat:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 18%; height: 64%; width: 1px; background: var(--line-gold); }
.stat__num { font-family: var(--font-display); font-size: clamp(2.2rem, 4.5vw, 3.3rem); line-height: 1; color: var(--ink); font-weight: 400; }
.stat__num .u { color: var(--gold-dark); }
.stat__label { margin-top: .6rem; color: var(--ink-soft); font-size: .95rem; }

/* Burbujas ambientales en secciones */
.amb { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.amb .bub { position: absolute; }
.final-cta { position: relative; overflow: hidden; }
.final-cta__inner { position: relative; z-index: 1; }
.wholesale { position: relative; overflow: hidden; }
.wholesale > .container { position: relative; z-index: 1; }

/* Aparición del botón flotante con leve flotación continua */
.wa-float.is-visible { animation: waFloatY 4.5s ease-in-out infinite; }
@keyframes waFloatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

/* =========================================================
   Reduced motion: neutraliza el dinamismo añadido
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  .scroll-progress { display: none; }
  .marquee-track { animation: none !important; flex-wrap: wrap; justify-content: center;
    transform: none !important; width: auto; gap: .8rem clamp(1rem, 3vw, 2.4rem); padding-right: 0; }
  .trustbar__inner { overflow: visible; -webkit-mask-image: none; mask-image: none; justify-content: center; flex-wrap: wrap; gap: .8rem clamp(1rem, 3vw, 2.4rem); }
  .marquee-dup { display: none !important; }
  .shine { animation: none !important; background: none; -webkit-text-fill-color: var(--gold-dark); color: var(--gold-dark); }
  .btn--primary::after, .btn--dark::after, .btn--wa::after { display: none !important; }
  .btn:hover svg, .steps li:hover .steps__num, .why__item:hover .why__icon, .custom__item:hover .custom__icon, .occasions__grid li:hover .occasions__icon { transform: none !important; }
  [data-tilt] { transform: none !important; }
  [data-magnetic] { transform: none !important; }
  .wa-float.is-visible { animation: none !important; }
  .hero__figure::before { animation: none !important; }
  .js .section__head h2::after { width: 54px !important; transition: none !important; }
}

/* =========================================================
   Fondo de burbujas global + secciones translúcidas
   ========================================================= */
body { background: linear-gradient(180deg, #FFFFFF 0%, #FCF8F6 56%, #FBF3F1 100%); background-attachment: fixed; }
#bg-bubbles { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
#fx { position: fixed; inset: 0; z-index: 150; pointer-events: none; }
.site-header { z-index: 100; }
main, .site-footer { position: relative; z-index: 1; }

/* Secciones claras → translúcidas para revelar las burbujas del fondo */
.choose, .retail, .shipping, .custom { background: transparent; }
.stats { background: rgba(255, 255, 255, 0.5); }
.testi { background: linear-gradient(180deg, rgba(255,255,255,0.35) 0%, rgba(247,232,230,0.62) 100%); }
.about, .gallery, .why, .howto, .faq { background: rgba(251, 247, 244, 0.6); }
.trustbar { background: rgba(251, 247, 244, 0.78); }
.occasions { background: rgba(247, 232, 230, 0.82); }
.site-footer { background: rgba(251, 247, 244, 0.84); }

/* Botones magnéticos */
[data-magnetic] { transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .2s ease, background-color .2s ease; }

/* Pulso de luz detrás del globo del hero */
.hero__figure { position: relative; }
.hero__figure::before {
  content: ""; position: absolute; left: 50%; top: 34%; width: 74%; aspect-ratio: 1;
  transform: translate(-50%, -50%); border-radius: 50%; z-index: -1; pointer-events: none;
  background: radial-gradient(circle, rgba(232,197,193,.42), rgba(232,197,193,0) 70%);
  animation: heroGlow 5.5s ease-in-out infinite;
}
@keyframes heroGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .55; }
  50% { transform: translate(-50%, -50%) scale(1.14); opacity: 1; }
}

/* =========================================================
   Fotos reales (generadas con IA) en hero, galería y "qué es"
   ========================================================= */
.hero__art { aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--r-lg); }
img.about__bubble { height: auto; object-fit: cover; }

/* =========================================================
   Experiencia móvil 2026 (táctil, dinámica, digerible)
   ========================================================= */

/* Respuesta táctil al presionar (feedback inmediato) */
@media (hover: none) {
  .btn:active { transform: scale(.97); }
  .path-card:active, .custom__item:active, .why__item:active { transform: scale(.99); }
  .carousel__arrow:active { transform: translateY(-50%) scale(.9); }
  .carousel__dots .dot:active::before { transform: translate(-50%, -50%) scale(1.4); }
}

/* Barra de acción inferior (zona del pulgar) */
.mcta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; display: none;
  padding: .55rem clamp(.85rem, 4vw, 1.2rem) calc(.55rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: saturate(160%) blur(18px); backdrop-filter: saturate(160%) blur(18px);
  border-top: 1px solid var(--line);
  transform: translateY(135%); transition: transform .42s cubic-bezier(.2, .7, .2, 1);
}
.mcta.is-visible { transform: none; }
.mcta__btn {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  width: 100%; min-height: 48px; border-radius: var(--r-pill);
  background: var(--ink); color: #fff; font-family: var(--font-body); font-weight: 600; font-size: .98rem;
  box-shadow: 0 10px 26px -10px rgba(58, 58, 56, .55); transition: transform .15s ease, background-color .2s ease;
}
.mcta__btn svg { color: var(--wa); flex: none; }
.mcta__btn:active { transform: scale(.985); }
body.nav-open .mcta { transform: translateY(135%); }

@media (max-width: 720px) {
  /* Ritmo más compacto y digerible */
  :root { --section-y: clamp(2.6rem, 9vw, 3.8rem); }
  .section__head { margin-bottom: 1.7rem; }
  h2 { font-size: clamp(1.72rem, 7.4vw, 2.3rem); }
  .section__lead { font-size: 1rem; margin-top: .7rem; }

  /* Barra inferior visible; flotante oculto */
  .mcta { display: block; }
  .wa-float { display: none; }
  .site-footer__legal { padding-bottom: calc(2rem + 70px + env(safe-area-inset-bottom, 0px)); }

  /* Hero: CTAs full-width, apilados; foto más compacta para que
     el título y el CTA entren en la primera pantalla */
  .hero__cta { flex-direction: column; align-items: stretch; gap: .7rem; }
  .hero__cta .btn { width: 100%; }
  .hero { padding-top: 1.5rem; }
  .hero__media { max-width: 320px; }
  .hero__art { aspect-ratio: 1 / 1; }
  .hero__figure::before { top: 46%; }

  /* Stats en 2×2 (sin divisores) */
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 1.4rem .6rem; }
  .stat:not(:last-child)::after { display: none; }

  /* Galería: carrusel horizontal con scroll-snap (un tema + peek) */
  .carousels {
    display: flex; gap: .85rem; overflow-x: auto; overflow-y: visible;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; padding-bottom: .5rem;
    margin-inline: calc(var(--pad-x) * -1); padding-inline: var(--pad-x);
    scroll-padding-inline: var(--pad-x);
  }
  .carousels::-webkit-scrollbar { display: none; }
  .carousel { flex: 0 0 86%; scroll-snap-align: start; scroll-snap-stop: always; }
  .carousel__caps { min-height: 108px; padding: 1rem 1.15rem .4rem; }
  .gallery__note { margin-top: 1.4rem; font-size: .9rem; }

  /* Tarjetas “Elige tu camino”: un poco más compactas */
  .path-card { padding: 1.5rem 1.4rem; }
}

/* Pantallas muy chicas: afinar tipografía del hero */
@media (max-width: 380px) {
  .hero__title { font-size: clamp(1.95rem, 9vw, 2.4rem); }
  .hero__subtitle { font-size: 1.08rem; }
}

/* =========================================================
   Animaciones 2ª etapa (progressive enhancement)
   ========================================================= */

/* 1) Blur-up (LQIP): el placeholder diminuto se ve de inmediato como
   fondo del <img>; mientras carga, un blur lo suaviza y al terminar
   se desvanece revelando la foto nítida. Sin JS no se aplica nada. */
img[data-lqip] { transition: filter .5s ease; }
img[data-lqip].lqip-loading { filter: blur(12px); clip-path: inset(0); }

/* 2) Reveals nativos ligados al scroll (CSS scroll-driven animations).
   Donde hay soporte, las entradas las dirige el propio scroll sin JS.
   Los carruseles quedan fuera (viven en un scroller horizontal en móvil). */
@supports (animation-timeline: view()) {
  .js .reveal:not(.carousel) {
    opacity: 1; transform: none; transition: none;
    animation: rv-up ease-out both;
    animation-timeline: view();
    animation-range: entry 0% entry 55%;
  }
  .js .reveal--left:not(.carousel) { animation-name: rv-left; }
  .js .reveal--right:not(.carousel) { animation-name: rv-right; }
  .js .reveal--scale:not(.carousel) { animation-name: rv-scale; }
  @keyframes rv-up    { from { opacity: 0; transform: translateY(22px); }  to { opacity: 1; transform: none; } }
  @keyframes rv-left  { from { opacity: 0; transform: translateX(-34px); } to { opacity: 1; transform: none; } }
  @keyframes rv-right { from { opacity: 0; transform: translateX(34px); }  to { opacity: 1; transform: none; } }
  @keyframes rv-scale { from { opacity: 0; transform: scale(.92); }        to { opacity: 1; transform: none; } }
}

/* 3) Snap del carrusel con resorte: curva linear() con leve sobre-impulso.
   Se declara después de la transición base — si el navegador no entiende
   linear(), descarta esta línea y conserva la anterior. */
.carousel__track {
  transition-duration: .62s;
  transition-timing-function: linear(0, 0.36 5.8%, 0.63 11.7%, 0.855 18.4%, 0.98 25%, 1.05 32.5%, 1.07 40%, 1.03 55%, 0.995 70%, 1);
}

/* 4) Física del globo del hero: el JS aplica una rotación con resorte
   amortiguado sobre la figura (la foto conserva su flotación CSS). */
.hero__figure { transform-origin: 50% 62%; will-change: transform; }

/* 5) View Transitions entre secciones (cross-fade al navegar por anclas) */
::view-transition-old(root), ::view-transition-new(root) { animation-duration: .32s; }

/* 6) Ken Burns sutil: la foto activa de cada carrusel hace un zoom lento */
.carousel__img { transform-origin: 50% 42%; }
.carousel__img[aria-hidden="false"] { animation: kenburns 8s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.055); } }

@media (prefers-reduced-motion: reduce) {
  img[data-lqip].lqip-loading { filter: none; }
  .js .reveal:not(.carousel) { animation: none !important; opacity: 1 !important; transform: none !important; }
  .carousel__track { transition: none; }
  .hero__figure { will-change: auto; }
  .carousel__img[aria-hidden="false"] { animation: none; }
}
