﻿/* =============================================================================
   LANDING.CSS — os 7 blocos, no padrão visual do modelo:
   coluna estreita, tudo centralizado, dourado sobre preto.
   ========================================================================== */

/* ═══════════════════════════════════════════ BLOCO 1 — HERO ══ */
.hero {
  position: relative;
  padding-top: clamp(28px, 5vw, 48px);
  padding-bottom: clamp(40px, 6vw, 64px);
  text-align: center;
}

/* Faixa de urgência — estática no topo do conteúdo, não fixa na tela */
.urgency {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px;
  border-radius: var(--r-md);
  background: linear-gradient(180deg, rgba(232, 35, 42, .2), rgba(204, 20, 20, .1));
  border: 1px solid rgba(232, 35, 42, .42);
  box-shadow: 0 8px 30px -12px rgba(232, 35, 42, .6), inset 0 1px 0 rgba(255, 255, 255, .1);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #FFC7C5;
  margin-bottom: clamp(22px, 4vw, 34px);
  text-wrap: balance;
  line-height: 1.5;
}
.urgency__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 14px var(--red-bright);
  flex: none;
  animation: pulse-dot 1.8s var(--ease-soft) infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .45; transform: scale(.8); }
}

.hero__title .gold { display: block; }
.hero__lead { margin-bottom: clamp(28px, 5vw, 40px); }

/* ------------------------------------------------- Palco do vídeo/mockup */
.hero__stage { position: relative; display: grid; place-items: center; }

.phone { position: relative; width: min(310px, 76vw); }

.phone__glow {
  position: absolute;
  inset: -14% -18%;
  background: radial-gradient(circle at 50% 45%, rgba(232, 35, 42, .32), transparent 66%);
  filter: blur(52px);
  z-index: 0;
}

/* Moldura dourada, como o player do modelo */
.phone__frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 9 / 17.4;
  border-radius: 42px;
  padding: 10px;
  background: linear-gradient(165deg, #33251A 0%, #0C0806 45%, #2A1D14 100%);
  box-shadow:
    0 0 0 1px rgba(255, 176, 32, .5),
    0 0 46px rgba(255, 176, 32, .26),
    var(--shadow-lg),
    inset 0 1px 0 rgba(255, 255, 255, .18);
  animation: float-soft 7s var(--ease-soft) infinite;
}

.phone__notch {
  position: absolute;
  top: 19px; left: 50%;
  transform: translateX(-50%);
  width: 34%; height: 20px;
  background: #060606;
  border-radius: var(--r-pill);
  z-index: 3;
}

.phone__screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 33px;
  overflow: hidden;
  background: #0B0B0B;
}
.phone__screen video { width: 100%; height: 100%; object-fit: cover; }

/* Com vídeo real: a moldura assume a proporção do arquivo (828x1792) para não
   cortar as laterais, e o notch sai de cena porque o vídeo já tem o seu. */
.phone--video .phone__frame { aspect-ratio: 828 / 1792; }
.phone--video .phone__notch { display: none; }

