/* =========================================================
   NATURINPÓ — Premium emotional sales page
   ========================================================= */

:root {
  /* Brand */
  --wine: #7A1C2F;
  --wine-dark: #5C1322;
  --wine-soft: #A53B4F;
  --green: #1F6B3E;
  --green-dark: #0F4A28;
  --green-soft: #2F8A55;
  --orange: #E89B2B;
  --orange-soft: #F4B95C;

  /* Neutrals (warm) */
  --cream: #FBF6EE;
  --cream-2: #F4ECDD;
  --cream-3: #EFE4D0;
  --paper: #FFFEFB;
  --ink: #2A1F18;
  --ink-2: #4A3A30;
  --ink-mute: #7A6A60;
  --line: rgba(42, 31, 24, 0.10);

  /* System */
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --shadow-sm: 0 2px 8px rgba(42, 31, 24, 0.06);
  --shadow: 0 14px 40px -18px rgba(42, 31, 24, 0.22), 0 2px 6px rgba(42, 31, 24, 0.04);
  --shadow-lg: 0 40px 80px -28px rgba(42, 31, 24, 0.28), 0 6px 14px rgba(42, 31, 24, 0.06);
  --shadow-wine: 0 24px 60px -22px rgba(122, 28, 47, 0.45);
  --shadow-green: 0 24px 60px -22px rgba(31, 107, 62, 0.45);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --easeIn: cubic-bezier(0.6, 0, 0.4, 1);

  --maxw: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* =========================================================
   URGENCY BAR (top sticky)
   ========================================================= */
.urgency-bar {
  background: linear-gradient(90deg, #5C1322 0%, #7A1C2F 40%, #B97612 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  z-index: 51;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  overflow: hidden;
}
.urgency-bar::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 16px);
  pointer-events: none;
}
.ub-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
  z-index: 1;
}
.ub-left { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
.ub-text { line-height: 1.3; }
.ub-text strong { color: #FDE3A3; font-weight: 800; }
.ub-flame { font-size: 18px; animation: flameFlicker 1.4s ease-in-out infinite; }
@keyframes flameFlicker {
  0%, 100% { transform: scale(1) rotate(-3deg); }
  50% { transform: scale(1.1) rotate(3deg); }
}
.ub-timer { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.ub-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.ub-clock { display: flex; align-items: center; gap: 4px; }
.ub-cell {
  background: rgba(0, 0, 0, 0.35);
  border-radius: 6px;
  padding: 4px 8px 3px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  min-width: 38px;
  font-variant-numeric: tabular-nums;
}
.ub-cell b {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  line-height: 1;
  color: #FDE3A3;
}
.ub-cell small {
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 1px;
}
.ub-sep { color: #FDE3A3; font-weight: 700; padding: 0 2px; }
.ub-cta {
  background: #FDE3A3;
  color: var(--wine-dark);
  font-weight: 800;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  transition: all 0.25s var(--ease);
  flex-shrink: 0;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.ub-cta:hover { background: #fff; transform: translateY(-1px); }
@media (max-width: 860px) {
  .ub-inner { flex-wrap: wrap; gap: 10px; padding: 10px 16px; }
  .ub-left { width: 100%; flex: 1 1 100%; font-size: 13px; }
  .ub-timer { flex: 1; }
  .ub-cell { min-width: 32px; padding: 3px 6px; }
  .ub-cell b { font-size: 16px; }
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wine);
  padding: 8px 14px;
  background: rgba(122, 28, 47, 0.07);
  border: 1px solid rgba(122, 28, 47, 0.14);
  border-radius: 999px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--wine);
}

h1, h2, h3, h4 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; letter-spacing: -0.01em; line-height: 1.08; margin: 0; color: var(--wine-dark); }
h2 { font-size: clamp(34px, 4.4vw, 56px); }
h3 { font-size: clamp(22px, 2.4vw, 30px); }
.script { font-family: 'Caveat', cursive; font-weight: 500; color: var(--green-dark); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 246, 238, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.nav-logo { height: 42px; }
.nav-links { display: flex; gap: 28px; font-size: 14px; color: var(--ink-2); font-weight: 500; }
.nav-links a { transition: color 0.2s ease; }
.nav-links a:hover { color: var(--wine); }
.nav-cta {
  background: var(--wine);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.25s var(--ease);
  box-shadow: 0 8px 20px -8px rgba(122, 28, 47, 0.5);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 26px -8px rgba(122, 28, 47, 0.6); background: var(--wine-dark); }

@media (max-width: 860px) {
  .nav-links { display: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 56px 0 80px;
  background:
    radial-gradient(ellipse 1200px 600px at 20% -10%, rgba(31, 107, 62, 0.08), transparent 60%),
    radial-gradient(ellipse 1000px 500px at 100% 0%, rgba(232, 155, 43, 0.10), transparent 60%),
    var(--cream);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-left { max-width: 620px; }

/* Hero pre-headline (rating + stock alert) */
.hero-pre {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.hero-pre-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(122, 28, 47, 0.10), rgba(232, 155, 43, 0.10));
  border: 1px solid rgba(122, 28, 47, 0.20);
  color: var(--wine-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
}
.hero-pre-badge strong { color: var(--wine); font-weight: 800; }
.hero-pre-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
}
.stars-mini { color: var(--orange); letter-spacing: 1px; }

/* Value urgency block */
.value-urgency {
  margin: 32px 0 28px;
  background: linear-gradient(180deg, #fff 0%, #FCF5E8 100%);
  border: 1.5px solid #F0D6A8;
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: 0 14px 36px -18px rgba(232, 155, 43, 0.45), 0 2px 6px rgba(122, 28, 47, 0.04);
  position: relative;
  overflow: hidden;
}
.value-urgency::before {
  content: "";
  position: absolute;
  top: -20px; right: -20px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(232, 155, 43, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.vu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.vu-tag {
  background: var(--wine);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 6px;
}
.vu-stock {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--wine-dark);
  letter-spacing: 0.04em;
}
.vu-stock-bar {
  width: 100px;
  height: 6px;
  background: rgba(122, 28, 47, 0.12);
  border-radius: 999px;
  overflow: hidden;
}
.vu-stock-fill {
  display: block;
  height: 100%;
  width: 72%;
  background: linear-gradient(90deg, var(--orange) 0%, var(--wine) 100%);
  border-radius: 999px;
  animation: stockGrow 1.2s var(--ease) 0.5s both;
}
@keyframes stockGrow {
  from { width: 0; }
  to { width: 72%; }
}
.vu-price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}
.vu-from {
  display: block;
  font-size: 13px;
  color: var(--ink-mute);
  margin-bottom: 2px;
}
.vu-from s { font-weight: 500; }
.vu-now {
  display: inline-flex;
  align-items: flex-start;
  font-family: 'DM Serif Display', serif;
  color: var(--wine-dark);
  line-height: 0.95;
  margin-bottom: 4px;
}
.vu-now sup {
  font-size: 18px;
  margin-top: 6px;
  margin-right: 4px;
}
.vu-now strong { font-size: 54px; font-weight: 400; }
.vu-now small { font-size: 24px; margin-top: 6px; }
.vu-inst {
  display: block;
  font-size: 13.5px;
  color: var(--ink-2);
  font-weight: 600;
}
.vu-inst b { color: var(--green-dark); }
.vu-perks {
  display: grid;
  gap: 8px;
  border-left: 2px dashed rgba(122, 28, 47, 0.20);
  padding-left: 20px;
}
.vu-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}
.vu-perk span { font-size: 16px; }

@media (max-width: 540px) {
  .vu-price-row { grid-template-columns: 1fr; gap: 14px; }
  .vu-perks { border-left: 0; padding-left: 0; border-top: 1px dashed rgba(122, 28, 47, 0.20); padding-top: 14px; }
  .vu-now strong { font-size: 46px; }
}
.hero h1 {
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.02;
  color: var(--wine-dark);
  margin: 18px 0 22px;
}
.hero h1 .hi-em { color: var(--green-dark); font-style: italic; }
.hero h1 .hi-script {
  font-family: 'Caveat', cursive;
  font-weight: 500;
  color: var(--orange);
  font-size: 1.15em;
  display: inline-block;
  transform: translateY(0.05em);
}
.hero-sub {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--ink-2);
  max-width: 540px;
  line-height: 1.55;
}
.hero-benefits {
  display: grid;
  gap: 12px;
  margin: 28px 0 32px;
}
.hb-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15.5px; color: var(--ink-2); font-weight: 500;
}
.hb-item .check {
  flex: 0 0 24px;
  width: 24px; height: 24px;
  background: var(--green); color: #fff;
  border-radius: 999px;
  display: grid; place-items: center;
  font-size: 13px;
  margin-top: 1px;
}
.hb-item b { color: var(--ink); }

.cta-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--green);
  color: #fff;
  padding: 18px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-green);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-primary:hover { transform: translateY(-2px); background: var(--green-dark); box-shadow: 0 32px 70px -22px rgba(31, 107, 62, 0.55); }
.btn-primary .arrow {
  display: inline-grid; place-items: center;
  width: 28px; height: 28px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  transition: transform 0.3s var(--ease);
}
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink-2); font-weight: 600; font-size: 15px;
  padding: 14px 0;
}

