/* ============================================================
   Pastelería Norka Ruiz — "Dulce Pop" theme
   A fresh, modern, friendly direction. Self-contained.
   Palette: teal · coral · honey gold (the brand's vibrant set)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,600;12..96,700;12..96,800&family=Hanken+Grotesk:wght@400;500;600;700;800&display=swap');

:root {
  /* core palette */
  --ink:        #2A211C;
  --ink-soft:   #5C4A3F;
  --ink-faint:  #8C7868;

  --paper:      #FFFCF7;   /* page background — warm white */
  --cream:      #FBF5EC;
  --cream-deep: #F4EADB;
  --white:      #FFFFFF;

  --teal:       #0E7A76;
  --teal-deep:  #0A5754;
  --teal-mid:   #16958F;
  --teal-soft:  #C9ECEA;
  --teal-tint:  #E8F5F3;

  --coral:      #EE7A85;
  --coral-deep: #D9596A;
  --coral-soft: #FBD6DA;
  --coral-tint: #FDEDEF;

  --gold:       #D9A441;
  --gold-deep:  #B07F22;
  --gold-soft:  #F6E4BB;
  --gold-tint:  #FBF2DA;

  --green:      #7FA862;
  --green-deep: #587E40;
  --green-soft: #DEE9CC;

  --wa:         #25D366;
  --wa-deep:    #128C7E;

  /* type */
  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --body:    "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  /* radii — generous & rounded */
  --r-sm:  14px;
  --r-md:  22px;
  --r-lg:  32px;
  --r-xl:  44px;
  --r-2xl: 60px;
  --r-pill: 999px;

  /* shadows — soft, warm */
  --sh-sm: 0 2px 10px rgba(42, 33, 28, 0.06);
  --sh-md: 0 14px 34px rgba(42, 33, 28, 0.10);
  --sh-lg: 0 28px 60px rgba(42, 33, 28, 0.16);
  --sh-coral: 0 16px 34px rgba(217, 89, 106, 0.34);
  --sh-teal:  0 16px 34px rgba(14, 122, 118, 0.30);
  --sh-wa:    0 14px 30px rgba(37, 211, 102, 0.40);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --maxw: 1200px;
}

* { box-sizing: border-box; }