@keyframes float-soft {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* -------------------------------------------- Conversa animada (fallback) */
.chat {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: left;
  background:
    radial-gradient(95% 55% at 50% 0%, rgba(232, 35, 42, .14), transparent 72%),
    linear-gradient(180deg, #191110 0%, #120C0B 100%);
}

.chat__bar {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 42px 15px 12px;
  background: rgba(255, 255, 255, .05);
  border-bottom: 1px solid var(--line);
  flex: none;
}
.chat__avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  flex: none;
  transition: background .4s;
}
.chat__meta { display: grid; line-height: 1.25; min-width: 0; }
.chat__meta strong { font-size: 13px; font-weight: 700; }
.chat__meta small { font-size: 10px; color: var(--gold); }

.chat__body {
  flex: 1;
  padding: 15px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: flex-end;
  overflow: hidden;
}

.bubble {
  max-width: 84%;
  padding: 8px 12px;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.45;
  animation: bubble-in .42s var(--ease-spring) both;
  word-break: break-word;
}
.bubble--in {
  align-self: flex-start;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .09);
  border-bottom-left-radius: 4px;
}
.bubble--out {
  align-self: flex-end;
  background: linear-gradient(140deg, #A8231F, #7A1512);
  border: 1px solid rgba(255, 122, 90, .3);
  border-bottom-right-radius: 4px;
  color: #FFF0EE;
}
.bubble--typing { display: inline-flex; gap: 4px; padding: 11px 13px; }
.bubble--typing i {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: typing 1.1s infinite;
}
.bubble--typing i:nth-child(2) { animation-delay: .18s; }
.bubble--typing i:nth-child(3) { animation-delay: .36s; }

/* Figurinha enviada dentro da conversa */
.bubble--sticker {
  align-self: flex-end;
  background: none;
  border: 0;
  padding: 0;
  max-width: 56%;
  animation: sticker-pop .5s var(--ease-spring) both;
}
.chat-sticker {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  border-radius: 16px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  text-align: center;
  padding: 8px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .05));
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 14px 30px -14px rgba(0, 0, 0, .95);
}
.chat-sticker::before {
  content: '';
  position: absolute;
  inset: -25%;
  background: radial-gradient(circle, var(--sticker-color, var(--gold)), transparent 62%);
  opacity: .3;
  filter: blur(14px);
}
.chat-sticker em {
  position: relative;
  font-size: 34px;
  font-style: normal;
  line-height: 1;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, .6));
}
.chat-sticker b {
  position: relative;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  text-shadow: 0 2px 6px rgba(0, 0, 0, .7);
}
.bubble__time {
  display: block;
  font-size: 9px;
  opacity: .55;
  text-align: right;
  margin-top: 2px;
}

.chat__input {
  flex: none;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px 15px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
}
.chat__field {
  flex: 1;
  padding: 7px 13px;
  border-radius: var(--r-pill);
  background: var(--surface-2);
  font-size: 11px;
  color: var(--text-dim);
}
.chat__send {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--grad-gold);
  color: var(--on-gold);
  font-size: 11px;
  flex: none;
}

@keyframes bubble-in {
  from { opacity: 0; transform: translateY(10px) scale(.94); }
  to   { opacity: 1; transform: none; }
}
@keyframes sticker-pop {
  0%   { opacity: 0; transform: scale(.6) rotate(-8deg); }
  70%  { transform: scale(1.06) rotate(2deg); }
  100% { opacity: 1; transform: none; }
}
@keyframes typing {
  0%, 60%, 100% { opacity: .3; transform: translateY(0); }
  30%           { opacity: 1; transform: translateY(-3px); }
}

/* --------------------------------------------------- Figurinhas flutuantes
   O charme da primeira versão: balões de resposta ao redor do aparelho. */
.hero__float {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px 9px 11px;
  border-radius: var(--r-pill);
  background: rgba(20, 12, 11, .88);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, .08);
  animation: float-soft 6.5s var(--ease-soft) infinite;
  white-space: nowrap;
}
.hero__float span { font-size: 18px; line-height: 1; }
.hero__float small { font-size: 11px; font-weight: 700; }
/* Ancorados fora das bordas do aparelho, para nunca cobrirem a conversa */
.hero__float--1 { top: 16%;   left: -178px;  animation-delay: -1.2s; }
.hero__float--2 { top: 45%;   right: -186px; animation-delay: -3.4s; }
.hero__float--3 { bottom: 14%; left: -150px; animation-delay: -2.1s; }

/* ------------------------------------------------------- Selos e segmentos */
.hero__chips { margin-top: clamp(26px, 4vw, 36px); }

