/* ============================================================
   ABUELA MACHA — Salsa Macha Artesanal
   ============================================================ */

:root {
  --bg: #120806;
  --bg-2: #1c0d08;
  --panel: #211009;
  --cream: #f5e6c8;
  --cream-dim: #d9c8a6;
  --red: #e8301c;
  --red-hot: #ff4a2a;
  --orange: #ff7a1a;
  --yellow: #ffb300;
  --green: #6f9a3a;
  --line: rgba(245, 230, 200, 0.12);
  --font-display: "Anton", Impact, sans-serif;
  --font-script: "Caveat", cursive;
  --font-body: "Space Grotesk", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

::selection { background: var(--red); color: var(--cream); }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* ---------- grain / texture ---------- */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none; z-index: 999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 9s steps(6) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-4%, 3%); }
  40% { transform: translate(3%, -4%); }
  60% { transform: translate(-2%, -3%); }
  80% { transform: translate(4%, 2%); }
  100% { transform: translate(0, 0); }
}

/* ---------- scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px; z-index: 1001;
  background: transparent;
}
.scroll-progress span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--yellow), var(--red-hot), var(--red));
  box-shadow: 0 0 12px rgba(255, 74, 42, 0.8);
}

/* ---------- cursor glow ---------- */
.cursor-glow {
  position: fixed; top: 0; left: 0;
  width: 340px; height: 340px;
  border-radius: 50%;
  pointer-events: none; z-index: 1;
  background: radial-gradient(circle, rgba(232, 48, 28, 0.14), transparent 65%);
  transform: translate(-50%, -50%);
  transition: opacity 0.4s;
  opacity: 0;
}
body:hover .cursor-glow { opacity: 1; }
@media (hover: none) { .cursor-glow { display: none; } }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem clamp(1.2rem, 4vw, 3rem);
  transition: background 0.35s, box-shadow 0.35s, padding 0.35s;
}
.nav::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: rgba(18, 8, 6, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.nav.scrolled {
  box-shadow: 0 1px 0 var(--line);
  padding-block: 0.6rem;
}
.nav.scrolled::before { opacity: 1; }
.nav-brand { display: flex; align-items: center; gap: 0.7rem; }
.nav-logo {
  width: 44px; height: 44px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  border: 2px solid var(--red);
  box-shadow: 0 0 18px rgba(232, 48, 28, 0.45);
}
.nav-logo img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); }
.nav-name {
  font-family: var(--font-script);
  font-size: 1.7rem; font-weight: 700;
  line-height: 1; white-space: nowrap;
}
.nav-name em { color: var(--red-hot); font-style: normal; }

.nav-links {
  display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.2rem);
}
.nav-links a {
  font-size: 0.92rem; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--cream-dim);
  position: relative;
  transition: color 0.25s;
}
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--red-hot);
  transition: width 0.3s;
}
.nav-links a:not(.nav-cta):hover { color: var(--cream); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--red); color: var(--cream) !important;
  padding: 0.55rem 1.3rem; border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(232, 48, 28, 0.4);
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}
.nav-cta:hover {
  background: var(--red-hot);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(255, 74, 42, 0.5);
}

.nav-burger {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 42px; height: 42px;
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  z-index: 1002;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--cream); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(6rem, 12vh, 9rem) clamp(1.2rem, 4vw, 3rem) 4rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 75% 20%, rgba(232, 48, 28, 0.16), transparent 60%),
    radial-gradient(ellipse 60% 50% at 15% 85%, rgba(255, 179, 0, 0.08), transparent 60%),
    var(--bg);
}
.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
}
.hero-glow--a {
  width: 480px; height: 480px; right: -120px; top: -80px;
  background: rgba(232, 48, 28, 0.22);
  animation: glowPulse 6s ease-in-out infinite;
}
.hero-glow--b {
  width: 360px; height: 360px; left: -120px; bottom: -60px;
  background: rgba(255, 122, 26, 0.14);
  animation: glowPulse 7s ease-in-out 1.5s infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.12); }
}

