:root {
  color-scheme: light;
  --font-heading: "Exo 2", sans-serif;
  --font-body: "Lato", sans-serif;

  /* paleta vinho + dourado da landing (sobrescreve os tokens navy do common.css só nesta pagina) */
  --wine-950: #2a0a0a;
  --wine-900: #450f0f;
  --wine-800: #631818;
  --wine-700: #7d1f1f;
  --wine-600: #9a2b2b;
  --gold: #d4af37;
  --gold-light: #f2d98a;
  --gold-dark: #a9791f;
  --cream: #faf5ec;
  --ink: #2a1414;
  --muted-warm: #7a5f5f;
  --green: #16c172;
  --green-dark: #0f9d58;

  --navy: var(--wine-900);
  --dark: var(--ink);
  --muted: var(--muted-warm);
  --white: #ffffff;
  --shadow-sm: 0 10px 26px rgba(69, 15, 15, 0.10);
  --shadow-lg: 0 26px 60px rgba(69, 15, 15, 0.22);
}

body { background: var(--cream); }

/* ===== ANIMACOES ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22, 193, 114, 0.5); }
  50% { box-shadow: 0 0 0 16px rgba(22, 193, 114, 0); }
}

@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.35), var(--shadow-lg); }
  50% { box-shadow: 0 0 0 12px rgba(212, 175, 55, 0), var(--shadow-lg); }
}

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

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(.2,.7,.2,1), transform 0.8s cubic-bezier(.2,.7,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.4s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.47s; }

/* ===== SECOES ESCURAS (vinho) reutilizaveis ===== */
.on-wine,
.on-dark {
  color: var(--white);
}

.on-wine {
  background:
    radial-gradient(circle at 20% 15%, rgba(212,175,55,0.10) 0%, transparent 45%),
    radial-gradient(circle at 85% 85%, rgba(212,175,55,0.08) 0%, transparent 45%),
    linear-gradient(160deg, var(--wine-950) 0%, var(--wine-800) 55%, var(--wine-700) 100%);
}

.on-dark {
  background: linear-gradient(180deg, var(--wine-900) 0%, var(--wine-800) 100%);
}

.on-wine .eyebrow,
.on-dark .eyebrow { color: var(--gold-light); }

.on-wine .eyebrow::before,
.on-wine .eyebrow::after,
.on-dark .eyebrow::before,
.on-dark .eyebrow::after { background: var(--gold-light); opacity: 0.7; }

.on-wine .title,
.on-dark .title { color: var(--white); }

.on-wine .subtitle,
.on-dark .subtitle { color: rgba(255,255,255,0.75); }

.on-wine .divider,
.on-dark .divider { background: var(--gold); }

.on-dark .quote-card {
  background: rgba(255,255,255,0.06);
  border-left-color: var(--gold-light);
  color: var(--white);
  backdrop-filter: blur(2px);
}

.on-dark .quote-card::before { color: var(--gold-light); }

/* ===== HERO ===== */
.hero {
  background-image:
    linear-gradient(180deg, rgba(18,4,4,0.68) 0%, rgba(18,4,4,0.32) 45%, rgba(18,4,4,0.5) 100%),
    url("assets/hero-bg-desktop.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-color: var(--wine-800);
  color: var(--white);
  min-height: 1050px;
  display: flex;
  align-items: flex-start;
  padding: 48px 0 60px;
  position: relative;
}

@media all and (max-width: 800px) {
  .hero {
    background-image:
      linear-gradient(180deg, rgba(18,4,4,0.68) 0%, rgba(18,4,4,0.32) 45%, rgba(18,4,4,0.5) 100%),
      url("assets/hero-bg-mobile.webp");
  }
}

.hero__topbar {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.hero__content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero__headline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.25;
  margin-bottom: 16px;
}

.hero__headline .accent-green { color: var(--green); }

.hero__sub {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  max-width: 620px;
  margin: 0 auto 320px;
}

.hero .btn {
  animation: pulseGlow 2.6s ease-in-out infinite;
}

.hero__trust {
  margin-top: 24px;
}

/* ===== DORES ===== */
.dores {
  padding-top: 40px;
}

.dores__list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.quote-card {
  position: relative;
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-sm);
  padding: 26px 32px 26px 56px;
  text-align: left;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.quote-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-lg);
}