html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--body);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 22px;
  border-radius: var(--r-pill);
  background: var(--coral);
  box-shadow: 0 0 0 5px var(--coral-tint);
}
.eyebrow--coral { color: var(--coral-deep); }
.eyebrow--coral::before { background: var(--teal); box-shadow: 0 0 0 5px var(--teal-tint); }
.eyebrow--gold { color: var(--gold-deep); }
.eyebrow--gold::before { background: var(--gold); box-shadow: 0 0 0 5px var(--gold-tint); }
.eyebrow--green { color: var(--green-deep); }
.eyebrow--green::before { background: var(--green); box-shadow: 0 0 0 5px var(--green-soft); }
.eyebrow--cream { color: var(--cream); }
.eyebrow--cream::before { background: var(--coral); box-shadow: 0 0 0 5px rgba(255,255,255,0.18); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-weight: 800;
  font-size: 15.5px;
  line-height: 1;
  padding: 16px 26px;
  border: none;
  border-radius: var(--r-pill);
  color: var(--white);
  transition: transform 0.25s var(--bounce), box-shadow 0.25s var(--ease), background 0.2s var(--ease);
}
.btn svg { width: 19px; height: 19px; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn--wa    { background: var(--wa); box-shadow: var(--sh-wa); }
.btn--wa:hover { background: var(--wa-deep); }
.btn--teal  { background: var(--teal); box-shadow: var(--sh-teal); }
.btn--teal:hover { background: var(--teal-deep); }
.btn--coral { background: var(--coral-deep); box-shadow: var(--sh-coral); }
.btn--coral:hover { background: #C5485A; }
.btn--ink   { background: var(--ink); color: var(--cream); }
.btn--ink:hover { background: #1A140F; }
.btn--ghost {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--sh-sm);
  border: 2px solid rgba(42,33,28,0.08);
}
.btn--ghost:hover { border-color: var(--coral); color: var(--coral-deep); }
.btn--lg { padding: 19px 34px; font-size: 17px; }
.btn--sm { padding: 12px 20px; font-size: 14px; }
.btn--block { width: 100%; justify-content: center; }

/* ============================================================
   Header — floating pill nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  padding: 18px 0;
  transition: padding 0.3s var(--ease);
}
.site-header.scrolled { padding: 10px 0; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(255, 252, 247, 0.82);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1.5px solid rgba(42, 33, 28, 0.06);
  border-radius: var(--r-pill);
  padding: 10px 12px 10px 22px;
  box-shadow: var(--sh-sm);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.scrolled .nav { box-shadow: var(--sh-md); }

.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 52px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto;
}
.nav__links a {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
  padding: 9px 15px;
  border-radius: var(--r-pill);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.nav__links a:hover { background: var(--coral-tint); color: var(--coral-deep); }
.nav__links a.is-active { background: var(--ink); color: var(--cream); }

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

.lang {
  display: inline-flex;
  background: var(--cream-deep);
  border-radius: var(--r-pill);
  padding: 3px;
}
.lang button {
  border: none;
  background: transparent;
  font-weight: 800;
  font-size: 12.5px;
  color: var(--ink-faint);
  padding: 7px 11px;
  border-radius: var(--r-pill);
  transition: all 0.2s var(--ease);
}
.lang button.is-active { background: var(--white); color: var(--ink); box-shadow: var(--sh-sm); }

.nav__burger {
  display: none;
  width: 46px; height: 46px;
  border: none;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--r-pill);
  align-items: center;
  justify-content: center;
}

/* mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(42, 33, 28, 0.45);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.drawer.open { opacity: 1; pointer-events: auto; }
.drawer__panel {
  position: absolute;
  top: 14px; right: 14px; left: 14px;
  background: var(--paper);
  border-radius: var(--r-xl);
  padding: 22px;
  box-shadow: var(--sh-lg);
  transform: translateY(-12px);
  transition: transform 0.35s var(--bounce);
}
.drawer.open .drawer__panel { transform: translateY(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.drawer__head img { height: 46px; }
.drawer__head .lang { margin-left: auto; margin-right: 10px; }
.drawer__close { width: 44px; height: 44px; border: none; background: var(--cream-deep); border-radius: var(--r-pill); font-size: 20px; color: var(--ink); }
.drawer__links { display: flex; flex-direction: column; gap: 4px; }
.drawer__links a { font-family: var(--display); font-weight: 700; font-size: 22px; padding: 12px 14px; border-radius: var(--r-md); }
.drawer__links a:hover { background: var(--coral-tint); }
.drawer__foot { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; padding: 26px 0 40px; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 40px;
  align-items: center;
}
.hero__badgechip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 1.5px solid rgba(42,33,28,0.07);
  box-shadow: var(--sh-sm);
  border-radius: var(--r-pill);
  padding: 8px 16px 8px 10px;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.hero__badgechip .star { color: var(--gold); }
.hero__badgechip b { color: var(--ink); }
.hero__avatars { display: inline-flex; }
.hero__avatars span {
  width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -9px;
  background: var(--coral);
}
.hero__avatars span:first-child { margin-left: 0; background: var(--teal); }
.hero__avatars span:nth-child(3) { background: var(--gold); }

.hero h1 {
  font-size: clamp(2.9rem, 6vw, 5rem);
  margin: 0 0 22px;
}
.hero h1 .pop { color: var(--coral-deep); position: relative; white-space: nowrap; }
.hero h1 .pop svg {
  position: absolute; left: 0; right: 0; bottom: -0.14em; width: 100%; height: 0.34em;
  color: var(--gold);
}
.hero h1 .teal { color: var(--teal); }

.hero__lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 0 30px;
  font-weight: 500;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.hero__stats {
  display: flex;
  gap: 26px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero__stat strong {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 30px;
  color: var(--ink);
  line-height: 1;
}
.hero__stat span { font-size: 13px; font-weight: 600; color: var(--ink-faint); }

/* photo cluster */
.hero__art { position: relative; }
.hero__photo {
  position: relative;
  aspect-ratio: 4 / 4.4;
  border-radius: 48% 48% 46% 46% / 8% 8% 8% 8%;
  border-radius: var(--r-2xl);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--sh-lg);
  border: 8px solid var(--white);
  z-index: 2;
}
.hero__blob {
  position: absolute;
  z-index: 1;
  border-radius: 42% 58% 56% 44% / 50% 44% 56% 50%;
}
.hero__blob--teal { width: 280px; height: 280px; background: var(--teal-soft); top: -34px; right: -28px; }
.hero__blob--gold { width: 180px; height: 180px; background: var(--gold-soft); bottom: -30px; left: -34px; border-radius: 56% 44% 47% 53% / 43% 56% 44% 57%; }

.hero__sticker {
  position: absolute;
  z-index: 3;
  bottom: 26px; left: -22px;
  background: var(--coral-deep);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  box-shadow: var(--sh-coral);
  transform: rotate(-7deg);
  text-align: center;
  border: 4px solid var(--white);
}
.hero__sticker .from { display: block; font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.9; }
.hero__sticker .amt { font-family: var(--display); font-weight: 800; font-size: 27px; line-height: 1.05; }

.hero__tag {
  position: absolute;
  z-index: 3;
  top: 20px; right: -14px;
  background: var(--white);
  color: var(--teal-deep);
  border-radius: var(--r-pill);
  padding: 10px 16px;
  box-shadow: var(--sh-md);
  font-weight: 800;
  font-size: 13.5px;
  transform: rotate(6deg);
  display: inline-flex; align-items: center; gap: 7px;
}

/* floating sprinkles */
.sprinkle { position: absolute; border-radius: var(--r-pill); z-index: 0; }

/* ============================================================
   Marquee strip
   ============================================================ */
.marquee {
  background: var(--gold);
  color: var(--ink);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  transform: rotate(-1.4deg);
  margin: 26px 0;
  width: 104%;
  margin-left: -2%;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  animation: marquee 26s linear infinite;
}
.marquee span {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 22px;
}
.marquee .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--coral-deep); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ============================================================
   Section scaffolding
   ============================================================ */
