/* ===== Reset & base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #08080c;
  --bg-alt: #0f0e16;
  --card: #15141d;
  --card-2: #1b1926;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.16);
  --text: #f6f5f9;
  --text-dim: #a9a7b5;
  --text-soft: #78768a;
  --yellow: #fcb316;
  --orange: #e85e25;
  --cyan: #35b8da;
  --green: #3ec46d;
  --gradient: linear-gradient(120deg, #fcb316 0%, #e85e25 100%);
  --gradient-full: linear-gradient(120deg, #35b8da 0%, #fcb316 52%, #e85e25 100%);
  --radius: 18px;
  --maxw: 1200px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.62;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
strong { color: var(--text); font-weight: 700; }

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

.section { padding: 100px 0; position: relative; }
.section.alt { background: var(--bg-alt); }
.section.tight { padding: 72px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 18px;
}
.eyebrow img { width: 16px; height: auto; }

.grad { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }

.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4.4vw, 46px); }
.section-head p { color: var(--text-dim); font-size: 17px; margin-top: 18px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 34px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  border: none;
  font-family: 'Space Grotesk', sans-serif;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  text-align: center;
}
.btn-primary {
  background: var(--gradient);
  color: #14120c;
  box-shadow: 0 10px 34px -10px rgba(252, 179, 22, 0.75);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(252, 179, 22, 0.9); }
.btn-ghost {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--line-strong);
  font-weight: 600;
}
.btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.35); }
.btn-lg { padding: 21px 44px; font-size: 17.5px; }
.btn-sub { display: block; font-size: 13px; color: var(--text-soft); margin-top: 14px; }

/* ===== Header ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
  border-bottom: 1px solid transparent;
}
header.scrolled {
  background: rgba(8, 8, 12, 0.88);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding: 10px 0;
}
header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo img { height: 56px; width: auto; }
header .btn { padding: 12px 24px; font-size: 14.5px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 58% 32%; }
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,12,0.98) 0%, rgba(8,8,12,0.95) 30%, rgba(8,8,12,0.76) 48%, rgba(8,8,12,0.34) 70%, rgba(8,8,12,0.18) 100%),
    linear-gradient(180deg, rgba(8,8,12,0.5) 0%, rgba(8,8,12,0.2) 42%, rgba(8,8,12,0.8) 86%, var(--bg) 100%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-content { max-width: 640px; }
.hero h1 {
  font-size: clamp(34px, 5.1vw, 61px);
  margin-bottom: 22px;
}
.hero h1 em { font-style: normal; }
.hero .lead {
  font-size: clamp(16.5px, 1.6vw, 19px);
  color: var(--text-dim);
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--text-dim);
  border: 1px solid var(--line); background: rgba(255,255,255,0.03);
  padding: 8px 15px; border-radius: 100px;
}
.badge b { color: var(--yellow); }

/* ===== Faixa de marcas ===== */
.marquee-wrap {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  background: var(--bg-alt);
  overflow: hidden;
}
.marquee-label { text-align: center; font-size: 12px; color: var(--text-soft); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; }
.marquee { display: flex; width: max-content; animation: scroll 36s linear infinite; }
.marquee-group { display: flex; align-items: center; }
.marquee img {
  height: 27px; width: auto; padding: 0 32px;
  opacity: 0.7; filter: grayscale(1) brightness(1.7);
}
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== Carta (deixa eu adivinhar) ===== */
.letter { position: relative; }
.letter::before {
  content: '';
  position: absolute; top: 12%; left: -6%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(53,184,218,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.letter-body { position: relative; z-index: 2; }
.letter-body p {
  font-size: clamp(19px, 2.3vw, 25px);
  line-height: 1.55;
  color: var(--text-dim);
  margin-bottom: 26px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.letter-body p strong { color: var(--text); font-weight: 700; }
.letter-body .hit {
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 700;
  color: var(--text);
  margin: 40px 0 0;
  line-height: 1.05;
}
.letter-body .hit span { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.letter-rule { width: 54px; height: 3px; background: var(--gradient); border-radius: 3px; margin-bottom: 34px; }

/* ===== Confissão / quote ===== */
.confession {
  position: relative;
  background:
    linear-gradient(180deg, rgba(232,94,37,0.07), transparent 60%),
    var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 58px 56px;
  overflow: hidden;
}
.confession .mark {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 130px; line-height: 0.6;
  background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: 0.55;
  display: block; margin-bottom: 10px;
}
.confession blockquote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 3.1vw, 36px);
  font-weight: 700;
  line-height: 1.26;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
}
.confession blockquote em { font-style: normal; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.confession .who { display: flex; align-items: center; gap: 14px; }
.confession .who img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; object-position: top center; border: 1px solid var(--line-strong); }
.confession .who strong { display: block; font-size: 15px; }
.confession .who span { font-size: 13px; color: var(--text-soft); }
.confession-after { margin-top: 40px; max-width: 760px; }
.confession-after p { color: var(--text-dim); font-size: 17px; margin-bottom: 16px; }

/* ===== 6 decisões ===== */
.dec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.dec-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px 30px;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.dec-card:hover { border-color: rgba(252,179,22,0.4); transform: translateY(-3px); }
.dec-card .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.08em;
  background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; margin-bottom: 14px;
}
.dec-card h3 { font-size: 20px; margin-bottom: 12px; }
.dec-card p { color: var(--text-dim); font-size: 14.8px; }
.dec-card .ghost {
  position: absolute;
  right: -14px; bottom: -22px;
  width: 92px; opacity: 0.07;
  pointer-events: none;
}
.dec-note {
  margin-top: 26px;
  border: 1px dashed rgba(252,179,22,0.35);
  background: rgba(252,179,22,0.05);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex; gap: 18px; align-items: flex-start;
}
.dec-note img { width: 34px; flex-shrink: 0; margin-top: 2px; }
.dec-note p { font-size: 15.5px; color: var(--text-dim); }

/* ===== Antes x depois ===== */
.swap { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.swap-col {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  background: var(--card);
}
.swap-col.after { background: linear-gradient(180deg, rgba(252,179,22,0.09), rgba(21,20,29,0.9)); border-color: rgba(252,179,22,0.3); }
.swap-col h3 { font-size: 19px; margin-bottom: 4px; }
.swap-col .tag { font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-soft); font-weight: 700; margin-bottom: 22px; display: block; }
.swap-col.after .tag { color: var(--yellow); }
.swap-col li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15.3px; color: var(--text-dim);
  padding: 13px 0;
  border-top: 1px solid var(--line);
}
.swap-col li:first-of-type { border-top: none; }
.swap-col .ico { flex-shrink: 0; width: 19px; height: 19px; margin-top: 3px; }