.hero-pulse {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--wine); font-weight: 600;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--wine);
  box-shadow: 0 0 0 0 rgba(122, 28, 47, 0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(122, 28, 47, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(122, 28, 47, 0); }
  100% { box-shadow: 0 0 0 0 rgba(122, 28, 47, 0); }
}

/* Hero VSL */
.hero-right {
  position: relative;
}
.vsl-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #0e0e0e;
  aspect-ratio: 16 / 9;
  width: 100%;
  margin: 0 auto;
  cursor: pointer;
  outline: none;
}
.vsl-frame:focus-visible { box-shadow: 0 0 0 4px var(--orange-soft), var(--shadow-lg); }
.vsl-thumb {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02) brightness(0.92);
  transition: transform 0.6s var(--ease);
  z-index: 0;
  pointer-events: none;
}
.vsl-frame:hover .vsl-thumb { transform: scale(1.03); }
.vsl-frame::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.8) 100%);
  z-index: 1;
  pointer-events: none;
}
.vsl-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  z-index: 5;
}
.vsl-badge.tv-badge {
  background: #0e1a2b;
  border: 1px solid rgba(255,255,255,0.15);
}
.vsl-badge {
  position: absolute; top: 22px; left: 22px;
  display: inline-flex; align-items: center; gap: 8px;
  background: #C8201F; color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  padding: 8px 14px; border-radius: 999px;
  text-transform: uppercase;
  z-index: 3;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
.vsl-badge .live-dot {
  width: 8px; height: 8px; background: #fff; border-radius: 999px;
  animation: pulse-white 1.5s infinite;
}
@keyframes pulse-white {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.vsl-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  display: grid; place-items: center;
  z-index: 3;
  transition: transform 0.3s var(--ease);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  pointer-events: none;
}
.vsl-frame:hover .vsl-play { transform: translate(-50%, -50%) scale(1.06); }
.vsl-play::before {
  content: "";
  width: 0; height: 0;
  border-left: 22px solid var(--wine);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
}
.vsl-play:hover { transform: translate(-50%, -50%) scale(1.06); }
.vsl-fallback {
  position: absolute;
  bottom: 22px; right: 22px;
  z-index: 4;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s var(--ease);
  pointer-events: auto;
}
.vsl-fallback:hover { background: #fff; transform: translateY(-2px); }
.vsl-frame.playing .vsl-fallback { display: none; }
.vsl-caption {
  position: absolute; bottom: 22px; left: 22px; right: 22px;
  color: #fff; z-index: 3;
  transition: opacity 0.3s var(--ease);
}
.vsl-frame.playing .vsl-caption,
.vsl-frame.playing .vsl-play,
.vsl-frame.playing .vsl-thumb,
.vsl-frame.playing::before,
.vsl-frame.playing .float-jar { opacity: 0; pointer-events: none; }
.vsl-caption .vsl-title {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 4px;
}
.vsl-caption .vsl-meta { font-size: 12px; opacity: 0.85; font-weight: 500; }

/* Floating jars around VSL */
.float-jar {
  position: absolute;
  width: 110px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.18));
  animation: floaty 6s ease-in-out infinite;
  z-index: 3;
}
.float-jar.j1 { top: -10px; right: -10px; transform: rotate(8deg); animation-delay: 0s; }
.float-jar.j2 { bottom: 40px; left: -36px; transform: rotate(-12deg); animation-delay: 1.5s; width: 130px; }
@keyframes floaty {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

/* Hero product mockup */
.hero-mockup{position:relative;display:flex;flex-direction:column;align-items:center;gap:18px}
.hm-badge{display:inline-flex;align-items:center;gap:8px;background:var(--paper);border:1px solid var(--line);color:var(--green-dark);font-weight:800;font-size:12.5px;letter-spacing:.06em;text-transform:uppercase;padding:8px 16px;border-radius:999px;box-shadow:var(--shadow-sm)}
.hero-jars{position:relative;display:flex;align-items:flex-end;justify-content:center;width:100%;min-height:380px;padding-bottom:18px}
.hm-pedestal{position:absolute;bottom:12px;width:80%;height:26px;background:radial-gradient(ellipse,rgba(42,31,24,.2) 0%,transparent 70%);filter:blur(2px)}
.hero-jars .hj{position:relative;filter:drop-shadow(0 24px 34px rgba(0,0,0,.2));animation:floaty 6s ease-in-out infinite}
.hero-jars .hj1{width:158px;transform:translateX(58px) rotate(-7deg);z-index:1;animation-delay:.5s}
.hero-jars .hj2{width:198px;z-index:3}
.hero-jars .hj3{width:158px;transform:translateX(-58px) rotate(7deg);z-index:2;animation-delay:1s}
.hm-labels{display:flex;gap:10px;flex-wrap:wrap;justify-content:center}
.hml{font-size:12.5px;font-weight:800;padding:6px 14px;border-radius:999px;letter-spacing:.02em}
.hml.g{background:rgba(31,107,62,.12);color:var(--green-dark)}
.hml.w{background:rgba(122,28,47,.12);color:var(--wine)}
.hml.o{background:rgba(232,155,43,.18);color:#9C620E}

/* CTA band inline */
.cta-band{padding:30px 0;background:var(--cream-3);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.cta-band-inner{display:flex;align-items:center;justify-content:space-between;gap:26px;flex-wrap:wrap}
.cb-copy{display:flex;flex-direction:column;gap:4px}
.cb-kicker{font-size:11.5px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:var(--green-dark)}
.cb-copy p{margin:0;font-family:'DM Serif Display',serif;font-size:clamp(19px,2.2vw,26px);color:var(--ink);line-height:1.25}
.cb-copy p b{color:var(--wine);font-weight:400}
@media (max-width: 720px){
  .cta-band{padding:24px 0}
  .cta-band-inner{flex-direction:column;align-items:stretch;gap:16px;text-align:center}
  .cb-copy p{font-size:18px}
}

/* =========================================================
   CHECKOUT / OFERTA
   ========================================================= */
.ck-tabs{display:flex;gap:8px;justify-content:center;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.14);padding:6px;border-radius:999px;width:fit-content;margin:0 auto 34px}
.ck-tab{font-family:'Plus Jakarta Sans',sans-serif;font-weight:800;font-size:14.5px;color:rgba(255,255,255,.72);background:transparent;border:0;padding:12px 26px;border-radius:999px;cursor:pointer;display:inline-flex;align-items:center;gap:9px;transition:all .25s var(--ease);white-space:nowrap}
.ck-tab:hover{color:#fff}
.ck-tab.active{background:#fff;color:var(--ink)}
.ck-save{font-size:11px;font-weight:800;letter-spacing:.04em;background:var(--orange);color:#fff;padding:3px 8px;border-radius:999px}
.ck-tab.active .ck-save{background:var(--wine)}

.ck-panel{display:none}
.ck-panel.active{display:block;animation:ckIn .35s var(--ease)}
@keyframes ckIn{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:none}}

.ck-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;align-items:stretch}
@media (min-width: 901px){
  .ck-panel[data-panel="combo"] .ck-grid{grid-template-columns:repeat(2,1fr);max-width:788px;margin:0 auto}
}
.ck-card{position:relative;background:#fff;border-radius:var(--radius-lg);overflow:hidden;display:flex;flex-direction:column;box-shadow:0 20px 44px -22px rgba(0,0,0,.45);transition:transform .3s var(--ease),box-shadow .3s var(--ease)}
.ck-card:hover{transform:translateY(-5px);box-shadow:0 28px 56px -22px rgba(0,0,0,.55)}
.ck-card.popular{outline:3px solid var(--orange);outline-offset:0}
.ck-tag{position:absolute;top:14px;right:14px;z-index:3;background:var(--orange);color:#fff;font-size:11px;font-weight:800;letter-spacing:.07em;text-transform:uppercase;padding:6px 12px;border-radius:999px}
.ck-thumb{position:relative;height:190px;display:grid;place-items:center;background:var(--cream-2);background-size:cover;background-position:center}
.ck-thumb.wine{background:linear-gradient(160deg,rgba(122,28,47,.12),rgba(122,28,47,.03))}
.ck-thumb.orange{background:linear-gradient(160deg,rgba(232,155,43,.18),rgba(232,155,43,.04))}
.ck-thumb.green{background:linear-gradient(160deg,rgba(31,107,62,.13),rgba(31,107,62,.03))}
.ck-thumb img{height:158px;width:auto;filter:drop-shadow(0 14px 22px rgba(0,0,0,.22))}
.ck-thumb-photo{background-color:var(--cream-2)}
.ck-thumb-photo img{display:none}
.ck-body{padding:22px 24px 26px;display:flex;flex-direction:column;gap:6px;flex:1}
.ck-body h3{font-family:'DM Serif Display',serif;font-size:23px;color:var(--ink);line-height:1.15;margin:0}
.ck-note{font-size:13.5px;color:var(--ink-mute);margin:0 0 6px;font-weight:500}
.ck-body > *:nth-last-child(2){margin-bottom:20px}
.ck-price{display:flex;align-items:baseline;gap:10px;flex-wrap:wrap}
.ck-from{font-size:14px;color:var(--ink-mute);text-decoration:line-through}
.ck-now{font-family:'DM Serif Display',serif;font-size:31px;color:var(--wine);line-height:1}
.ck-inst{font-size:13px;color:var(--ink-mute)}
.ck-list{list-style:none;padding:0;margin:12px 0 0;display:grid;gap:7px}
.ck-list li{position:relative;padding-left:20px;font-size:13.5px;color:var(--ink-2);line-height:1.4}
.ck-list li::before{content:"✓";position:absolute;left:0;top:0;color:var(--green);font-weight:800;font-size:12px}
.ck-cta{display:block;text-align:center;background:var(--wine);color:#fff;font-weight:800;font-size:15px;padding:15px 20px;border-radius:999px;text-decoration:none;margin-top:auto;transition:all .25s var(--ease)}
.ck-cta:hover{background:var(--wine-dark);color:#fff;transform:translateY(-2px);box-shadow:0 14px 30px -10px rgba(122,28,47,.6)}
.ck-card.popular .ck-cta{background:var(--green);box-shadow:0 12px 26px -10px rgba(31,107,62,.55)}
.ck-card.popular .ck-cta:hover{background:var(--green-dark)}
.ck-hint{text-align:center;margin:26px 0 0;font-size:15px;color:rgba(255,255,255,.75)}
.ck-hint b{color:#fff}
.ck-link{background:none;border:0;color:var(--orange-soft);font-family:inherit;font-weight:800;font-size:15px;cursor:pointer;text-decoration:underline;text-underline-offset:3px;padding:0}
.ck-link:hover{color:#fff}

@media (max-width: 900px){
  .ck-grid{grid-template-columns:1fr;gap:14px;max-width:440px;margin:0 auto}
  .ck-card{flex-direction:row;align-items:stretch}
  .ck-thumb{height:auto;width:118px;flex-shrink:0}
  .ck-thumb img{height:104px}
  .ck-body{padding:16px 18px 18px;gap:3px}
  .ck-body h3{font-size:19px}
  .ck-note{font-size:12.5px;margin-bottom:3px}
  .ck-now{font-size:26px}
  .ck-from,.ck-inst{font-size:12px}
  .ck-list{margin:9px 0 0;gap:5px}
  .ck-list li{font-size:12.5px}
  .ck-cta{padding:13px 16px;font-size:14.5px}
  .ck-body > *:nth-last-child(2){margin-bottom:14px}
  .ck-tag{top:10px;right:10px;font-size:10px;padding:5px 9px}
  .ck-tabs{width:100%;margin-bottom:26px}
  .ck-tab{flex:1;justify-content:center;padding:11px 12px;font-size:13.5px;gap:6px}
  .ck-save{font-size:9.5px;padding:2px 6px}
  .ck-hint{font-size:14px;margin-top:20px}
  .ck-link{font-size:14px}
}
@media (max-width: 400px){
  .ck-thumb{width:96px}
  .ck-thumb img{height:86px}
}

/* Video strip */
.video-strip{padding:64px 0 72px;background:var(--paper);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.vs-head{text-align:center;margin-bottom:30px}
.vs-head h2{font-size:clamp(28px,3.2vw,42px);margin-top:12px}
.video-strip .vsl-frame{max-width:900px;margin:0 auto;aspect-ratio:16/9}
.vs-cta{display:flex;justify-content:center;margin-top:32px}

/* 9 vegetais */
.veg-section{background:var(--cream-2)}
.veg-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.veg-item{background:var(--paper);border:1px solid var(--line);border-radius:var(--radius);padding:22px 22px 24px;display:flex;flex-direction:column;gap:4px;transition:all .3s var(--ease)}
.veg-item:hover{transform:translateY(-3px);box-shadow:var(--shadow);border-color:rgba(31,107,62,.22)}
.veg-n{font-family:'DM Serif Display',serif;font-size:14px;color:var(--orange);letter-spacing:.08em}
.veg-name{font-family:'DM Serif Display',serif;font-size:24px;color:var(--ink);line-height:1.15}
.veg-note{font-size:13.5px;color:var(--ink-mute);font-weight:500}
.veg-foot{margin-top:38px;display:flex;align-items:center;justify-content:space-between;gap:26px;flex-wrap:wrap;background:var(--paper);border:1px dashed rgba(31,107,62,.3);border-radius:var(--radius);padding:26px 30px}
.veg-foot p{margin:0;font-size:16px;color:var(--ink-2);max-width:560px}
.veg-foot b{color:var(--green-dark)}

@media (max-width: 960px) {
  .hero { padding: 28px 0 52px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .vsl-frame { aspect-ratio: 16 / 9; }
  .hero-jars { min-height: 300px; }
  .hero-jars .hj1, .hero-jars .hj3 { width: 128px; }
  .hero-jars .hj2 { width: 162px; }
  .veg-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .hero-jars { min-height: 232px; padding-bottom: 10px }
  .hero-jars .hj1 { width: 96px; transform: translateX(38px) rotate(-7deg) }
  .hero-jars .hj2 { width: 122px }
  .hero-jars .hj3 { width: 96px; transform: translateX(-38px) rotate(7deg) }
  .video-strip { padding: 44px 0 50px }
  .veg-grid { grid-template-columns: 1fr; gap: 12px }
  .veg-item { padding: 16px 18px 18px }
  .veg-name { font-size: 21px }
  .veg-foot { padding: 20px; margin-top: 26px }
  .veg-foot p { font-size: 15px }
}

/* Trust strip */
.trust-strip {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.trust-inner {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--ink-2); font-weight: 600;
  justify-content: center;
}
.trust-item .ico {
  width: 36px; height: 36px;
  flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(31, 107, 62, 0.08);
  border-radius: 999px;
  color: var(--green-dark);
}
@media (max-width: 860px) {
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   INDICAÇÕES
   ========================================================= */
.indications {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 64px 0;
}
.ind-head {
  text-align: center;
  margin-bottom: 48px;
}
.ind-head h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wine-dark);
}
.ind-rule {
  display: block;
  width: 52px;
  height: 4px;
  border-radius: 999px;
  background: var(--orange);
  margin: 16px auto 0;
}
.ind-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.ind-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 12px;
}
.ind-ico {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  transition: transform 0.35s var(--ease);
}
.ind-ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ind-item:hover .ind-ico {
  transform: translateY(-4px) scale(1.04);
}
.ind-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 15.5px;
  line-height: 1.25;
  color: var(--ink);
  max-width: 180px;
  margin: 0;
}
.ind-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--green-dark);
  margin-top: -4px;
}
@media (max-width: 860px) {
  .ind-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
}
@media (max-width: 420px) {
  .ind-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   SECTION: BENEFITS
   ========================================================= */
.section { padding: 110px 0; position: relative; }
.section-cream-2 { background: var(--cream-2); }
.section-paper { background: var(--paper); }
.section-wine { background: var(--wine-dark); color: #fff; }
.section-wine h2 { color: #fff; }

.section-head { max-width: 780px; margin: 0 auto 60px; text-align: center; }
.section-head h2 { margin: 16px 0 18px; }
.section-head p { color: var(--ink-2); font-size: 18px; line-height: 1.55; }
.section-wine .section-head p { color: rgba(255,255,255,0.78); }

.bcards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.bcard {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.bcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(31, 107, 62, 0.2);
}
.bcard .b-ico {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(31, 107, 62, 0.12), rgba(31, 107, 62, 0.04));
  display: grid; place-items: center;
  color: var(--green-dark);
  margin-bottom: 22px;
}
.bcard.wine .b-ico { background: linear-gradient(135deg, rgba(122, 28, 47, 0.12), rgba(122, 28, 47, 0.04)); color: var(--wine); }
.bcard.orange .b-ico { background: linear-gradient(135deg, rgba(232, 155, 43, 0.18), rgba(232, 155, 43, 0.06)); color: #B97612; }
.bcard h3 { font-size: 22px; margin-bottom: 10px; color: var(--ink); }
.bcard p { color: var(--ink-mute); font-size: 15.5px; line-height: 1.55; }

@media (max-width: 860px) {
  .bcards { grid-template-columns: 1fr; gap: 14px; }
  .section { padding: 70px 0; }
}

/* =========================================================
   PARA QUEM É
   ========================================================= */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.who-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 0.3s var(--ease);
  position: relative;
}
.who-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.who-art {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.who-art::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.45));
}
.who-art .who-tag {
  position: absolute; top: 16px; left: 16px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.96);
  color: var(--wine);
  padding: 6px 12px; border-radius: 999px;
  z-index: 2;
}
.who-art .who-tag.green { color: var(--green-dark); }
.who-body { padding: 26px 28px 32px; }
.who-body h3 { font-size: 23px; margin-bottom: 8px; color: var(--ink); }
.who-body p { color: var(--ink-mute); font-size: 15px; }

.who-1 { background: linear-gradient(135deg, #F4ECDD, #E8D9BD); }
.who-2 { background: linear-gradient(135deg, #DDEDE2, #C0DBCC); }
.who-3 { background: linear-gradient(135deg, #F0D8DC, #DDB5BC); }
.who-4 { background: linear-gradient(135deg, #FCE6CC, #F0C896); }
.who-5 { background: linear-gradient(135deg, #E6DFEF, #C7BBDA); }
.who-6 { background: linear-gradient(135deg, #DCE5EC, #B5C5D4); }

.who-art svg { width: 100%; height: 100%; }

@media (max-width: 860px) {
  .who-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   EMOTIONAL SECTION ("Só quem vive isso entende")
   ========================================================= */
.emotional {
  background:
    radial-gradient(ellipse 600px 400px at 20% 50%, rgba(232, 155, 43, 0.06), transparent),
    var(--wine-dark);
  color: #fff;
  position: relative;
}
.emotional::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.04) 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.em-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.em-script {
  font-family: 'Caveat', cursive;
  color: var(--orange-soft);
  font-size: 28px;
  margin-bottom: 6px;
  display: block;
}
.emotional h2 {
  font-size: clamp(36px, 4.8vw, 56px);
  color: #fff;
  margin-bottom: 28px;
  line-height: 1.04;
}
.emotional h2 em {
  font-style: italic;
  color: var(--orange-soft);
}
.em-quote {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  line-height: 1.4;
  color: #fff;
  font-style: italic;
  padding-left: 24px;
  border-left: 3px solid var(--orange);
  margin: 28px 0;
}
.em-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 14px;
}
.em-list li {
  display: flex; align-items: flex-start; gap: 14px;
  color: rgba(255,255,255,0.84);
  font-size: 16px;
}
.em-list li::before {
  content: "";
  flex-shrink: 0;
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 999px;
  margin-top: 9px;
}
.em-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(10px);
}
.em-stat {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.em-stat .num {
  font-family: 'DM Serif Display', serif;
  font-size: 44px;
  color: var(--orange-soft);
  line-height: 1;
}
.em-stat .lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
  line-height: 1.4;
}

@media (max-width: 860px) {
  .em-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.step {
  position: relative;
  padding: 32px 28px;
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: all 0.3s var(--ease);
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.step .step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  color: var(--wine);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.85;
}
.step h3 { font-size: 19px; color: var(--ink); margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--ink-mute); }

@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .steps { grid-template-columns: 1fr; }
}

/* =========================================================
   RECIPES
   ========================================================= */
.recipes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.recipe {
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: all 0.3s var(--ease);
  display: flex;
  align-items: center;
  gap: 18px;
}
.recipe:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 107, 62, 0.3);
  box-shadow: var(--shadow-sm);
}
.recipe .r-ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--cream-2);
  display: grid; place-items: center;
  font-size: 26px;
  flex-shrink: 0;
}
.recipe h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.recipe p { font-size: 13px; color: var(--ink-mute); margin: 0; }

@media (max-width: 860px) {
  .recipes-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .recipes-grid { grid-template-columns: 1fr; }
}

/* Recipe lead image */
.recipe-feature {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: linear-gradient(135deg, var(--cream-2), var(--cream-3));
  border-radius: var(--radius-xl);
  padding: 60px;
  overflow: hidden;
}
.recipe-feature .rf-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
}
.recipe-feature h3 { font-family: 'DM Serif Display', serif; font-size: 36px; color: var(--wine-dark); margin-bottom: 16px; }
.recipe-feature p { font-size: 17px; color: var(--ink-2); }

@media (max-width: 860px) {
  .recipe-feature { grid-template-columns: 1fr; padding: 32px; gap: 32px; }
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials {
  background: var(--cream-2);
  overflow: hidden;
}

/* Mães carousel */
.maes-carousel {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.mc-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius);
}
.mc-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}
.mc-slide {
  flex: 0 0 calc((100% - 48px) / 3);
  margin: 0;
}
.mc-slide img {
  width: 100%;
  aspect-ratio: 5 / 7;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--paper);
}
.mc-arrow {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--wine);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s var(--ease);
}
.mc-arrow:hover {
  background: var(--wine);
  color: #fff;
  transform: scale(1.05);
  box-shadow: var(--shadow);
}
.mc-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  background: var(--paper);
  color: var(--wine);
}
.mc-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 32px;
}
.mc-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(122, 28, 47, 0.22);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.mc-dot.active {
  background: var(--wine);
  width: 28px;
}

@media (max-width: 900px) {
  .mc-slide { flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 600px) {
  .maes-carousel { gap: 8px; }
  .mc-slide { flex: 0 0 100%; }
  .mc-arrow { width: 42px; height: 42px; }
}

/* =========================================================
   NUTRIS RECOMENDAM
   ========================================================= */
.nr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.nr-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 26px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.nr-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(31, 107, 62, 0.2);
}
.nr-head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nr-avatar {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--cream-2);
  background: var(--cream-2);
}
.nr-handle {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.nr-stars {
  color: var(--orange);
  font-size: 12px;
  letter-spacing: 1px;
}
.nr-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-dark);
  margin-top: 2px;
}
.nr-text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}

@media (max-width: 860px) {
  .nr-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   NUTRICIONISTA
   ========================================================= */
.nutri-section {
  background:
    radial-gradient(ellipse 800px 500px at 100% 0%, rgba(31, 107, 62, 0.07), transparent),
    var(--cream);
}
.nutri-head {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 50px;
}
.nutri-head h2 { line-height: 1.04; }
.nutri-credentials {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 18px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.nutri-avatar {
  flex-shrink: 0;
  width: 60px; height: 60px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--cream-2);
}
.nutri-name { font-weight: 700; font-size: 16px; color: var(--ink); }
.nutri-role { font-size: 13px; color: var(--ink-mute); line-height: 1.4; }

.nutri-videos {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  margin-bottom: 50px;
}
.nutri-video {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  background: #1a1a1a;
}
.nutri-video:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.nutri-video.v-large {
  grid-row: span 2;
  grid-column: span 1;
}
.nv-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 220px;
  background: linear-gradient(135deg, #1F6B3E 0%, #0F4A28 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.nutri-video.v-large .nv-frame {
  aspect-ratio: 9/16;
  min-height: 480px;
}
.nv-frame::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.10), transparent 50%),
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, transparent 40%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}
.nv-frame::after {
  /* subtle pattern */
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 30px);
  pointer-events: none;
}
.nv-tag {
  position: absolute;
  top: 18px; left: 18px;
  background: rgba(255,255,255,0.96);
  color: var(--green-dark);
  font-size: 11px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  z-index: 2;
}
.nv-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 68px; height: 68px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  display: grid; place-items: center;
  z-index: 2;
  transition: transform 0.3s var(--ease);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.nutri-video.v-large .nv-play { width: 88px; height: 88px; }