.quote-card::before {
  content: "\201C";
  position: absolute;
  left: 16px;
  top: 4px;
  font-family: var(--font-heading);
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
}

/* ===== POR QUE ISSO ACONTECE ===== */
.porque__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 20px;
}

.porque__item {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.porque__item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.porque__num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 34px;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  flex-shrink: 0;
  line-height: 1;
}

.porque__item p {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--muted);
  padding-top: 4px;
}

/* ===== TRANSFORMACAO (secao de virada, vinho dramatico) ===== */
.transformacao {
  position: relative;
}

.check-list {
  list-style: none;
  max-width: 640px;
  margin: 0 auto 20px;
  text-align: left;
  display: grid;
  gap: 6px;
}

.check-list li {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.5;
  color: var(--white);
  border-radius: 10px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.check-list li:hover {
  background: rgba(255,255,255,0.06);
  transform: translateX(4px);
}

.check-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-badge svg {
  width: 14px;
  height: 14px;
  stroke: var(--white);
  stroke-width: 3;
}

.transformacao__gancho {
  margin-top: 50px;
  margin-bottom: 18px;
}

.produto-wordmark {
  text-align: center;
  margin-top: 10px;
}

.produto-wordmark .line {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 16px;
}

.produto-wordmark .kicker {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(242,217,138,0.75);
  margin-bottom: 6px;
}

.produto-wordmark span:not(.kicker) {
  font-family: "Playfair Display", var(--font-heading), serif;
  font-weight: 700;
  font-size: 34px;
  letter-spacing: 2px;
  color: var(--gold-light);
  text-shadow: 0 2px 24px rgba(212,175,55,0.4);
}

/* ===== 3 PASSOS ===== */
.passos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.passos__item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  border-top: 3px solid var(--gold);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.passos__item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.passos__number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--wine-900);
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -68px auto 20px;
  box-shadow: 0 8px 20px rgba(69,15,15,0.35);
  transition: transform 0.25s ease;
}

.passos__item:hover .passos__number {
  transform: scale(1.1) rotate(-6deg);
}

.passos__item h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 21px;
  color: var(--wine-900);
  margin-bottom: 12px;
}

.passos__item p {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--muted);
}

/* ===== BONUS ===== */
.bonus__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.bonus__item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  text-align: left;
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bonus__item:hover {
  transform: translateY(-6px) translateX(2px);
  box-shadow: var(--shadow-lg);
}

.bonus__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(212,175,55,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bonus__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold-dark);
}

.bonus__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.bonus__item h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  color: var(--wine-900);
  margin-bottom: 10px;
  line-height: 1.4;
}

.bonus__item p {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--muted);
}

/* ===== PUBLICO ===== */
.publico {
  background: var(--cream);
}

.publico__grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 40px;
}

.publico__avatar-wrap {
  display: flex;
  justify-content: center;
}

/* Moldura de foto real (substitui os placeholders com iniciais) */
.photo-frame {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.publico__avatar-wrap .photo-frame {
  animation: floatSlow 6s ease-in-out infinite;
}

.publico .check-list li { color: var(--ink); }

.publico__fechamento {
  margin-top: 10px;
}

/* ===== RECAP ===== */
.recap__list {
  list-style: none;
  max-width: 660px;
  margin: 0 auto 40px;
  display: grid;
  gap: 12px;
}

.recap__list li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  transition: transform 0.2s ease;
}

.recap__list li:hover { transform: translateX(4px); }

.recap__preco {
  text-decoration: line-through;
  color: #b79a9a;
  font-weight: 700;
  min-width: 90px;
  font-family: var(--font-heading);
}