.hero__segments {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
}
.hero__segments li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: var(--r-pill);
  background: transparent;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  transition: border-color .3s, color .3s;
}
.hero__segments li:hover { border-color: rgba(255, 176, 32, .45); color: var(--text); }
.hero__segments li span { font-size: 14px; }

/* Convite para rolar — ocupa o lugar do CTA na primeira dobra */
.scroll-hint {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: clamp(30px, 5vw, 44px);
  color: var(--text-dim);
  transition: color .3s;
}
.scroll-hint:hover { color: var(--gold); }
.scroll-hint__label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.scroll-hint__arrow {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 176, 32, .4);
  color: var(--gold);
  animation: bob 2s var(--ease-soft) infinite;
}
.scroll-hint__arrow svg { width: 17px; height: 17px; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(5px); }
}

/* ═══════════════════════════ BLOCO 2 — O QUE VOCÊ VAI RECEBER ══ */
.showcase { overflow: hidden; }

.segment-tabs {
  display: flex;
  gap: 7px;
  justify-content: center;
  flex-wrap: wrap;
  margin: clamp(26px, 4vw, 36px) auto clamp(26px, 4vw, 34px);
}
.segment-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line-strong);
  background: var(--surface-1);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-soft);
  transition: color .3s, border-color .3s, background .3s, transform .25s var(--ease-spring);
}
.segment-tab:hover { transform: translateY(-2px); color: var(--text); }
.segment-tab[aria-selected='true'] {
  color: var(--on-red);
  background: var(--grad-red);
  border-color: transparent;
  box-shadow: var(--glow-red);
}
.segment-tab em { font-size: 15px; font-style: normal; }

/* Parede de figurinhas — 8 por segmento */
.sticker-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 1.8vw, 18px);
}
.sticker-wall .sticker {
  animation: wall-in .5s var(--ease-spring) both;
  animation-delay: calc(var(--i, 0) * 45ms);
}
/* Escalonamento vertical: parecem flutuar, não uma tabela */
.sticker-wall .sticker:nth-child(even) { transform: translateY(clamp(12px, 2.2vw, 26px)); }
.sticker-wall .sticker:nth-child(even):hover { transform: translateY(clamp(4px, 1.2vw, 16px)); }

@keyframes wall-in {
  from { opacity: 0; transform: translateY(20px) scale(.92); }
}

.showcase__note {
  text-align: center;
  margin-top: clamp(28px, 4vw, 40px);
  color: var(--text-soft);
  font-size: 15px;
}
.showcase__note strong { color: var(--gold); font-weight: 700; }

/* Esteira de situações cobertas */
.marquee {
  margin-top: clamp(30px, 4.5vw, 46px);
  padding-block: 14px;
  border-block: 1px solid var(--line);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: marquee 46s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  background: var(--surface-1);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-soft);
  white-space: nowrap;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════ BLOCO 3 — BÔNUS ══ */
.bonus__panel {
  position: relative;
  margin-top: clamp(26px, 4vw, 36px);
  padding: clamp(24px, 4vw, 38px);
  border-radius: var(--r-lg);
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(255, 176, 32, .12), transparent 60%),
    linear-gradient(160deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .015));
  border: 1px solid rgba(255, 176, 32, .35);
  box-shadow: 0 0 44px rgba(255, 176, 32, .12), var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, .08);
}
.bonus__glow {
  position: absolute;
  width: 60%; aspect-ratio: 1;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 176, 32, .3), transparent 66%);
  filter: blur(60px);
}
.bonus__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.bonus__list li {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 15px 16px;
  border-radius: var(--r-md);
  background: var(--ink-950);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
  transition: transform .3s var(--ease-spring), border-color .3s;
  animation: gift-in .5s var(--ease-spring) both;
  animation-delay: calc(var(--i, 0) * 70ms);
}
.bonus__list li:hover { transform: translateY(-3px); border-color: rgba(255, 176, 32, .45); }
.bonus__list em { font-size: 20px; font-style: normal; line-height: 1; flex: none; }

