/* ============================================================
   BabyDecor que Encanta — Hellen Santana / Ateliê Artes em Malha
   Direção: Editorial Artisan — paleta harmônica QUENTE (refino 2026-06-18)
   Eixo análogo: marfim · terracota · dusty-rose · dourado · cacau
   + sálvia (apoio botânico, parcimônia). WCAG AA.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=Caveat:wght@500;600;700&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* superfícies quentes */
  --cream: #FBF5EA;
  --sand: #F2E8D5;
  --card-soft: #FCF8EF;
  --card: #FFFDF9;
  --white: #ffffff;

  /* acentos quentes — harmonia análoga */
  --terracotta: #C2714C;        /* CTA / quente principal */
  --terracotta-hover: #A85B38;
  --terracotta-deep: #9A4F2E;   /* texto pequeno sobre claro (AA) */
  --clay: #C8757D;              /* dusty rose — accent feminino (harmonizado) */
  --clay-deep: #A8505A;
  --gold: #C7A35C;
  --gold-deep: #9E7C36;

  /* apoio botânico — sálvia dessaturada (parcimônia) */
  --olive: #3A271B;            /* cacau escuro — títulos e destaques fortes */
  --olive-soft: #79864F;       /* verde-sálvia — checks / ícones de apoio */

  /* tinta / texto (cacau quente) */
  --text: #463529;
  --text-soft: #74604C;        /* secundário — AA sobre cream */

  /* detalhes */
  --rose-mist: #F4E0E2;        /* rosa-pó — fundo de detalhe, universo bebê */
  --wpp-bg: #ECE5DD;

  /* tipografia */
  --f-display: 'Montserrat', system-ui, sans-serif;
  --f-body: 'Montserrat', system-ui, sans-serif;
  --f-serif: 'Lora', Georgia, serif;
  --f-script: 'Caveat', cursive;

  /* escala fluida */
  --fs-hero: clamp(1.75rem, 1.05rem + 2.7vw, 2.7rem);
  --fs-h2: clamp(1.55rem, 1.05rem + 2.3vw, 2.35rem);
  --fs-h3: clamp(1.15rem, 0.98rem + 0.8vw, 1.4rem);
  --fs-lead: clamp(1.02rem, 0.95rem + 0.45vw, 1.2rem);
  --fs-body: 1rem;
  --fs-price: clamp(2.6rem, 1.8rem + 3vw, 3.9rem);
  --fs-num: clamp(3rem, 2rem + 4vw, 4.6rem);

  /* ritmo */
  --space-section: clamp(3.75rem, 2.6rem + 5vw, 6.5rem);
  --wrap: 1120px;
  --wrap-narrow: 760px;

  /* forma */
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  /* sombra — 4 níveis quentes */
  --sh-xs: 0 1px 3px rgba(74, 53, 36, 0.06);
  --sh-sm: 0 3px 10px -3px rgba(74, 53, 36, 0.12);
  --sh: 0 12px 30px -14px rgba(74, 53, 36, 0.22);
  --sh-lg: 0 26px 60px -24px rgba(74, 53, 36, 0.34);
  --sh-cta: 0 10px 24px -8px rgba(194, 113, 76, 0.50);
  --sh-cta-hover: 0 16px 34px -10px rgba(168, 80, 90, 0.52);

  /* motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.18s ease;
  --t: 0.32s var(--ease);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4 { font-family: var(--f-display); color: var(--olive); line-height: 1.16; letter-spacing: -0.015em; font-weight: 800; }
strong { font-weight: 700; color: var(--olive); }
::selection { background: rgba(200, 117, 125, 0.22); color: var(--olive); }
:focus-visible { outline: 2.5px solid var(--clay); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.wrap-narrow { max-width: var(--wrap-narrow); }
.section { padding-block: var(--space-section); position: relative; }
.bg-cream { background: var(--cream); }
.bg-sand { background: var(--sand); }
.bg-card-soft { background: var(--card-soft); }
.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }

/* faixa de transição suave entre seções de cor diferente */
.section + .section.bg-sand::before,
.section + .section.bg-cream::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 60px; transform: translateY(-100%);
  background: linear-gradient(to bottom, transparent, currentColor); color: inherit; pointer-events: none; opacity: 0;
}