.hero-embers { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.ember {
  position: absolute; bottom: -40px;
  animation: emberRise linear forwards;
  will-change: transform, opacity;
}
@keyframes emberRise {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  8% { opacity: 1; }
  100% { transform: translateY(-110vh) rotate(340deg); opacity: 0; }
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1240px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  align-items: center; gap: clamp(2rem, 5vw, 4rem);
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: 1px solid var(--line);
  background: rgba(245, 230, 200, 0.05);
  padding: 0.45rem 1.1rem; border-radius: 999px;
  font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 1.6rem;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red-hot);
  box-shadow: 0 0 0 0 rgba(255, 74, 42, 0.7);
  animation: pulseDot 1.8s infinite;
}
@keyframes pulseDot {
  70% { box-shadow: 0 0 0 10px rgba(255, 74, 42, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 74, 42, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8.5vw, 7.2rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.hero-title .line { display: block; }
.hero-title em {
  font-style: normal;
  -webkit-text-stroke: 2px var(--cream);
  color: transparent;
}
.line--fire {
  background: linear-gradient(100deg, var(--yellow) 0%, var(--orange) 35%, var(--red-hot) 70%, var(--red) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 24px rgba(255, 74, 42, 0.35));
}

.hero-sub {
  max-width: 46ch;
  color: var(--cream-dim);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 300;
  margin-bottom: 2rem;
}
.hero-sub strong { color: var(--cream); font-weight: 600; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.6rem; }

.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-weight: 700; font-size: 1rem;
  letter-spacing: 0.03em;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s, border-color 0.25s;
  will-change: transform;
}
.btn--fire {
  background: linear-gradient(120deg, var(--red) 0%, var(--red-hot) 100%);
  color: var(--cream);
  box-shadow: 0 10px 30px rgba(232, 48, 28, 0.45);
}
.btn--fire:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(255, 74, 42, 0.55);
}
.btn--ghost {
  border: 1.5px solid var(--line);
  color: var(--cream);
  background: rgba(245, 230, 200, 0.04);
}
.btn--ghost:hover {
  border-color: var(--cream-dim);
  transform: translateY(-3px);
}
.btn--wa {
  background: #25d366;
  color: #062b15;
  font-size: 1.1rem;
  padding: 1.1rem 2.4rem;
  box-shadow: 0 12px 34px rgba(37, 211, 102, 0.4);
}
.btn--wa:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.55);
}

.hero-stats { display: flex; gap: clamp(1.5rem, 4vw, 3rem); }
.stat strong {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--red-hot);
  display: block; line-height: 1;
}
.stat span {
  font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--cream-dim);
}

/* hero visual */
.hero-visual {
  position: relative;
  display: grid; place-items: center;
  min-height: 340px;
}
.hero-ring {
  position: absolute;
  width: min(34vw, 460px); aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 179, 0, 0.35);
  animation: spin 40s linear infinite;
}
.hero-ring::after {
  content: "";
  position: absolute; inset: -24px;
  border-radius: 50%;
  border: 1px solid var(--line);
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-logo-wrap {
  width: min(30vw, 400px); aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 0 0 6px var(--bg),
    0 0 60px rgba(232, 48, 28, 0.5),
    0 30px 80px rgba(0, 0, 0, 0.6);
  animation: heroFloat 6s ease-in-out infinite;
}
.hero-logo { width: 100%; height: 100%; object-fit: cover; transform: scale(1.07); }
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

.hero-chip {
  position: absolute;
  background: rgba(33, 16, 9, 0.9);
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
  padding: 0.55rem 1.05rem; border-radius: 999px;
  font-size: 0.85rem; font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  white-space: nowrap;
}
.hero-chip--1 { top: 8%; left: -4%; }
.hero-chip--2 { bottom: 22%; right: -6%; }
.hero-chip--3 { bottom: 2%; left: 8%; }
.float-a { animation: chipFloat 5s ease-in-out infinite; }
.float-b { animation: chipFloat 6.5s ease-in-out 0.8s infinite; }
.float-c { animation: chipFloat 5.6s ease-in-out 1.6s infinite; }
@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}