.section { padding: 80px 0; }
.section__head { max-width: 660px; margin-bottom: 44px; }
.section__head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.3rem);
  margin: 14px 0 14px;
}
.section__head p { font-size: 17.5px; color: var(--ink-soft); margin: 0; font-weight: 500; }

/* ============================================================
   Product lines — bento
   ============================================================ */
.lines {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 230px;
  gap: 18px;
}
.line {
  position: relative;
  grid-column: span 2;
  border-radius: var(--r-lg);
  overflow: hidden;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  box-shadow: var(--sh-sm);
  transition: transform 0.35s var(--bounce), box-shadow 0.35s var(--ease);
  isolation: isolate;
}
.line:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.line__photo {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  transition: transform 0.5s var(--ease);
}
.line:hover .line__photo { transform: scale(1.06); }
.line::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(42,33,28,0) 28%, rgba(42,33,28,0.78) 100%);
}
.line__kicker {
  position: absolute; top: 18px; left: 18px;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  font-weight: 800; font-size: 11.5px;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 7px 13px; border-radius: var(--r-pill);
}
.line__kicker.teal  { background: var(--teal); color: var(--white); }
.line__kicker.coral { background: var(--coral-deep); color: var(--white); }
.line__kicker.gold  { background: var(--gold); color: var(--ink); }
.line__kicker.green { background: var(--green); color: var(--white); }
.line h3 { color: var(--white); font-size: 27px; margin: 0 0 5px; }
.line p { margin: 0; font-size: 14.5px; font-weight: 500; color: rgba(255,255,255,0.92); max-width: 30ch; }
.line__arrow {
  position: absolute; bottom: 24px; right: 24px;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--white); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transform: translateY(8px); opacity: 0;
  transition: all 0.3s var(--ease);
}
.line:hover .line__arrow { transform: translateY(0); opacity: 1; }