/* ---------- Tipografia utilitária ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--terracotta-deep);
}
.eyebrow::before, .eyebrow.center::after {
  content: ""; width: 28px; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow.center::before { background: linear-gradient(90deg, var(--gold), transparent); }
.h1 { font-size: var(--fs-hero); }
.h2 { font-size: var(--fs-h2); }
.h3 { font-size: var(--fs-h3); font-weight: 700; }
.lead { font-size: var(--fs-lead); color: var(--text-soft); line-height: 1.6; }
.serif-em { font-family: var(--f-serif); font-style: italic; font-weight: 500; color: var(--terracotta); }
.script { font-family: var(--f-script); color: var(--clay); font-weight: 600; }
.measure { max-width: 56ch; }
.measure-sm { max-width: 44ch; }
.text-soft { color: var(--text-soft); }

/* underline orgânico em palavra-chave */
.mark { position: relative; white-space: nowrap; color: var(--clay-deep); }
.mark::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: 0.04em; height: 0.42em;
  background: linear-gradient(90deg, var(--gold), rgba(199,163,92,0.45)); opacity: 0.55; border-radius: var(--r-pill); z-index: -1;
  transform: rotate(-0.6deg);
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 1.05rem 2rem; border-radius: var(--r-pill); transition: transform var(--t), box-shadow var(--t), background var(--t);
  text-align: center; line-height: 1.2;
}
.btn-primary {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--clay-deep) 100%);
  color: var(--white); box-shadow: var(--sh-cta); position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.34) 50%, transparent 70%);
  transform: translateX(-130%); transition: transform 0.7s var(--ease);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--sh-cta-hover); }
.btn-primary:hover::after { transform: translateX(130%); }
.btn-block { display: flex; width: 100%; }
.btn-lg { padding: 1.2rem 2.4rem; font-size: 1.02rem; }
.btn-pulse { animation: cta-pulse 2.8s var(--ease) infinite; }

/* ---------- Pills / badges ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border-radius: var(--r-pill); font-size: 0.74rem;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.pill-clay { background: var(--clay); color: var(--white); box-shadow: var(--sh-sm); }
.pill-soft { background: var(--card); color: var(--terracotta-deep); border: 1px solid rgba(199,163,92,0.55); }
.pill-olive { background: rgba(121,134,79,0.16); color: var(--olive-soft); }
.tag-script { font-family: var(--f-script); font-size: 1.45rem; font-weight: 600; color: var(--clay-deep); display: inline-block; transform: rotate(-3deg); }

/* ---------- Cards ---------- */
.card {
  background: var(--card); border-radius: var(--r-lg); padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--sh); border: 1px solid rgba(199,163,92,0.24);
}
.card-soft { background: var(--card-soft); }

/* ---------- Ornamentos ---------- */
.divider { display: flex; align-items: center; justify-content: center; gap: 0.9rem; margin: 1.8rem auto; max-width: 320px; color: var(--gold); }
.divider::before, .divider::after { content: ""; height: 1.5px; flex: 1; background: linear-gradient(90deg, transparent, var(--gold)); }
.divider::after { background: linear-gradient(90deg, var(--gold), transparent); }
.divider svg { width: 28px; height: 28px; opacity: 0.9; }
.divider .bead { width: 6px; height: 6px; border-radius: 50%; background: var(--clay); flex: none; }

.grain {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.45; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/></svg>");
}
.blob { position: absolute; border-radius: 50%; filter: blur(16px); pointer-events: none; z-index: 0; }
.blob-rose { background: radial-gradient(closest-side, rgba(200,117,125,0.30), transparent 70%); }
.blob-gold { background: radial-gradient(closest-side, rgba(199,163,92,0.38), transparent 72%); }
.blob-sage { background: radial-gradient(closest-side, rgba(121,134,79,0.22), transparent 72%); }
.blob-terra { background: radial-gradient(closest-side, rgba(194,113,76,0.26), transparent 72%); }

/* trama de crochê (pattern cacau sutil) */
.crochet-bg {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.6;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='44' height='44'><g fill='none' stroke='%233A271B' stroke-opacity='0.10' stroke-width='1'><circle cx='11' cy='11' r='5'/><circle cx='33' cy='33' r='5'/><path d='M0 22 Q11 14 22 22 T44 22'/></g></svg>");
}