/* ---------- marquee ---------- */
.marquee {
  position: relative;
  background: var(--red);
  padding: 0.85rem 0;
  overflow: hidden;
  transform: rotate(-1.2deg) scale(1.02);
  box-shadow: 0 12px 40px rgba(232, 48, 28, 0.35);
  z-index: 5;
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: 0.06em;
  color: var(--cream);
  white-space: nowrap;
  padding-right: 0.5rem;
}
.marquee-track i { font-style: normal; margin: 0 0.7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- shared section styles ---------- */
section { position: relative; }

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 1.2rem;
}
.kicker {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  color: var(--red-hot);
  margin-bottom: 0.4rem;
}
.kicker--light { color: var(--yellow); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.section-title span {
  background: linear-gradient(100deg, var(--yellow), var(--red-hot));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.section-sub {
  color: var(--cream-dim);
  font-weight: 300;
  margin-top: 0.9rem;
  font-size: clamp(0.98rem, 1.3vw, 1.1rem);
}

/* ---------- flavors ---------- */
.flavors {
  padding: clamp(5rem, 11vh, 8rem) clamp(1.2rem, 4vw, 3rem);
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(232, 48, 28, 0.07), transparent 60%),
    var(--bg);
}
.flavor-grid {
  max-width: 1240px;
  margin: 3.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
}

.flavor-card {
  position: relative;
  background: linear-gradient(160deg, rgba(245, 230, 200, 0.055), rgba(245, 230, 200, 0.015));
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 2.4rem 1.6rem 1.8rem;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s, box-shadow 0.4s;
  transform-style: preserve-3d;
}
.flavor-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% -10%, var(--c1), transparent 62%);
  opacity: 0.16;
  transition: opacity 0.4s;
  pointer-events: none;
}
.flavor-card:hover {
  border-color: var(--c1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px color-mix(in srgb, var(--c1) 28%, transparent);
}
.flavor-card:hover::before { opacity: 0.34; }
.flavor-card--danger { border-color: rgba(255, 22, 0, 0.35); }

/* CSS jar */
.jar {
  position: relative;
  width: 148px;
  margin-bottom: 1.4rem;
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.55));
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.flavor-card:hover .jar { transform: translateY(-8px) rotate(-3deg) scale(1.04); }
.jar-lid {
  width: 74px; height: 22px;
  margin: 0 auto;
  background: linear-gradient(180deg, #3a2515, #241309);
  border-radius: 6px 6px 3px 3px;
  border: 1px solid rgba(245, 230, 200, 0.18);
  position: relative; z-index: 2;
}
.jar-lid::after {
  content: "";
  position: absolute; left: 6px; right: 6px; top: 4px;
  height: 3px; border-radius: 3px;
  background: rgba(245, 230, 200, 0.16);
}
.jar-body {
  position: relative;
  margin-top: -4px;
  height: 168px;
  border-radius: 26px 26px 34px 34px / 22px 22px 40px 40px;
  border: 2px solid rgba(245, 230, 200, 0.22);
  overflow: hidden;
  /* chunky salsa texture */
  background:
    radial-gradient(circle 7px at 22% 30%, rgba(0,0,0,0.35) 98%, transparent),
    radial-gradient(circle 5px at 68% 22%, rgba(0,0,0,0.3) 98%, transparent),
    radial-gradient(circle 6px at 82% 58%, rgba(0,0,0,0.32) 98%, transparent),
    radial-gradient(circle 4px at 38% 66%, rgba(0,0,0,0.3) 98%, transparent),
    radial-gradient(circle 6px at 55% 82%, rgba(0,0,0,0.34) 98%, transparent),
    radial-gradient(circle 5px at 16% 82%, rgba(0,0,0,0.3) 98%, transparent),
    radial-gradient(circle 4px at 45% 14%, rgba(0,0,0,0.28) 98%, transparent),
    radial-gradient(circle 5px at 88% 86%, rgba(0,0,0,0.3) 98%, transparent),
    radial-gradient(circle 4px at 12% 52%, rgba(255,255,255,0.14) 98%, transparent),
    radial-gradient(circle 3px at 60% 45%, rgba(255,255,255,0.12) 98%, transparent),
    radial-gradient(circle 3px at 30% 90%, rgba(255,255,255,0.12) 98%, transparent),
    linear-gradient(165deg, var(--c1), var(--c2));
}
.jar-body::before {
  /* glass shine */
  content: "";
  position: absolute; top: 6px; bottom: 10px; left: 9px;
  width: 16px; border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.35), rgba(255,255,255,0.03));
}
.jar-label {
  position: absolute;
  top: 50%; left: 50%;
  width: 92px; height: 92px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(18, 8, 6, 0.55);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.flavor-emoji { font-size: 1.9rem; }
.flavor-info h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0.35rem 0 0.5rem;
}
.flavor-info p {
  color: var(--cream-dim);
  font-size: 0.93rem;
  font-weight: 300;
  min-height: 3.2em;
}