/* bento sizing — feature tiles span more */
.line--feature { grid-column: span 3; grid-row: span 1; }
.line--tall { grid-row: span 1; }

/* ============================================================
   Healthy band
   ============================================================ */
.healthy {
  background: var(--green-soft);
  border-radius: var(--r-2xl);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 44px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.healthy__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: var(--white);
  font-weight: 800; font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 8px 15px; border-radius: var(--r-pill); margin-bottom: 18px;
}
.healthy h2 { color: var(--green-deep); font-size: clamp(2rem, 3.6vw, 2.9rem); margin-bottom: 14px; }
.healthy p { font-size: 17px; color: var(--ink-soft); margin: 0 0 22px; font-weight: 500; max-width: 44ch; }
.healthy__tags { display: flex; flex-wrap: wrap; gap: 10px; }
.healthy__tags span {
  background: var(--white); color: var(--green-deep);
  font-weight: 700; font-size: 14px;
  padding: 10px 18px; border-radius: var(--r-pill);
  box-shadow: var(--sh-sm);
}
.healthy__art {
  aspect-ratio: 4/3.4;
  border-radius: var(--r-xl);
  background-size: cover; background-position: center;
  box-shadow: var(--sh-md);
  border: 7px solid var(--white);
}

/* ============================================================
   Steps — how it works
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 28px 30px;
  box-shadow: var(--sh-sm);
  border: 1.5px solid rgba(42,33,28,0.05);
  position: relative;
}
.step__num {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 800; font-size: 23px;
  color: var(--white); margin-bottom: 18px;
}
.step:nth-child(1) .step__num { background: var(--coral-deep); }
.step:nth-child(2) .step__num { background: var(--teal); }
.step:nth-child(3) .step__num { background: var(--gold); color: var(--ink); }
.step h3 { font-size: 21px; margin-bottom: 8px; }
.step p { margin: 0; color: var(--ink-soft); font-size: 15px; font-weight: 500; }
.step__line {
  position: absolute; top: 58px; right: -10px; z-index: 1;
  color: var(--cream-deep);
}

/* ============================================================
   Testimonials
   ============================================================ */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review {
  border-radius: var(--r-lg);
  padding: 30px;
  box-shadow: var(--sh-sm);
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1.5px solid rgba(42,33,28,0.05);
}
.review:nth-child(2) { background: var(--teal); color: var(--white); border: none; }
.review:nth-child(2) .review__name { color: var(--white); }
.review:nth-child(2) .review__role,
.review:nth-child(2) .review__text { color: rgba(255,255,255,0.86); }
.review:nth-child(2) .review__av { background: rgba(255,255,255,0.18); color: var(--white); }
.review__stars { color: var(--gold); font-size: 17px; letter-spacing: 2px; margin-bottom: 14px; }
.review:nth-child(2) .review__stars { color: var(--gold-soft); }
.review__text {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 22px;
  flex: 1;
  letter-spacing: -0.01em;
}
.review__who { display: flex; align-items: center; gap: 12px; }
.review__av {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--coral); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px;
}
.review__name { font-weight: 800; font-size: 14.5px; color: var(--ink); }
.review__role { font-size: 13px; color: var(--ink-faint); }

/* ============================================================
   CTA band
   ============================================================ */