/* pontos de crochê flutuantes (decoração) */
.spark { position: absolute; border-radius: 50%; pointer-events: none; z-index: 1; opacity: 0.5; }

/* número editorial */
.eyenum { font-family: var(--f-serif); font-style: italic; font-size: var(--fs-num); line-height: 0.8; color: var(--gold); font-weight: 500; }

/* selo de garantia */
.seal { width: 152px; height: 152px; filter: drop-shadow(0 12px 20px rgba(121,134,79,0.30)); animation: float 6s ease-in-out infinite; }

/* ícone em círculo */
.ico-circle { display: inline-flex; align-items: center; justify-content: center; flex: none; width: 48px; height: 48px; border-radius: 50%; }
.ico-circle svg { width: 24px; height: 24px; }
.ico-clay { background: rgba(200,117,125,0.14); color: var(--clay-deep); }
.ico-olive { background: rgba(121,134,79,0.18); color: var(--olive-soft); }
.ico-gold { background: rgba(199,163,92,0.18); color: var(--gold-deep); }

/* ---------- Logo (emblema + lettering) ---------- */
.logo { display: inline-flex; align-items: center; gap: 0.7rem; }
.logo-emblem { flex: none; width: 52px; height: 52px; filter: drop-shadow(0 5px 12px rgba(168,80,90,0.20)); }
.logo-emblem svg { width: 100%; height: 100%; }
.logo-word { display: flex; flex-direction: column; line-height: 1; text-align: left; }
.logo-name { font-family: var(--f-display); font-weight: 800; font-size: 1.5rem; color: var(--olive); letter-spacing: -0.025em; }
.logo-script { font-family: var(--f-script); font-weight: 600; font-size: 1.42rem; color: var(--clay); line-height: 0.7; margin-left: 0.1rem; }
.logo-hero { display: flex; justify-content: center; gap: 0.85rem; }
.logo-hero .logo-emblem { width: clamp(56px, 5vw, 66px); height: clamp(56px, 5vw, 66px); }
.logo-hero .logo-name { font-size: clamp(1.6rem, 1.3rem + 1.4vw, 2.1rem); }
.logo-hero .logo-script { font-size: clamp(1.45rem, 1.18rem + 1.3vw, 1.92rem); }
.foot-logo svg { width: 50px; height: 50px; margin: 0 auto 0.7rem; opacity: 0.95; }

/* cantoneiras douradas (offer-card) */
.corner { position: absolute; width: 26px; height: 26px; border: 2px solid var(--gold); opacity: 0.6; pointer-events: none; }
.corner.tl { top: 14px; left: 14px; border-right: 0; border-bottom: 0; border-top-left-radius: 8px; }
.corner.tr { top: 14px; right: 14px; border-left: 0; border-bottom: 0; border-top-right-radius: 8px; }
.corner.bl { bottom: 14px; left: 14px; border-right: 0; border-top: 0; border-bottom-left-radius: 8px; }
.corner.br { bottom: 14px; right: 14px; border-left: 0; border-top: 0; border-bottom-right-radius: 8px; }