.heat {
  display: flex; gap: 5px; justify-content: center;
  margin-top: 1rem;
}
.heat i {
  width: 26px; height: 8px;
  border-radius: 6px;
  background: rgba(245, 230, 200, 0.14);
}
.heat i.on {
  background: var(--chip);
  box-shadow: 0 0 10px color-mix(in srgb, var(--chip) 60%, transparent);
}

/* ---------- showcase (foto real) ---------- */
.showcase {
  padding: clamp(3rem, 8vh, 6rem) clamp(1.2rem, 4vw, 3rem);
  background: var(--bg);
}
.showcase-media {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  height: clamp(380px, 72vh, 620px);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55), 0 0 60px rgba(232, 48, 28, 0.08);
}
.showcase-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 62%;
  transform: scale(1.18);
  will-change: transform;
}
.showcase-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 8, 6, 0.45), transparent 32%, transparent 52%, rgba(18, 8, 6, 0.88)),
    linear-gradient(90deg, rgba(18, 8, 6, 0.35), transparent 55%);
}
.showcase-caption {
  position: absolute;
  left: clamp(1.4rem, 4vw, 3rem);
  bottom: clamp(1.4rem, 4vw, 2.8rem);
  max-width: 560px;
}
.showcase-caption .kicker { margin-bottom: 0.2rem; }
.showcase-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.6vw, 3.4rem);
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.65);
}
.showcase-title span {
  background: linear-gradient(100deg, var(--yellow), var(--red-hot));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.showcase-sub {
  color: var(--cream-dim);
  font-weight: 300;
  margin-top: 0.7rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.8);
}
.showcase-stamp {
  position: absolute;
  top: clamp(1.2rem, 3vw, 2rem);
  right: clamp(1.2rem, 3vw, 2rem);
  width: 104px; height: 104px;
  border-radius: 50%;
  background: var(--red);
  color: var(--cream);
  font-family: var(--font-script);
  font-size: 1.3rem; font-weight: 700;
  display: grid; place-items: center;
  text-align: center; line-height: 1.05;
  transform: rotate(8deg);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5);
  animation: stampFloat 6s ease-in-out infinite;
}
@keyframes stampFloat {
  0%, 100% { transform: rotate(var(--rot, 8deg)) translateY(0); }
  50% { transform: rotate(var(--rot, 8deg)) translateY(-8px); }
}

/* ---------- heat lab ---------- */
.heatlab {
  padding: clamp(5rem, 11vh, 8rem) clamp(1.2rem, 4vw, 3rem);
  background:
    radial-gradient(ellipse 60% 60% at 50% 100%, rgba(255, 122, 26, 0.1), transparent 65%),
    var(--bg-2);
  border-block: 1px solid var(--line);
}
.heatlab-panel {
  max-width: 640px;
  margin: 3rem auto 0;
  background: rgba(18, 8, 6, 0.6);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(1.8rem, 4vw, 3rem);
  text-align: center;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}
.heatlab-face {
  font-size: clamp(3.4rem, 7vw, 5rem);
  line-height: 1;
  margin-bottom: 1.4rem;
  transition: transform 0.3s;
  display: inline-block;
}
.heatlab-face.shake { animation: faceShake 0.45s; }
@keyframes faceShake {
  0%, 100% { transform: translateX(0) scale(1); }
  25% { transform: translateX(-8px) scale(1.15) rotate(-8deg); }
  50% { transform: translateX(8px) scale(1.15) rotate(8deg); }
  75% { transform: translateX(-5px) scale(1.1); }
}