.nv-play::before {
  content: "";
  width: 0; height: 0;
  border-left: 18px solid var(--green-dark);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 5px;
}
.nutri-video.v-large .nv-play::before {
  border-left: 24px solid var(--green-dark);
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  margin-left: 6px;
}
.nutri-video:hover .nv-play { transform: translate(-50%, -50%) scale(1.08); }
.nv-meta {
  position: relative;
  z-index: 2;
  padding: 22px;
  color: #fff;
}
.nv-title {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 6px;
}
.nutri-video.v-large .nv-title { font-size: 24px; }
.nv-duration { font-size: 12px; font-weight: 600; opacity: 0.85; }

.nutri-quote {
  display: flex;
  gap: 24px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  align-items: flex-start;
}
.nutri-quote p {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  line-height: 1.4;
  color: var(--wine-dark);
  font-style: italic;
  margin: 0;
}
.nutri-attr {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  font-style: normal;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.nutri-videos.single{grid-template-columns:1fr;grid-template-rows:auto}
.nutri-videos.single .nutri-video.v-large{grid-column:1/-1;grid-row:auto}
.nutri-videos.single .nv-frame{aspect-ratio:16/9;min-height:0}
@media (max-width: 960px) {
  .nutri-head { grid-template-columns: 1fr; gap: 30px; }
  .nutri-videos { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .nutri-video.v-large { grid-row: span 1; grid-column: span 2; }
  .nutri-video.v-large .nv-frame { aspect-ratio: 16/9; min-height: 280px; }
}
@media (max-width: 540px) {
  .nutri-videos { grid-template-columns: 1fr; }
  .nutri-video.v-large { grid-column: span 1; }
  .nutri-quote { padding: 28px; flex-direction: column; gap: 14px; }
  .nutri-quote p { font-size: 19px; }
}

/* =========================================================
   PRODUCT SHOWCASE
   ========================================================= */
.showcase {
  background:
    radial-gradient(ellipse 800px 400px at 50% 30%, rgba(31, 107, 62, 0.07), transparent),
    var(--cream);
}
.showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.showcase-art {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 520px;
  padding-bottom: 20px;
}
.showcase-art .pedestal {
  position: absolute;
  bottom: 28px;
  width: 78%;
  height: 30px;
  background: radial-gradient(ellipse, rgba(42, 31, 24, 0.18) 0%, transparent 70%);
  filter: blur(2px);
}
.showcase-art .jar {
  position: relative;
  width: 200px;
  filter: drop-shadow(0 26px 36px rgba(0,0,0,0.20));
  animation: floaty 6s ease-in-out infinite;
}
.showcase-art .jar.b1 { transform: translateX(70px) rotate(-7deg); width: 188px; z-index: 1; animation-delay: 0.5s; }
.showcase-art .jar.b2 { z-index: 3; width: 236px; }
.showcase-art .jar.b3 { transform: translateX(-70px) rotate(7deg); width: 188px; z-index: 2; animation-delay: 1s; }
.showcase-feature-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.showcase-feature-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 16px; color: var(--ink-2);
}
.showcase-feature-list .ck {
  flex-shrink: 0;
  width: 26px; height: 26px;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  display: grid; place-items: center;
  margin-top: 1px;
}
.showcase h2 { margin-bottom: 16px; }
.showcase p.lead { font-size: 18px; color: var(--ink-2); line-height: 1.55; margin-bottom: 8px; }

@media (max-width: 860px) {
  .showcase-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* =========================================================
   OFFER
   ========================================================= */
.offer {
  background: var(--wine-dark);
  color: #fff;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.offer::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 0% 0%, rgba(31, 107, 62, 0.18), transparent),
    radial-gradient(ellipse 600px 400px at 100% 100%, rgba(232, 155, 43, 0.12), transparent);
  pointer-events: none;
}
.offer .container { position: relative; z-index: 1; }
.offer .section-head h2 { color: #fff; }
.offer .section-head p { color: rgba(255,255,255,0.8); }
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.offer-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 40px 32px 36px;
  border: 2px solid transparent;
  transition: all 0.35s var(--ease);
  position: relative;
  display: flex; flex-direction: column;
}
.offer-card.popular {
  border-color: var(--orange);
  transform: scale(1.04);
  box-shadow: 0 40px 80px -28px rgba(232, 155, 43, 0.5);
}
.offer-card:hover { transform: translateY(-4px); }
.offer-card.popular:hover { transform: scale(1.04) translateY(-4px); }
.offer-card .pop-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange);
  color: var(--wine-dark);
  font-size: 12px; font-weight: 800; letter-spacing: 0.14em;
  padding: 7px 14px; border-radius: 999px;
  text-transform: uppercase;
  white-space: nowrap;
}
.offer-card .o-title {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  color: var(--wine-dark);
  margin-bottom: 4px;
}
.offer-card .o-sub { font-size: 14px; color: var(--ink-mute); margin-bottom: 20px; }
.offer-card .o-image {
  width: 100%; aspect-ratio: 4/3;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 16px;
}
.offer-card .o-from { font-size: 13px; color: var(--ink-mute); text-decoration: line-through; }
.offer-card .o-price {
  font-family: 'DM Serif Display', serif;
  font-size: 44px;
  color: var(--wine);
  line-height: 1;
  margin: 4px 0 4px;
}
.offer-card .o-price small { font-size: 22px; color: var(--ink-mute); }
.offer-card .o-installments { font-size: 14px; color: var(--ink-2); margin-bottom: 14px; }
.offer-card .o-perk {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(31, 107, 62, 0.08);
  color: var(--green-dark);
  font-size: 13px; font-weight: 700;
  padding: 8px 12px; border-radius: 8px;
  margin-bottom: 22px;
}
.offer-card .o-perk.orange { background: rgba(232, 155, 43, 0.14); color: #B97612; }
.offer-card ul {
  list-style: none; padding: 0; margin: 0 0 26px;
  display: grid; gap: 10px;
}
.offer-card ul li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: var(--ink-2);
}
.offer-card ul li::before {
  content: "✓";
  color: var(--green); font-weight: 700;
  margin-top: -1px;
}
.offer-card .o-cta {
  display: block;
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 16px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  margin-top: auto;
  transition: all 0.25s var(--ease);
}
.offer-card .o-cta:hover { background: var(--green-dark); transform: translateY(-1px); }
.offer-card.popular .o-cta { background: var(--orange); color: var(--wine-dark); }
.offer-card.popular .o-cta:hover { background: #D88720; }

.offer-pay {
  margin-top: 50px;
  display: flex; justify-content: center; gap: 28px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
}
.offer-pay .pay-item { display: flex; align-items: center; gap: 8px; }

@media (max-width: 860px) {
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card.popular { transform: none; }
  .offer-card.popular:hover { transform: translateY(-4px); }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.faq-item:hover { border-color: rgba(122, 28, 47, 0.25); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-weight: 600;
  color: var(--ink);
  font-size: 17px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  width: 30px; height: 30px;
  background: rgba(122, 28, 47, 0.08);
  border-radius: 999px;
  display: grid; place-items: center;
  color: var(--wine);
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
  font-size: 18px;
  font-weight: 400;
}
.faq-item[open] summary .plus { background: var(--wine); color: #fff; transform: rotate(45deg); }
.faq-body {
  padding: 0 28px 24px;
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.6;
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta {
  background:
    radial-gradient(ellipse 800px 500px at 50% 0%, rgba(232, 155, 43, 0.10), transparent),
    var(--green-dark);
  color: #fff;
  text-align: center;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.final-cta .container { max-width: 900px; position: relative; z-index: 1; }
.final-cta .script {
  color: var(--orange-soft);
  font-size: 36px;
  display: block;
  margin-bottom: 6px;
}
.final-cta h2 {
  color: #fff;
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 24px;
  line-height: 1.05;
}
.final-cta h2 em { font-style: italic; color: var(--orange-soft); }
.final-cta p {
  font-size: 19px;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.55;
}
.final-cta .btn-primary {
  background: var(--orange);
  color: var(--wine-dark);
  box-shadow: 0 24px 60px -22px rgba(232, 155, 43, 0.7);
}
.final-cta .btn-primary:hover { background: #D88720; box-shadow: 0 32px 70px -22px rgba(232, 155, 43, 0.7); }
.final-cta .btn-primary .arrow { background: rgba(122, 28, 47, 0.15); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: 56px 0 30px;
  font-size: 13.5px;
  line-height: 1.6;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { height: 44px; border-radius: 8px; margin-bottom: 18px; }
.footer h5 { color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer ul a:hover { color: #fff; }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  will-change: transform, opacity;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }

/* Sticky offer for mobile */
.sticky-cta {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 60;
  background: var(--wine);
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  display: none;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 16px 40px -12px rgba(122, 28, 47, 0.6);
}
@media (max-width: 860px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 80px; }
}

/* =========================================================
   MOBILE COMPACT PASS — cards menores, menos scroll
   ========================================================= */
@media (max-width: 720px) {
  .section { padding: 52px 0 }
  .section-head { margin-bottom: 26px }
  .section-head h2 { font-size: clamp(26px, 7vw, 34px) }
  .section-head p { font-size: 15px }
  .hero h1 { font-size: clamp(31px, 8.4vw, 42px); margin: 14px 0 16px }
  .hero-sub { font-size: 15.5px; margin-bottom: 22px }
  .hero-benefits { gap: 9px; margin-bottom: 24px }
  .hb-item { font-size: 14px }
  .hero-pre { gap: 10px }
  .hero-pre-badge, .hero-pre-rating { font-size: 11.5px; padding: 6px 12px }

  .bcard { padding: 20px 20px 22px }
  .bcard .b-ico { width: 42px; height: 42px; border-radius: 12px; margin-bottom: 14px }
  .bcard .b-ico svg { width: 22px; height: 22px }
  .bcard h3 { font-size: 18.5px; margin-bottom: 6px }
  .bcard p { font-size: 14.5px; line-height: 1.5 }

  .nr-card { padding: 18px 18px 20px; gap: 12px }
  .nr-avatar { width: 44px; height: 44px }
  .nr-handle { font-size: 13.5px }
  .nr-name { font-size: 12px }
  .nr-text { font-size: 14px; line-height: 1.5 }

  .step { padding: 18px }
  .step-num { font-size: 26px; margin-bottom: 8px }
  .step h3 { font-size: 17px }
  .step p { font-size: 13.5px }

  .ind-grid { gap: 22px 12px }
  .ind-ico { width: 56px; height: 56px }
  .ind-title { font-size: 14px }
  .ind-sub { font-size: 12px }

  .em-inner { gap: 28px }
  .emotional h2 { font-size: clamp(25px, 7vw, 32px) }
  .recipe-feature { padding: 22px; gap: 24px }

  .offer-card { padding: 24px 22px }
  .offer-grid { gap: 16px }
  .o-price { font-size: 34px }
  .o-image { height: 150px }

  .faq-item summary { font-size: 15.5px; padding: 16px 0 }
  .faq-body { font-size: 14.5px }

  .btn-primary { font-size: 15px; padding: 15px 24px; width: 100%; justify-content: center }
  .cta-row { gap: 12px }
  .vs-cta .btn-primary, .veg-foot .btn-primary { width: 100% }
}