/* ===== Pra quem é ===== */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fit-card { border: 1px solid var(--line); background: var(--card); border-radius: var(--radius); padding: 34px 30px; }
.fit-card h3 { font-size: 20px; margin-bottom: 20px; display: flex; align-items: center; gap: 11px; }
.fit-card h3 .dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.fit-card.yes h3 .dot { background: var(--green); box-shadow: 0 0 14px rgba(62,196,109,0.8); }
.fit-card.no h3 .dot { background: #e0574f; box-shadow: 0 0 14px rgba(224,87,79,0.7); }
.fit-card li { font-size: 15.3px; color: var(--text-dim); padding: 12px 0; border-top: 1px solid var(--line); }
.fit-card li:first-of-type { border-top: none; }

/* ===== O que você leva ===== */
.deliver-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.deliver {
  background: var(--card-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.deliver .k {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 30px; font-weight: 700;
  background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; margin-bottom: 8px;
}
.deliver p { font-size: 14.6px; color: var(--text-dim); }

/* ===== Autoridade ===== */
.author-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.author-photo { position: relative; border-radius: 22px; overflow: hidden; }
.author-photo > img { width: 100%; height: 540px; object-fit: cover; object-position: 62% center; }
.author-photo .pineapple {
  position: absolute; bottom: 18px; right: 16px; width: 74px; height: auto;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.6));
  transform: rotate(9deg);
}
.author-body h2 { font-size: clamp(26px, 3.6vw, 40px); margin-bottom: 20px; }
.author-body > p { color: var(--text-dim); font-size: 16.6px; margin-bottom: 14px; }
.creds { display: grid; gap: 12px; margin-top: 28px; }
.creds li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 15.3px; color: var(--text-dim);
  padding: 15px 18px;
  background: var(--card); border: 1px solid var(--line); border-radius: 13px;
}
.creds li .bul {
  flex-shrink: 0; width: 7px; height: 7px; border-radius: 50%;
  background: var(--gradient); margin-top: 10px;
  box-shadow: 0 0 12px rgba(252,179,22,0.7);
}
.creds li strong { color: var(--text); }