.cta {
  position: relative;
  background: var(--coral-deep);
  border-radius: var(--r-2xl);
  padding: 70px 56px;
  text-align: center;
  overflow: hidden;
  color: var(--white);
}
.cta__blob { position: absolute; border-radius: 50%; z-index: 0; }
.cta h2 { color: var(--white); font-size: clamp(2.2rem, 4.6vw, 3.6rem); margin: 16px auto 16px; max-width: 16ch; position: relative; }
.cta p { position: relative; font-size: 18px; color: rgba(255,255,255,0.92); margin: 0 auto 30px; max-width: 48ch; font-weight: 500; }
.cta__ctas { position: relative; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta .eyebrow { color: var(--white); position: relative; }
.cta .eyebrow::before { background: var(--gold); box-shadow: 0 0 0 5px rgba(255,255,255,0.16); }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--teal-deep);
  color: rgba(255,255,255,0.78);
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
  margin-top: 40px;
  padding: 60px 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1.5px solid rgba(255,255,255,0.14);
}
.footer__brand-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  display: inline-block;
  margin-bottom: 18px;
  box-shadow: var(--sh-md);
}
.footer__brand-card img { height: 64px; width: auto; }
.footer__brand p { margin: 0; font-size: 14.5px; line-height: 1.6; max-width: 30ch; color: rgba(255,255,255,0.72); }
.footer h4 {
  font-family: var(--body); font-weight: 800; font-size: 12.5px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); margin-bottom: 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer ul a { font-size: 14.5px; color: rgba(255,255,255,0.78); transition: color 0.2s var(--ease); }
.footer ul a:hover { color: var(--coral); }
.footer__contact { display: flex; flex-direction: column; gap: 12px; }
.footer__contact .row { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; }
.footer__contact .row svg { color: var(--coral); flex-shrink: 0; margin-top: 2px; }
.footer__contact .row b { color: var(--white); font-weight: 700; }
.footer__bottom {
  padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,0.55);
}
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); transition: background 0.2s var(--ease), transform 0.2s var(--bounce);
}
.footer__social a:hover { background: var(--coral); transform: translateY(-2px); }

/* ============================================================
   WhatsApp FAB + modal
   ============================================================ */
.fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--wa); color: var(--white);
  border: none; box-shadow: var(--sh-wa);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--bounce);
}
.fab:hover { transform: scale(1.08) translateY(-2px); }
.fab svg { width: 32px; height: 32px; }
.fab::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: var(--wa); opacity: 0.45; z-index: -1;
  animation: ping 2.4s var(--ease) infinite;
}
@keyframes ping { to { transform: scale(1.6); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .fab::before { animation: none; } }

.modal-bg {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(42, 33, 28, 0.5);
  backdrop-filter: blur(5px);
  display: none; align-items: center; justify-content: center;
  padding: 22px;
}
.modal-bg.open { display: flex; animation: fade 0.25s var(--ease); }
.modal {
  background: var(--paper);
  border-radius: var(--r-xl);
  padding: 38px 34px;
  max-width: 430px; width: 100%;
  box-shadow: var(--sh-lg);
  text-align: center;
  animation: pop 0.3s var(--bounce);
}
.modal__icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--wa); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.modal__icon svg { width: 36px; height: 36px; }
.modal h3 { font-size: 26px; margin-bottom: 8px; }
.modal p { font-size: 15px; color: var(--ink-soft); margin: 0 0 24px; font-weight: 500; }
.modal__ctas { display: flex; flex-direction: column; gap: 10px; }
.modal__close { background: none; border: none; color: var(--ink-faint); font-weight: 600; font-size: 13.5px; text-decoration: underline; padding: 6px; }
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { transform: scale(0.94); opacity: 0; } }

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal { transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.armed { opacity: 0; transform: translateY(22px); }
.reveal.armed.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal.armed { opacity: 1; transform: none; } }

/* ============================================================
   Nav dropdown (Pasteles ▾)
   ============================================================ */