@keyframes gift-in {
  from { opacity: 0; transform: translateY(14px) scale(.94); }
}

.bonus__amount {
  position: relative;
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
  text-align: center;
}
.bonus__note {
  position: relative;
  margin-top: 18px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ═══════════════════════════════════ BLOCO 4 — DEPOIMENTOS ══ */
.carousel { margin-top: clamp(28px, 4vw, 40px); }

.carousel__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
  padding-block: 4px 8px;
}
.carousel__viewport::-webkit-scrollbar { display: none; }

.carousel__track { display: flex; gap: 14px; }

.tcard {
  flex: 0 0 min(340px, 80vw);
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(20px, 3vw, 28px);
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .02));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, .06);
  text-align: left;
  transition: transform .35s var(--ease-out), border-color .3s, box-shadow .3s;
}
.tcard:hover { transform: translateY(-4px); border-color: rgba(255, 176, 32, .35); }

.tcard__quote { font-size: 14px; line-height: 1.6; color: var(--text-soft); flex: 1; }
.tcard__stars { color: var(--gold); font-size: 14px; letter-spacing: .14em; }

.tcard__person { display: flex; align-items: center; gap: 12px; }
.tcard__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  display: grid;
  place-items: center;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  font-size: 16px;
  font-weight: 800;
  flex: none;
}
.tcard__name { font-size: 14px; font-weight: 700; }
.tcard__biz { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim); }

.tcard__shot { border-radius: var(--r-md); border: 1px solid var(--line); overflow: hidden; }
.tcard__shot img { width: 100%; height: auto; display: block; }

/* Print puro: nenhuma identificação ou texto fora da própria imagem. */
.tcard--screenshot-only {
  flex-basis: min(340px, 80vw);
  gap: 0;
  padding: 8px;
}
.tcard--screenshot-only .tcard__shot {
  border: 0;
  border-radius: calc(var(--r-lg) - 6px);
}

/* Estado PLACEHOLDER — vaga a preencher, nunca um depoimento fake */
.tcard--placeholder {
  border-style: dashed;
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, .015);
  min-height: 240px;
  justify-content: center;
  align-items: flex-start;
}
.tcard--placeholder .tcard__slot {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.tcard--placeholder h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-soft);
  margin: 0;
}
.tcard--placeholder p { font-size: 13px; color: var(--text-dim); line-height: 1.55; }
.tcard--placeholder ul { display: grid; gap: 7px; font-size: 12px; color: var(--text-dim); }
.tcard--placeholder li { display: flex; gap: 9px; align-items: center; }
.tcard--placeholder li::before {
  content: '';
  width: 13px; height: 13px;
  border-radius: 3px;
  border: 1px dashed rgba(255, 255, 255, .28);
  flex: none;
}

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.carousel__btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--surface-1);
  border: 1px solid var(--line-strong);
  color: var(--text-soft);
  font-size: 16px;
  transition: background .3s, transform .25s var(--ease-spring), color .3s, border-color .3s;
}
.carousel__btn:hover {
  background: var(--ink-700);
  color: var(--gold);
  border-color: rgba(255, 176, 32, .4);
  transform: scale(1.06);
}
.carousel__dots { display: flex; gap: 7px; }
.carousel__dot {
  width: 7px; height: 7px;
  border-radius: var(--r-pill);
  background: var(--line-strong);
  transition: width .3s var(--ease-out), background .3s;
}
.carousel__dot.is-active { width: 24px; background: var(--gold); }