/* ===== Oferta ===== */
.offer-wrap { position: relative; }
.offer-wrap::before {
  content: '';
  position: absolute; inset: -60px 10% auto 10%;
  height: 420px;
  background: radial-gradient(ellipse at center, rgba(252,179,22,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.offer {
  position: relative;
  max-width: 660px; margin: 0 auto;
  background: linear-gradient(180deg, rgba(252,179,22,0.12), var(--card) 40%);
  border: 1px solid rgba(252,179,22,0.35);
  border-radius: 28px;
  padding: 46px 44px 40px;
  text-align: center;
  box-shadow: 0 40px 80px -40px rgba(252,179,22,0.5);
}
.offer .pineapple { width: 76px; margin: 0 auto 18px; }
.offer h3 { font-size: clamp(24px, 3.4vw, 32px); margin-bottom: 10px; }
.offer .sub { color: var(--text-dim); font-size: 16px; margin-bottom: 30px; }
.offer .includes { text-align: left; display: grid; gap: 11px; margin-bottom: 32px; }
.offer .includes li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.3px; color: var(--text-dim); }
.offer .includes .ico { width: 19px; height: 19px; flex-shrink: 0; margin-top: 3px; }
.price-box { border-top: 1px solid var(--line); padding-top: 28px; margin-bottom: 26px; }
.price-box .old { font-size: 15px; color: var(--text-soft); text-decoration: line-through; }
.price-box .now {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(46px, 7vw, 66px); font-weight: 700; line-height: 1;
  background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin: 6px 0 4px;
}
.price-box .cond { font-size: 14.5px; color: var(--text-dim); }
.offer .btn { width: 100%; }
.guarantee {
  margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line);
  display: flex; gap: 16px; align-items: center; text-align: left;
}
.guarantee .seal {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 17px; color: #14120c;
  line-height: 1.05; text-align: center;
}
.guarantee p { font-size: 14.3px; color: var(--text-dim); }
.guarantee strong { display: block; font-size: 15px; margin-bottom: 3px; }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; color: var(--text);
  padding: 24px 0; font-size: 17px; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  cursor: pointer; font-family: 'Space Grotesk', sans-serif;
}
.faq-q .plus { font-size: 24px; color: var(--yellow); transition: transform 0.25s ease; flex-shrink: 0; line-height: 1; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { color: var(--text-dim); font-size: 15.6px; padding-bottom: 24px; }

/* ===== CTA final ===== */
.final {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  padding: 92px 40px;
  text-align: center;
}
.final-bg { position: absolute; inset: 0; z-index: 0; }
.final-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.final-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,94,37,0.93), rgba(252,179,22,0.9));
}
.final-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.final h2 { font-size: clamp(28px, 4.6vw, 48px); color: #16120a; margin-bottom: 18px; }
.final p { color: rgba(22,18,10,0.82); font-size: 17.5px; margin-bottom: 34px; font-weight: 500; }
.final .btn-primary { background: #14120c; color: #fff; box-shadow: 0 14px 40px -12px rgba(0,0,0,0.6); }
.final .btn-sub { color: rgba(22,18,10,0.7); font-weight: 600; }

/* ===== Footer ===== */
footer { padding: 46px 0 120px; border-top: 1px solid var(--line); }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap; margin-bottom: 28px; }
.footer-brand img { height: 50px; margin-bottom: 12px; }
.footer-brand p { color: var(--text-soft); font-size: 13.6px; max-width: 340px; }
.footer-links { display: flex; gap: 46px; flex-wrap: wrap; }
.footer-links h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-soft); margin-bottom: 13px; }
.footer-links a { display: block; font-size: 14px; color: var(--text-dim); margin-bottom: 9px; }
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  padding-top: 22px; border-top: 1px solid var(--line);
  font-size: 12.3px; color: var(--text-soft);
}

/* ===== Barra fixa de compra ===== */
.buybar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 95;
  background: rgba(10,10,14,0.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  padding: 12px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transform: translateY(110%);
  transition: transform 0.3s ease;
}
.buybar.show { transform: translateY(0); }
.buybar .info strong { display: block; font-size: 14.5px; font-family: 'Space Grotesk', sans-serif; }
.buybar .info span { font-size: 12.5px; color: var(--text-soft); }
.buybar .btn { padding: 14px 26px; font-size: 15px; }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== Responsivo ===== */
@media (max-width: 980px) {
  .hero {
    display: block;
    min-height: 0;
    padding: 0 0 60px;
  }
  .hero-bg { inset: 0 0 auto 0; height: 44vh; }
  .hero-bg img { object-position: 56% 24%; }
  .hero-bg::after {
    background: linear-gradient(180deg, rgba(8,8,12,0.5) 0%, rgba(8,8,12,0.12) 30%, rgba(8,8,12,0.78) 80%, var(--bg) 100%);
  }
  .hero-grid { padding-top: calc(44vh - 36px); }
  .hero-content { max-width: none; }
  .hero-actions { align-items: stretch; width: 100%; }
  .hero .btn { width: 100%; }
  .dec-grid { grid-template-columns: repeat(2, 1fr); }
  .deliver-grid { grid-template-columns: repeat(2, 1fr); }
  .author-grid { grid-template-columns: 1fr; gap: 34px; }
  .author-photo img { height: 420px; }
  .confession { padding: 40px 30px; }
}

@media (max-width: 680px) {
  .section { padding: 70px 0; }
  .swap, .fit-grid { grid-template-columns: 1fr; }
  .dec-grid { grid-template-columns: 1fr; }
  .deliver-grid { grid-template-columns: 1fr; }
  .offer { padding: 36px 24px 32px; }
  .final { padding: 60px 22px; }
  .footer-grid { flex-direction: column; }
  .footer-links { gap: 34px; }
  header .btn { display: none; }
  .logo img { height: 46px; }
  .buybar .info span { display: none; }
  .letter-body p { font-size: 18.5px; }
}