#heatRange {
  -webkit-appearance: none;
  appearance: none;
  width: 100%; height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow), var(--orange), var(--red), #5c0404);
  outline: none;
  cursor: pointer;
}
#heatRange::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--cream);
  border: 5px solid var(--red);
  box-shadow: 0 0 0 5px rgba(232, 48, 28, 0.25), 0 6px 18px rgba(0, 0, 0, 0.5);
  cursor: grab;
  transition: transform 0.2s;
}
#heatRange::-webkit-slider-thumb:hover { transform: scale(1.12); }
#heatRange::-moz-range-thumb {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--cream);
  border: 5px solid var(--red);
  box-shadow: 0 0 0 5px rgba(232, 48, 28, 0.25);
  cursor: grab;
}
.heatlab-ticks {
  display: flex; justify-content: space-between;
  font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--cream-dim);
  margin: 0.9rem 0 1.8rem;
}
.heatlab-level {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  text-transform: uppercase;
  color: var(--red-hot);
  line-height: 1;
  transition: opacity 0.2s;
}
.heatlab-rec { margin-top: 0.6rem; color: var(--cream-dim); font-size: 1.05rem; }
.heatlab-rec strong { color: var(--cream); }

/* ---------- uses ---------- */
.uses {
  padding: clamp(5rem, 11vh, 8rem) clamp(1.2rem, 4vw, 3rem);
  background: var(--bg);
}
.uses-grid {
  max-width: 1100px;
  margin: 3.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.use-card {
  background: rgba(245, 230, 200, 0.04);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 2rem 1.5rem;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.3s, border-color 0.3s;
}
.use-card:hover {
  transform: translateY(-8px);
  background: rgba(232, 48, 28, 0.09);
  border-color: rgba(232, 48, 28, 0.5);
}
.use-card span { font-size: 2.6rem; display: block; margin-bottom: 0.9rem; }
.use-card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
}
.use-card p { color: var(--cream-dim); font-size: 0.92rem; font-weight: 300; }

/* ---------- story ---------- */
.story {
  padding: clamp(5rem, 11vh, 8rem) clamp(1.2rem, 4vw, 3rem);
  background:
    radial-gradient(ellipse 55% 60% at 12% 50%, rgba(111, 154, 58, 0.08), transparent 60%),
    var(--bg-2);
  border-block: 1px solid var(--line);
}
.story-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
}
.story-visual { position: relative; display: grid; place-items: center; }
.story-frame {
  width: min(100%, 380px); aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--red);
  box-shadow: 0 0 0 14px rgba(232, 48, 28, 0.08), 0 30px 70px rgba(0, 0, 0, 0.55);
}
.story-frame img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.07); }
.story-stamp {
  position: absolute; right: 4%; bottom: 6%;
  background: var(--red);
  color: var(--cream);
  font-family: var(--font-script);
  font-size: 1.45rem; font-weight: 700;
  text-align: center; line-height: 1.1;
  padding: 1rem 1.2rem;
  border-radius: 50%;
  transform: rotate(-8deg);
  --rot: -8deg;
  box-shadow: 0 12px 30px rgba(232, 48, 28, 0.5);
  animation: stampFloat 6.5s ease-in-out 0.8s infinite;
}
.story-copy .kicker { text-align: left; }
.story-copy .section-title { text-align: left; margin-bottom: 1.4rem; }
.story-copy p { color: var(--cream-dim); font-weight: 300; margin-bottom: 1.1rem; }
.story-copy p em { color: var(--yellow); font-family: var(--font-script); font-size: 1.25em; font-style: normal; }
.story-copy p strong { color: var(--cream); }
.story-list {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.4rem;
  margin-top: 1.4rem;
}
.story-list li {
  font-size: 0.95rem;
  color: var(--cream);
}
.story-list li::first-letter { color: var(--green); font-weight: 700; }