.nav__item { position: relative; display: flex; align-items: center; }
.nav__item > a { display: inline-flex; align-items: center; gap: 5px; }
.nav__item > a .caret { width: 15px; height: 15px; transition: transform 0.25s var(--ease); }
.nav__item:hover > a { background: var(--coral-tint); color: var(--coral-deep); }
.nav__item:hover > a .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translate(-50%, 8px);
  width: 560px;
  background: var(--paper);
  border: 1.5px solid rgba(42,33,28,0.07);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.28s var(--bounce);
  z-index: 90;
}
.dropdown::before {
  content: ""; position: absolute; top: -18px; left: 0; right: 0; height: 18px;
}
.nav__item:hover .dropdown { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.dropdown__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.dropdown__item {
  display: flex; align-items: center; gap: 13px;
  padding: 11px 13px; border-radius: var(--r-md);
  transition: background 0.18s var(--ease);
}
.dropdown__item:hover { background: var(--cream); }
.dropdown__ico {
  width: 42px; height: 42px; border-radius: 13px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--coral-tint); color: var(--coral-deep);
}
.dropdown__ico svg { width: 21px; height: 21px; }
.dropdown__item:nth-child(4n+1) .dropdown__ico { background: var(--coral-tint); color: var(--coral-deep); }
.dropdown__item:nth-child(4n+2) .dropdown__ico { background: var(--teal-tint); color: var(--teal); }
.dropdown__item:nth-child(4n+3) .dropdown__ico { background: var(--gold-tint); color: var(--gold-deep); }
.dropdown__item:nth-child(4n+4) .dropdown__ico { background: var(--green-soft); color: var(--green-deep); }
.dropdown__tt { font-family: var(--display); font-weight: 700; font-size: 15px; color: var(--ink); line-height: 1.1; }
.dropdown__st { font-size: 12px; color: var(--ink-faint); font-weight: 600; margin-top: 2px; }

.nav__links a.is-active,
.nav__item > a.is-active { background: var(--ink); color: var(--cream); }
.nav__item > a.is-active:hover { background: var(--ink); color: var(--cream); }

/* ============================================================
   Subpage hero
   ============================================================ */
.subhero { position: relative; padding: 30px 0 20px; overflow: hidden; }
.subhero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}
.crumbs { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--ink-faint); margin-bottom: 20px; }
.crumbs a { color: var(--ink-faint); }
.crumbs a:hover { color: var(--coral-deep); }
.crumbs svg { width: 14px; height: 14px; opacity: 0.6; }
.crumbs .cur { color: var(--coral-deep); }

.subhero h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); margin: 0 0 20px; }
.subhero h1 .pop { color: var(--coral-deep); position: relative; white-space: nowrap; }
.subhero h1 .pop svg { position: absolute; left: 0; right: 0; bottom: -0.12em; width: 100%; height: 0.32em; color: var(--gold); }
.subhero__lede { font-size: 18.5px; line-height: 1.55; color: var(--ink-soft); max-width: 500px; margin: 0 0 28px; font-weight: 500; }
.subhero__ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.subhero__points { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 30px; }
.subhero__point { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 14px; color: var(--ink-soft); }
.subhero__point svg { width: 20px; height: 20px; color: var(--teal); flex-shrink: 0; }

.subhero__art { position: relative; }
.subhero__photo {
  position: relative; z-index: 2;
  aspect-ratio: 4/4.2;
  border-radius: var(--r-2xl);
  overflow: hidden;
  background-size: cover; background-position: center;
  box-shadow: var(--sh-lg);
  border: 8px solid var(--white);
}
.subhero__blob { position: absolute; z-index: 1; border-radius: 42% 58% 56% 44% / 50% 44% 56% 50%; }
.subhero__blob--a { width: 260px; height: 260px; background: var(--teal-soft); top: -30px; right: -26px; }
.subhero__blob--b { width: 170px; height: 170px; background: var(--gold-soft); bottom: -26px; left: -30px; border-radius: 56% 44% 47% 53% / 43% 56% 44% 57%; }
.subhero__sticker {
  position: absolute; z-index: 3; bottom: 24px; left: -20px;
  background: var(--coral-deep); color: var(--white);
  border-radius: var(--r-lg); padding: 15px 19px;
  box-shadow: var(--sh-coral); transform: rotate(-7deg);
  text-align: center; border: 4px solid var(--white);
}
.subhero__sticker .from { display: block; font-size: 10.5px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.9; }
.subhero__sticker .amt { font-family: var(--display); font-weight: 800; font-size: 24px; line-height: 1.05; }