/* ══════════════════════════════════ BLOCO 5 — COMO É A ENTREGA ══ */
.delivery::before {
  content: '';
  position: absolute;
  inset: 8% 0 auto;
  height: 72%;
  pointer-events: none;
  background:
    radial-gradient(45% 55% at 15% 45%, rgba(232, 35, 42, .1), transparent 70%),
    radial-gradient(42% 58% at 85% 55%, rgba(255, 176, 32, .1), transparent 70%);
}
.delivery__flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(28px, 5vw, 44px);
  counter-reset: delivery-step;
}
.delivery__step {
  position: relative;
  min-width: 0;
  padding: 22px 18px 20px;
  border-radius: var(--r-lg);
  background:
    radial-gradient(110% 80% at 50% 0%, rgba(255, 176, 32, .09), transparent 66%),
    linear-gradient(160deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018));
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, .06);
}
.delivery__number {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 176, 32, .12);
  border: 1px solid rgba(255, 176, 32, .38);
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
}
.delivery__icon {
  display: block;
  width: fit-content;
  margin-bottom: 18px;
  font-size: 27px;
  line-height: 1;
  filter: drop-shadow(0 8px 18px rgba(255, 176, 32, .28));
}
.delivery__step h3 {
  max-width: 15ch;
  font-size: 15px;
  line-height: 1.18;
}
.delivery__step p {
  margin-top: 11px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.55;
}
.delivery__step--whatsapp {
  border-color: rgba(34, 197, 94, .38);
  box-shadow: 0 18px 44px -18px rgba(34, 197, 94, .3), inset 0 1px 0 rgba(255, 255, 255, .07);
}
.delivery__step--whatsapp .delivery__number {
  color: #73E39A;
  background: rgba(34, 197, 94, .12);
  border-color: rgba(34, 197, 94, .38);
}
.delivery__alert {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  max-width: 760px;
  margin: 20px auto 0;
  padding: 16px 18px;
  border-radius: var(--r-md);
  background: rgba(255, 176, 32, .08);
  border: 1px solid rgba(255, 176, 32, .28);
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.55;
}
.delivery__alert > span { flex: none; }
.delivery__alert strong { color: var(--text); }

/* ═══════════════════════════════════════════ BLOCO 6 — OFERTA ══ */
/* O card de destaque da página: moldura dourada com brilho, como no modelo */
.offer__card {
  position: relative;
  margin-top: clamp(26px, 4vw, 36px);
  padding: clamp(26px, 4.5vw, 42px);
  border-radius: var(--r-xl);
  overflow: hidden;
  text-align: center;
  background: linear-gradient(180deg, #1A1109 0%, #0E0806 60%);
  border: 1px solid rgba(255, 176, 32, .55);
  box-shadow:
    0 0 60px rgba(255, 176, 32, .2),
    0 0 0 6px rgba(255, 176, 32, .05),
    var(--shadow-lg);
}
.offer__aura {
  position: absolute;
  width: 80%; aspect-ratio: 1;
  top: -34%; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 176, 32, .26), transparent 64%);
  filter: blur(64px);
}

.offer__badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: var(--r-pill);
  background: var(--grad-gold);
  color: var(--on-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  box-shadow: var(--glow-gold);
}
.offer__badge::before { content: '🔥'; }

.offer__sub { position: relative; margin-top: 16px; }

.offer__benefits {
  position: relative;
  display: grid;
  gap: 11px;
  margin: clamp(24px, 4vw, 32px) auto;
  max-width: 380px;
  text-align: left;
}
.offer__benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, .9);
}
.offer__benefits span {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 176, 32, .16);
  border: 1px solid rgba(255, 176, 32, .45);
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  flex: none;
}

.pricebox { position: relative; margin-bottom: clamp(22px, 3.5vw, 30px); }
.pricebox__from { font-size: 14px; color: var(--text-dim); }
.pricebox__from s { color: var(--red); }
.pricebox__now {
  font-family: var(--font-display);
  font-size: clamp(46px, 13vw, 76px);
  line-height: 1;
  letter-spacing: -.03em;
  margin: 6px 0 8px;
  color: var(--gold);
  text-shadow: 0 0 40px rgba(255, 176, 32, .55);
}
.pricebox__note { color: var(--text-soft); }
.pricebox__save {
  margin-top: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}