/* ============================================================
   SEÇÕES
   ============================================================ */

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; overflow: hidden; padding-block: clamp(2.2rem, 1.6rem + 3vw, 4rem) clamp(3rem, 2rem + 5vw, 6rem); }
.hero-grid { display: grid; gap: 2.5rem; align-items: center; position: relative; z-index: 2; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.live-dot { position: relative; display: inline-flex; width: 8px; height: 8px; }
.live-dot::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: #fff; opacity: 0.7; animation: ping 1.8s var(--ease) infinite; }
.live-dot::after { content: ""; position: relative; width: 8px; height: 8px; border-radius: 50%; background: #fff; }
.hero h1 { margin-block: 0.3rem; }
/* pôster da coleção (lugar do vídeo) — claro e premium */
.video-frame {
  position: relative; aspect-ratio: 4/3; border-radius: var(--r-lg); overflow: hidden;
  background: radial-gradient(125% 115% at 50% 0%, var(--card) 0%, var(--rose-mist) 50%, var(--sand) 100%);
  box-shadow: var(--sh-lg); border: 6px solid var(--card); display: grid; place-items: center; text-align: center;
}
.video-frame .crochet-bg { opacity: 0.5; }
.poster-emblem { position: absolute; top: 8%; left: 50%; transform: translateX(-50%); width: 54%; max-width: 220px; opacity: 0.16; pointer-events: none; }
.poster-pill { position: absolute; top: 14px; left: 14px; z-index: 3; display: inline-flex; align-items: center; gap: 0.45rem; background: var(--card); color: var(--terracotta-deep); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.38rem 0.82rem; border-radius: var(--r-pill); box-shadow: var(--sh-sm); border: 1px solid rgba(199,163,92,0.4); }
.poster-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 1rem; padding: 1rem; }
.play-btn { position: relative; width: 82px; height: 82px; border-radius: 50%; background: linear-gradient(135deg, var(--terracotta), var(--clay-deep)); display: grid; place-items: center; box-shadow: var(--sh-cta); transition: transform var(--t); }
.play-btn::before { content: ""; position: absolute; inset: -12px; border-radius: 50%; border: 1.5px solid rgba(194,113,76,0.4); animation: ping 2.4s var(--ease) infinite; }
.play-btn:hover { transform: scale(1.08); }
.play-btn svg { width: 30px; height: 30px; color: #fff; margin-left: 4px; }
.video-cap { color: var(--olive); font-family: var(--f-serif); font-style: italic; font-size: 0.95rem; }
.live-dot--rose::before, .live-dot--rose::after { background: var(--clay); }
.hero-frame-glow { position: absolute; inset: -10% -6% -16% -6%; border-radius: var(--r-xl); background: linear-gradient(135deg, rgba(200,117,125,0.42), rgba(199,163,92,0.50), rgba(121,134,79,0.20)); filter: blur(42px); z-index: -1; }

/* tira de garantias do hero */
.trust-row { display: flex; flex-wrap: wrap; gap: 0.4rem 1.3rem; }
.trust-row li { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; font-weight: 600; color: var(--olive); text-transform: uppercase; letter-spacing: 0.05em; }
.trust-row svg { width: 16px; height: 16px; color: var(--clay-deep); flex: none; }

/* ---------- Bullets de valor ---------- */
.value-grid { display: grid; gap: 1rem; }
.value-item { display: flex; align-items: flex-start; gap: 0.9rem; padding: 1.1rem 1.2rem; background: var(--card); border-radius: var(--r); box-shadow: var(--sh-sm); border: 1px solid rgba(199,163,92,0.22); transition: transform var(--t), box-shadow var(--t); }
.value-item:hover { transform: translateY(-3px); box-shadow: var(--sh); }
.value-item svg { width: 22px; height: 22px; color: var(--olive-soft); flex: none; margin-top: 2px; }
.value-item span { font-weight: 500; }

/* ---------- Passos (3 etapas) + fio conector ---------- */
.steps { display: grid; gap: 1.4rem; position: relative; }
.step {
  position: relative; z-index: 1; background: var(--card); border-radius: var(--r-lg); padding: 2rem 1.6rem 1.7rem;
  box-shadow: var(--sh); border: 1px solid rgba(199,163,92,0.24); overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.step::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--terracotta), var(--clay)); }
.step-head { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 0.9rem; }
.step .eyenum { font-size: 2.8rem; }
.step h3 { color: var(--olive); }

/* ---------- Quote / manifesto ---------- */
.quote-block { position: relative; text-align: center; }
.quote-block .big-quote, .big-quote { font-family: var(--f-serif); font-style: italic; font-size: clamp(1.3rem, 1rem + 1.7vw, 2rem); line-height: 1.4; color: var(--olive); }
.quote-block .big-quote em, .big-quote em { color: var(--clay-deep); font-weight: 600; font-style: italic; }
.drop-mark { font-family: var(--f-serif); font-size: 4rem; color: var(--gold); opacity: 0.55; line-height: 0.5; }