.recap__total-box {
  text-align: center;
  background: linear-gradient(160deg, var(--wine-950), var(--wine-700));
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 660px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.recap__total-box .title { color: var(--white); margin-bottom: 8px; }

.recap__total {
  text-decoration: line-through;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-heading);
}

/* ===== PRECO / CTA ===== */
.preco {
  background: var(--cream);
}

.preco__card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 24px;
  padding: 56px 44px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: goldPulse 3s ease-in-out infinite;
}

.preco__ribbon {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--wine-950);
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 100px;
  white-space: nowrap;
}

.preco__parcela {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 46px;
  color: var(--wine-900);
  margin-top: 14px;
}

.preco__avista {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 22px;
}

.preco__vitalicio {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--wine-700);
  text-transform: uppercase;
  margin-bottom: 30px;
  line-height: 1.6;
}

.preco__urgencia {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--muted);
  margin-top: 26px;
}

.selo-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.selo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
}

.selo-item svg { width: 18px; height: 18px; stroke: var(--gold-dark); }

/* ===== ENTREGA ===== */
.entrega {
  background: var(--white);
}

.entrega__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  text-align: center;
}

.entrega__item {
  transition: transform 0.25s ease;
}

.entrega__item:hover {
  transform: translateY(-6px);
}

.entrega__item h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--wine-900);
  margin-bottom: 10px;
}

.entrega__item p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

/* ===== OBJECAO ===== */
.objecao {
  text-align: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(212,175,55,0.08) 0%, transparent 45%),
    linear-gradient(160deg, var(--wine-950) 0%, var(--wine-800) 100%);
  color: var(--white);
}

.objecao__texto {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.7;
  color: rgba(255,255,255,0.94);
  max-width: 700px;
  margin: 0 auto;
}

.objecao__texto strong { color: var(--gold-light); font-style: normal; }

/* ===== AUTOR ===== */
.autor__grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 50px;
  align-items: center;
}

.autor__badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 20px;
}

.autor__badges span {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-light);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212,175,55,0.4);
  padding: 8px 16px;
  border-radius: 100px;
}

.autor__bio {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  text-align: left;
}

/* ===== RODAPE ===== */
.rodape {
  background: var(--wine-950);
  color: rgba(255,255,255,0.55);
  padding: 64px 0 40px;
  text-align: center;
}

.rodape__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin-bottom: 30px;
}

.rodape__contato,
.rodape__copyright {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.75);
}

.rodape__disclaimer {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255,255,255,0.35);
  max-width: 680px;
  margin: 24px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ===== RESPONSIVO ===== */
@media all and (max-width: 800px) {
  .hero { min-height: 800px; }
  .hero__headline { font-size: 26px; }
  .hero__topbar { margin-bottom: 24px; }
  .hero__sub { margin-bottom: 160px; }

  .porque__grid,
  .bonus__grid,
  .passos__grid,
  .entrega__grid {
    grid-template-columns: 1fr;
  }

  .publico__grid,
  .autor__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .autor__bio { text-align: center; }
  .publico__avatar-wrap { margin-bottom: 10px; }

  .autor__badges { justify-content: center; }

  .preco__card { padding: 44px 24px; }
  .preco__parcela { font-size: 34px; }

  .objecao__texto { font-size: 19px; }

  .quote-card { padding: 22px 24px 22px 46px; font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > *,
  .hero .btn, .preco__card,
  .publico__avatar-wrap .photo-frame {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ===== BARRA FIXA DE CTA (mobile) ===== */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--wine-950);
  border-top: 1px solid rgba(212,175,55,0.35);
  padding: 12px 18px;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.25);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta__price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.sticky-cta__price span {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

.sticky-cta .btn {
  padding: 14px 22px;
  font-size: 14.5px;
  white-space: nowrap;
  animation: none;
}

@media all and (max-width: 800px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 76px; }
}