.pricebox__micro {
  position: relative;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 16px;
  line-height: 1.5;
}

/* ════════════════════════════════════════ BLOCO 7 — GARANTIA ══ */
.guarantee__inner {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
  padding: clamp(26px, 4vw, 38px);
  border-radius: var(--r-lg);
  background:
    radial-gradient(110% 90% at 50% 0%, rgba(255, 176, 32, .1), transparent 62%),
    linear-gradient(160deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .015));
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, .07);
}
.guarantee__shield {
  width: 56px;
  color: var(--gold);
  filter: drop-shadow(0 8px 24px rgba(255, 176, 32, .5));
}
/* Com o selo real no lugar do escudo desenhado */
.guarantee__shield.has-seal {
  width: clamp(112px, 22vw, 148px);
  filter: drop-shadow(0 14px 34px rgba(255, 176, 32, .4));
  animation: seal-in .6s var(--ease-spring) both;
}
.guarantee__seal { width: 100%; height: auto; }
@keyframes seal-in {
  from { opacity: 0; transform: scale(.82) rotate(-8deg); }
}
.guarantee__text { color: var(--text-soft); font-size: 14px; max-width: 52ch; }

/* ════════════════════════════════════════════ BLOCO 8 — FAQ ══ */
.faq__list { display: grid; gap: 9px; margin-top: clamp(26px, 4vw, 36px); }
.faq__item {
  border-radius: var(--r-md);
  background: linear-gradient(160deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .015));
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color .3s, background .3s;
}
.faq__item:hover { border-color: var(--line-strong); }
.faq__item.is-open { border-color: rgba(255, 176, 32, .45); }

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 20px;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
}
.faq__icon { position: relative; width: 18px; height: 18px; flex: none; }
.faq__icon::before, .faq__icon::after {
  content: '';
  position: absolute;
  inset: 50% 0 auto 0;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transition: transform .3s var(--ease-spring);
}
.faq__icon::after { transform: rotate(90deg); }
.is-open .faq__icon::after { transform: rotate(0deg); }

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .38s var(--ease-out);
}
.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > p {
  overflow: hidden;
  padding-inline: 20px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
  opacity: 0;
  transition: opacity .3s var(--ease-out), padding .38s var(--ease-out);
}
.is-open .faq__a > p { opacity: 1; padding-bottom: 20px; }

.faq__cta { margin-top: clamp(26px, 4vw, 36px); }

/* ══════════════════════════════════════════ RESPONSIVO ══ */
@media (max-width: 860px) {
  /* Não há espaço lateral para o balão inteiro: vira um selo redondo
     com o emoji, encostado na borda do aparelho. */
  .hero__float { padding: 0; width: 42px; height: 42px; justify-content: center; border-radius: 50%; }
  .hero__float small { display: none; }
  .hero__float span { font-size: 20px; }
  .hero__float--1 { top: 15%;    left: -14px; }
  .hero__float--2 { top: 45%;    right: -14px; }
  .hero__float--3 { bottom: 14%; left: -14px; }
  .delivery__flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  /* Figurinhas grandes no celular: 2 colunas */
  .sticker-wall { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .bonus__list { grid-template-columns: 1fr; }
  .delivery__flow { grid-template-columns: 1fr; }
  .delivery__step { padding: 20px; }
  .delivery__step h3 { max-width: none; }
  .urgency { font-size: 10px; letter-spacing: .1em; padding: 10px 16px; }
  .segment-tab { padding: 9px 13px; font-size: 11px; }
  .faq__q { padding: 17px 16px; font-size: 14px; }
  .faq__a > p { padding-inline: 16px; }
  .is-open .faq__a > p { padding-bottom: 17px; }
}

@media (min-width: 721px) and (max-width: 1024px) {
  .sticker-wall { gap: 14px; }
}