/* ---------- Galeria de peças ---------- */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
.piece {
  position: relative; aspect-ratio: 4/5; border-radius: var(--r); overflow: hidden;
  background: linear-gradient(150deg, var(--sand), var(--card-soft)); border: 1px solid rgba(199,163,92,0.42);
  box-shadow: var(--sh-sm); display: grid; place-items: center; text-align: center; padding: 1rem;
  transition: transform var(--t), box-shadow var(--t);
}
.piece:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.piece img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.piece-ph { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.piece-ph .tag { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(255,253,249,0.88); padding: 0.3rem 0.7rem; border-radius: var(--r-pill); font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--terracotta-deep); backdrop-filter: blur(4px); }
.piece-ph .tag i { width: 6px; height: 6px; border-radius: 50%; background: var(--clay); display: inline-block; }
.piece-ph .nm { font-family: var(--f-script); font-size: 1.5rem; color: var(--terracotta); line-height: 1.05; }
.piece-ph .desc { display: none; }

/* ---------- Cards de feature ---------- */
.feature-grid { display: grid; gap: 1.3rem; }
.feature { position: relative; background: var(--card); border-radius: var(--r-lg); padding: 1.8rem 1.5rem; box-shadow: var(--sh); border: 1px solid rgba(199,163,92,0.24); text-align: center; transition: transform var(--t), box-shadow var(--t); }
.feature::after { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; border-radius: var(--r-lg) var(--r-lg) 0 0; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0.7; }
.feature:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.feature .ico-circle { width: 64px; height: 64px; margin: 0 auto 1rem; }
.feature .ico-circle svg { width: 30px; height: 30px; }