/* ============================================================
   Intro prose band
   ============================================================ */
.prose { padding: 60px 0 30px; }
.prose__grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 46px; align-items: start; }
.prose__body p { font-size: 17.5px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 18px; font-weight: 500; }
.prose__body p:first-child { font-size: 20px; color: var(--ink); font-weight: 600; }
.prose__card {
  background: var(--cream); border-radius: var(--r-xl);
  padding: 30px; box-shadow: var(--sh-sm);
  border: 1.5px solid rgba(42,33,28,0.05);
  position: sticky; top: 110px;
}
.prose__card h3 { font-size: 21px; margin-bottom: 8px; }
.prose__card p { font-size: 14.5px; color: var(--ink-soft); margin: 0 0 18px; font-weight: 500; }
.prose__card .list { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 11px; }
.prose__card .list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; font-weight: 600; color: var(--ink); }
.prose__card .list svg { width: 19px; height: 19px; color: var(--green-deep); flex-shrink: 0; margin-top: 1px; }

/* ============================================================
   Feature cards grid
   ============================================================ */
.fcards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.fcards.cols-3 { grid-template-columns: repeat(3, 1fr); }
.fcards.cols-2 { grid-template-columns: repeat(2, 1fr); }
.fcard {
  background: var(--white); border-radius: var(--r-lg);
  padding: 28px 26px; box-shadow: var(--sh-sm);
  border: 1.5px solid rgba(42,33,28,0.05);
  transition: transform 0.3s var(--bounce), box-shadow 0.3s var(--ease);
}
.fcard:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.fcard__ico {
  width: 52px; height: 52px; border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.fcard__ico svg { width: 26px; height: 26px; }
.fcard__ico.coral { background: var(--coral-tint); color: var(--coral-deep); }
.fcard__ico.teal  { background: var(--teal-tint); color: var(--teal); }
.fcard__ico.gold  { background: var(--gold-tint); color: var(--gold-deep); }
.fcard__ico.green { background: var(--green-soft); color: var(--green-deep); }
.fcard__num {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 800; font-size: 20px;
  color: var(--white); margin-bottom: 16px;
}
.fcard__num.coral { background: var(--coral-deep); }
.fcard__num.teal { background: var(--teal); }
.fcard__num.gold { background: var(--gold); color: var(--ink); }
.fcard__num.green { background: var(--green); }
.fcard h3 { font-size: 19px; margin-bottom: 8px; line-height: 1.12; }
.fcard p { margin: 0; font-size: 14.5px; color: var(--ink-soft); font-weight: 500; line-height: 1.55; }

/* ============================================================
   Chips (flavors / styles)
   ============================================================ */
.chipwrap { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  background: var(--white); color: var(--ink);
  font-weight: 700; font-size: 15px;
  padding: 13px 22px; border-radius: var(--r-pill);
  box-shadow: var(--sh-sm);
  border: 1.5px solid rgba(42,33,28,0.06);
  transition: transform 0.25s var(--bounce), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.chip:hover { transform: translateY(-3px); border-color: var(--coral); color: var(--coral-deep); }
.chip__dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; margin-right: 9px; vertical-align: middle; }
.chipnote { margin-top: 22px; font-size: 14.5px; color: var(--ink-faint); font-weight: 600; }

/* ============================================================
   Gallery strip
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery__tile {
  position: relative; aspect-ratio: 1/1;
  border-radius: var(--r-lg); overflow: hidden;
  background-size: cover; background-position: center;
  box-shadow: var(--sh-sm);
}
.gallery__tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(42,33,28,0) 45%, rgba(42,33,28,0.6) 100%); opacity: 0; transition: opacity 0.3s var(--ease); }
.gallery__tile:hover::after { opacity: 1; }
.gallery__cap {
  position: absolute; left: 16px; bottom: 14px; z-index: 2;
  color: var(--white); font-weight: 800; font-size: 14px;
  opacity: 0; transform: translateY(6px); transition: all 0.3s var(--ease);
}
.gallery__tile:hover .gallery__cap { opacity: 1; transform: translateY(0); }
.gallery__tile.tall { grid-row: span 2; aspect-ratio: auto; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--white); border-radius: var(--r-lg);
  border: 1.5px solid rgba(42,33,28,0.06);
  overflow: hidden;
  transition: box-shadow 0.25s var(--ease);
}
.faq__item[open] { box-shadow: var(--sh-md); }
.faq__q {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 26px;
  font-family: var(--display); font-weight: 700; font-size: 18px; color: var(--ink);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q .pm { width: 30px; height: 30px; border-radius: 50%; background: var(--cream-deep); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: background 0.2s var(--ease), transform 0.3s var(--bounce); }
.faq__q .pm svg { width: 16px; height: 16px; color: var(--ink); }
.faq__item[open] .faq__q .pm { background: var(--coral-deep); transform: rotate(135deg); }
.faq__item[open] .faq__q .pm svg { color: var(--white); }
.faq__a { padding: 0 26px 24px; font-size: 15.5px; line-height: 1.65; color: var(--ink-soft); font-weight: 500; }

/* ============================================================
   Cross-nav — other lines
   ============================================================ */
.crossnav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.crossnav__card {
  display: flex; align-items: center; gap: 14px;
  background: var(--white); border-radius: var(--r-lg);
  padding: 18px 20px; box-shadow: var(--sh-sm);
  border: 1.5px solid rgba(42,33,28,0.05);
  transition: transform 0.3s var(--bounce), box-shadow 0.3s var(--ease);
}
.crossnav__card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.crossnav__ico { width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.crossnav__ico svg { width: 23px; height: 23px; }
.crossnav__card:nth-child(6n+1) .crossnav__ico { background: var(--coral-tint); color: var(--coral-deep); }
.crossnav__card:nth-child(6n+2) .crossnav__ico { background: var(--teal-tint); color: var(--teal); }
.crossnav__card:nth-child(6n+3) .crossnav__ico { background: var(--gold-tint); color: var(--gold-deep); }
.crossnav__card:nth-child(6n+4) .crossnav__ico { background: var(--green-soft); color: var(--green-deep); }
.crossnav__card:nth-child(6n+5) .crossnav__ico { background: var(--teal-tint); color: var(--teal); }
.crossnav__card:nth-child(6n+6) .crossnav__ico { background: var(--coral-tint); color: var(--coral-deep); }
.crossnav__tt { font-family: var(--display); font-weight: 700; font-size: 16px; color: var(--ink); line-height: 1.1; }
.crossnav__ar { margin-left: auto; color: var(--ink-faint); flex-shrink: 0; transition: transform 0.25s var(--ease), color 0.2s var(--ease); }
.crossnav__card:hover .crossnav__ar { transform: translateX(4px); color: var(--coral-deep); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1000px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .subhero__grid { grid-template-columns: 1fr; gap: 44px; }
  .subhero__art { max-width: 430px; margin: 0 auto; }
  .prose__grid { grid-template-columns: 1fr; gap: 30px; }
  .prose__card { position: static; }
  .fcards, .fcards.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .crossnav { grid-template-columns: repeat(2, 1fr); }
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__art { max-width: 440px; margin: 0 auto; }
  .lines { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 210px; }
  .line, .line--feature { grid-column: span 1; }
  .healthy { grid-template-columns: 1fr; padding: 36px; }
  .steps { grid-template-columns: 1fr; }
  .step__line { display: none; }
  .reviews { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  .section { padding: 60px 0; }
  .nav__right .lang { display: none; }
  .lines { grid-template-columns: 1fr; }
  .hero__stats { gap: 18px; }
  .cta { padding: 48px 26px; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__sticker { left: 8px; }
  .fcards, .fcards.cols-3, .fcards.cols-2 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .crossnav { grid-template-columns: 1fr; }
  .subhero__sticker { left: 6px; }
}