/* ---------- quotes ---------- */
.quotes {
  padding: clamp(5rem, 11vh, 8rem) clamp(1.2rem, 4vw, 3rem);
}
.quotes-grid {
  max-width: 1180px; margin: 3.5rem auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.quote {
  background: rgba(245, 230, 200, 0.04);
  border: 1px solid var(--line);
  border-left: 4px solid var(--red-hot);
  border-radius: 0 20px 20px 0;
  padding: 1.8rem;
  position: relative;
  transition: transform 0.35s, background 0.3s;
}
.quote:hover { transform: translateY(-6px); background: rgba(245, 230, 200, 0.07); }
.quote::before {
  content: "“";
  position: absolute; top: -0.4rem; right: 1rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(232, 48, 28, 0.25);
  line-height: 1;
}
.quote p { font-size: 1rem; font-weight: 300; font-style: italic; margin-bottom: 1.2rem; }
.quote footer { font-weight: 700; font-size: 0.9rem; }
.quote footer span { color: var(--cream-dim); font-weight: 400; }

/* ---------- final CTA ---------- */
.cta {
  position: relative;
  padding: clamp(6rem, 14vh, 10rem) 1.2rem;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 75% 90% at 50% 110%, rgba(232, 48, 28, 0.4), transparent 65%),
    radial-gradient(ellipse 50% 60% at 50% -10%, rgba(255, 179, 0, 0.12), transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--line);
}
.cta-inner { position: relative; z-index: 2; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.98;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.cta-title span {
  background: linear-gradient(100deg, var(--yellow), var(--orange), var(--red-hot));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  filter: drop-shadow(0 6px 30px rgba(255, 74, 42, 0.4));
}
.cta-sub { color: var(--cream-dim); font-weight: 300; font-size: 1.12rem; margin-bottom: 2.2rem; }
.cta-phone { margin-top: 1.4rem; color: var(--cream-dim); font-size: 0.98rem; }
.cta-phone a { color: var(--yellow); font-weight: 700; letter-spacing: 0.04em; }
.cta-phone a:hover { text-decoration: underline; }

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 2.6rem clamp(1.2rem, 4vw, 3rem) 1.6rem;
  background: var(--bg);
}
.footer-inner {
  max-width: 1180px; margin: 0 auto 1.8rem;
  display: flex; flex-wrap: wrap; gap: 1.6rem;
  align-items: center; justify-content: space-between;
}
.footer-brand { display: flex; align-items: center; gap: 0.9rem; }
.footer-brand strong { font-family: var(--font-script); font-size: 1.5rem; font-weight: 700; }
.footer-brand p { color: var(--cream-dim); font-size: 0.85rem; }
.footer-links { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer-links a {
  color: var(--cream-dim); font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--red-hot); }
.footer-legal {
  text-align: center;
  color: rgba(217, 200, 166, 0.5);
  font-size: 0.82rem;
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
}

/* ---------- whatsapp float ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px;
  z-index: 998;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  transition: transform 0.3s;
  animation: waPulse 2.4s infinite;
}
.wa-float:hover { transform: scale(1.12) rotate(6deg); }
@keyframes waPulse {
  0% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  60% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.18s; }
.d3 { transition-delay: 0.28s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.52s; }
.d6 { transition-delay: 0.64s; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 2; }
  .hero-visual { order: 1; min-height: 0; }
  .hero-logo-wrap { width: min(56vw, 300px); }
  .hero-ring { width: min(64vw, 340px); }
  .hero-sub { margin-inline: auto; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-chip--1 { left: 0; }
  .hero-chip--2 { right: 0; }
  .flavor-grid { grid-template-columns: repeat(2, 1fr); }
  .uses-grid { grid-template-columns: repeat(2, 1fr); }
  .quotes-grid { grid-template-columns: 1fr; max-width: 640px; }
  .story-inner { grid-template-columns: 1fr; }
  .story-visual { order: 2; }
  .story-copy .kicker, .story-copy .section-title { text-align: center; }
  .story-copy { text-align: center; }
  .story-list { text-align: left; max-width: 480px; margin-inline: auto; }
}

@media (max-width: 720px) {
  .nav-burger { display: flex; }
  .nav-links {
    position: fixed; inset: 0;
    background: rgba(18, 8, 6, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column; justify-content: center;
    gap: 2rem;
    transform: translateY(-100%);
    transition: transform 0.45s cubic-bezier(0.7, 0, 0.3, 1);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 1.5rem; }
  .nav-cta { font-size: 1.2rem !important; }
  .nav-name { font-size: 1.4rem; }
}

@media (max-width: 560px) {
  .flavor-grid { grid-template-columns: 1fr; }
  .uses-grid { grid-template-columns: 1fr; }
  .story-list { grid-template-columns: 1fr; }
  .hero-chip { display: none; }
  .wa-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
  html { scroll-behavior: auto; }
}