/* ---------- Depoimentos (mural) ---------- */
.depo-rail-wrap { position: relative; }
.depo-rail {
  display: flex; gap: 1.2rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0.5rem 0.3rem 1.6rem; scroll-padding-inline: 1rem; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.depo-rail::-webkit-scrollbar { display: none; }
.depo {
  scroll-snap-align: center; flex: 0 0 86%; max-width: 360px;
  background: var(--card); border-radius: var(--r-lg); box-shadow: var(--sh); overflow: hidden;
  border: 1px solid rgba(199,163,92,0.28); display: flex; flex-direction: column; position: relative;
}
.depo::before { content: "\201C"; position: absolute; top: -6px; right: 14px; font-family: var(--f-serif); font-size: 3.4rem; color: var(--gold); opacity: 0.35; z-index: 2; }
.depo-shot { background: var(--wpp-bg); padding: 0.55rem; height: 360px; display: flex; align-items: center; justify-content: center; }
.depo-shot img { width: 100%; height: 100%; object-fit: contain; border-radius: var(--r-sm); }
.depo-foot { padding: 0.9rem 1.1rem 1.1rem; display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; }
.depo-foot .who { font-weight: 700; color: var(--olive); font-size: 0.92rem; }
.depo-foot .res { font-family: var(--f-serif); font-style: italic; font-size: 0.8rem; color: var(--text-soft); }
.depo-foot .res b { color: var(--clay-deep); font-style: normal; font-weight: 700; }
.stars { color: var(--gold); display: inline-flex; gap: 1px; }
.rail-nav { display: flex; gap: 0.6rem; justify-content: center; margin-top: 0.4rem; }
.rail-btn { width: 46px; height: 46px; border-radius: 50%; background: var(--card); box-shadow: var(--sh-sm); display: grid; place-items: center; color: var(--terracotta); border: 1px solid rgba(199,163,92,0.32); transition: background var(--t), color var(--t), transform var(--t); }
.rail-btn:hover { background: var(--terracotta); color: #fff; transform: translateY(-2px); }
.rail-btn svg { width: 20px; height: 20px; }

/* ---------- Oferta / Pricing ---------- */
.offer-card {
  position: relative; background: linear-gradient(165deg, var(--card), var(--card-soft));
  border-radius: var(--r-xl); padding: clamp(2.8rem, 5vw, 3.2rem) clamp(1.4rem, 4vw, 2.6rem) clamp(1.8rem, 4vw, 3rem);
  box-shadow: var(--sh-lg); border: 1.5px solid rgba(199,163,92,0.6); overflow: hidden; text-align: center;
}
.offer-card .crochet-bg { opacity: 0.35; }
.offer-ribbon {
  position: absolute; top: 16px; right: -46px; transform: rotate(45deg);
  background: var(--clay-deep); color: #fff; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.34rem 3rem; box-shadow: var(--sh-sm); z-index: 4;
}
.combo-list { display: grid; gap: 0.7rem; text-align: left; max-width: 420px; margin-inline: auto; position: relative; z-index: 2; }
.combo-list li { display: flex; align-items: flex-start; gap: 0.7rem; font-weight: 500; }
.combo-list svg { width: 20px; height: 20px; color: var(--olive-soft); flex: none; margin-top: 3px; }
.price-old { font-size: 1.05rem; color: var(--text-soft); }
.price-old s { text-decoration-color: var(--clay); }
.price-main { font-family: var(--f-display); font-size: var(--fs-price); font-weight: 800; color: var(--olive); line-height: 1; letter-spacing: -0.02em; }
.price-main .cents { font-size: 0.42em; vertical-align: super; }
.price-x { font-size: 1.1rem; font-weight: 700; color: var(--terracotta); }
.price-cash { color: var(--text-soft); font-size: 0.95rem; }

/* ---------- Garantia ---------- */
.guarantee { display: grid; gap: 1.6rem; align-items: center; justify-items: center; text-align: center; position: relative; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 0.8rem; }
.faq-item { background: var(--card); border-radius: var(--r); border: 1px solid rgba(199,163,92,0.28); overflow: hidden; box-shadow: var(--sh-sm); transition: box-shadow var(--t); }
.faq-item[open] { box-shadow: var(--sh); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.15rem 1.3rem; text-align: left; font-weight: 700; color: var(--olive); font-size: 1rem; }
.faq-q .chev { flex: none; width: 24px; height: 24px; color: var(--terracotta); transition: transform var(--t); }
.faq-item[open] .faq-q .chev { transform: rotate(180deg); }
.faq-a { padding: 0 1.3rem 1.2rem; color: var(--text-soft); line-height: 1.65; }
.faq-item summary { list-style: none; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }

/* ---------- Footer ---------- */
.foot { background: var(--olive); color: rgba(251,245,234,0.84); text-align: center; padding-block: 2.6rem; }
.foot .brand { font-family: var(--f-serif); font-style: italic; font-size: 1.25rem; color: var(--gold); }
.foot a { color: var(--gold); }
.foot small { display: block; margin-top: 0.8rem; font-size: 0.78rem; opacity: 0.7; line-height: 1.7; }

/* ---------- Sticky CTA mobile ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; padding: 0.7rem 0.9rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(251,245,234,0.92); backdrop-filter: blur(12px); border-top: 1px solid rgba(199,163,92,0.45);
  box-shadow: 0 -8px 24px -16px rgba(74,53,41,0.4); transform: translateY(120%); transition: transform 0.4s var(--ease);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn { width: 100%; padding-block: 0.9rem; }

/* ============================================================
   ANIMAÇÕES
   ============================================================ */
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes ping { 0% { transform: scale(1); opacity: 0.6; } 75%,100% { transform: scale(2.4); opacity: 0; } }
@keyframes blob-drift { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(16px,-12px) scale(1.06); } }
@keyframes blob-drift-slow { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-14px,10px) scale(1.05); } }
@keyframes cta-pulse { 0%,100% { box-shadow: var(--sh-cta); } 50% { box-shadow: 0 10px 32px -6px rgba(200,117,125,0.62); } }
@keyframes spark-float { 0%,100% { transform: translateY(0) scale(1); opacity: 0.5; } 50% { transform: translateY(-14px) scale(1.15); opacity: 0.8; } }

.float-a { animation: blob-drift 16s ease-in-out infinite; }
.float-b { animation: blob-drift-slow 19s ease-in-out infinite; }
.spark { animation: spark-float 7s ease-in-out infinite; }

/* reveal on scroll — só esconde com JS ativo (robustez: sem JS, tudo visível) */
.reveal { transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal { opacity: 0; transform: translateY(26px); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (min-width: 760px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  /* fio de crochê conectando as 3 etapas */
  .steps::before { content: ""; position: absolute; top: 56px; left: 12%; right: 12%; height: 2px; z-index: 0; background-image: linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 16px); background-size: 16px 2px; opacity: 0.65; }
  .gallery { grid-template-columns: repeat(4, 1fr); }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .depo { flex-basis: 44%; }
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 3.5rem; }
  .depo { flex-basis: 30%; }
  .sticky-cta { display: none; }
  .guarantee { grid-template-columns: auto 1fr; text-align: left; justify-items: start; gap: 2.5rem; }
}

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