/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --verde:     #1B4332;
  --laranja:   #F07722;
  --creme:     #F5EFE6;
  --rosado:    #E8D5C4;
  --branco:    #FFFFFF;
  --text-dark: #1a1a1a;
  --text-mid:  #555;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.07), 0 1px 3px rgba(0,0,0,.05);
  --shadow-md:  0 8px 24px rgba(0,0,0,.1),  0 3px 8px rgba(0,0,0,.07);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.14), 0 8px 20px rgba(0,0,0,.08);
  --shadow-verde: 0 8px 28px rgba(27,67,50,.35);
  --shadow-laranja: 0 6px 20px rgba(240,119,34,.35);
}

html { scroll-behavior: smooth; }

body {
  font-family: "sweet-sans-pro", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  background: var(--branco);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: "sweet-sans-pro", sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

/* =============================================
   SCROLL REVEAL
============================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s cubic-bezier(.22,.61,.36,1),
              transform .6s cubic-bezier(.22,.61,.36,1);
}
.reveal.visible { opacity: 1; transform: none; }

.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }
.reveal-delay-5 { transition-delay: .40s; }

/* =============================================
   UTILITY
============================================= */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 18px 36px;
  border-radius: 8px;
  font-family: "sweet-sans-pro", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
  text-align: center;
  line-height: 1.2;
}

/* Shine sweep on hover */
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transform: skewX(-20deg);
  transition: left .5s ease;
  pointer-events: none;
}
.btn:hover::after  { left: 160%; }
.btn:hover         { transform: translateY(-3px); }
.btn:active        { transform: translateY(-1px); }

.btn-laranja {
  background: linear-gradient(135deg, #f47e2b 0%, var(--laranja) 55%, #de6010 100%);
  color: var(--branco);
  box-shadow: var(--shadow-laranja);
}
.btn-laranja:hover { box-shadow: 0 10px 32px rgba(240,119,34,.5); }

.btn-verde {
  background: linear-gradient(135deg, #235a40 0%, var(--verde) 55%, #152d22 100%);
  color: var(--branco);
  box-shadow: var(--shadow-verde);
}
.btn-verde:hover { box-shadow: 0 10px 32px rgba(27,67,50,.5); }

.btn-lg { padding: 22px 52px; font-size: 1.05rem; border-radius: 10px; }

/* --- Section tag --- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #f47e2b, var(--laranja));
  color: var(--branco);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 40px;
  margin-bottom: 22px;
  box-shadow: 0 3px 12px rgba(240,119,34,.3);
}

/* --- Section title with accent line --- */
.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 18px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--laranja), #f4a35e);
  border-radius: 2px;
}

/* Centered title accent */
.title-center::after { left: 50%; transform: translateX(-50%); }

.section-sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 680px;
  line-height: 1.75;
}

/* =============================================
   1. BARRA DE URGÊNCIA
============================================= */
#urgency-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #152e23 0%, var(--verde) 40%, #1e5239 100%);
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}

.urgency-dot {
  width: 7px;
  height: 7px;
  background: var(--laranja);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 1.6s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.6); }
}

#urgency-bar span {
  color: var(--branco);
  font-size: .83rem;
  font-weight: 500;
  letter-spacing: .03em;
  white-space: nowrap;
}

#urgency-bar .btn {
  padding: 8px 20px;
  font-size: .72rem;
  letter-spacing: .07em;
  border-radius: 6px;
  white-space: nowrap;
}

/* =============================================
   2. HERO
============================================= */
#hero {
  background-color: var(--creme);
  background-image:
    radial-gradient(circle, rgba(27,67,50,.1) 1px, transparent 1px);
  background-size: 28px 28px;
  padding: 96px 0 72px;
  position: relative;
  overflow: hidden;
}

/* Warm glow top-right */
#hero::before {
  content: '';
  position: absolute;
  top: -180px; right: -180px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,119,34,.1) 0%, transparent 65%);
  pointer-events: none;
}

/* Bottom-left accent */
#hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,67,50,.07) 0%, transparent 65%);
  pointer-events: none;
}

#hero .hero-inner {
  display: flex;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
}

#hero .hero-text { flex: 1; }

#hero h1 {
  font-size: clamp(2.3rem, 5.5vw, 3.5rem);
  color: var(--verde);
  margin-bottom: 24px;
  letter-spacing: -.01em;
}

#hero .hero-sub {
  font-size: 1.15rem;
  color: var(--text-mid);
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.75;
}

.social-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.proof-pill {
  background: var(--verde);
  color: var(--branco);
  font-size: .8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 2px 10px rgba(27,67,50,.2);
  letter-spacing: .02em;
}

/* Image placeholder — styled as a real photo frame */
.hero-img-placeholder {
  flex: 0 0 420px;
  height: 540px;
  background: linear-gradient(145deg, #c0d9cf 0%, #9ac0b2 45%, #76aa9a 100%);
  border-radius: 28px 28px 28px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: rgba(27,67,50,.65);
  font-weight: 500;
  text-align: center;
  padding: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.4);
}

.hero-img-placeholder::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 220px; height: 220px;
  border: 2px solid rgba(255,255,255,.22);
  border-radius: 50%;
  pointer-events: none;
}

.hero-img-placeholder::after {
  content: '';
  position: absolute;
  bottom: 20px; left: -50px;
  width: 160px; height: 160px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  pointer-events: none;
}

.hero-img-placeholder span {
  position: relative;
  z-index: 1;
}

/* =============================================
   3. DOR
============================================= */
#pain {
  background: var(--creme);
  padding: 96px 0;
  border-top: 1px solid rgba(0,0,0,.07);
  position: relative;
}

#pain .section-title {
  color: var(--verde);
  text-align: center;
}

#pain .section-title::after { left: 50%; transform: translateX(-50%); }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 48px 0;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--branco);
  border-radius: 12px;
  padding: 22px 20px;
  border-left: 4px solid var(--laranja);
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}

.pain-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.pain-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #f47e2b, var(--laranja));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(240,119,34,.25);
  position: relative;
}

.pain-icon::before {
  content: '';
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,.9);
  border-radius: 2px;
  box-shadow: 0 -6px 0 rgba(255,255,255,.9), 0 6px 0 rgba(255,255,255,.9);
}

.pain-item p {
  font-size: .96rem;
  color: var(--text-mid);
  line-height: 1.65;
  padding-top: 2px;
}

.pain-transition {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.06rem;
  color: var(--verde);
  font-weight: 500;
  background: var(--branco);
  border-radius: 12px;
  padding: 32px 40px;
  border: 2px solid var(--rosado);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.pain-transition::before {
  content: '"';
  position: absolute;
  top: -12px; left: 24px;
  font-family: "sweet-sans-pro", sans-serif;
  font-size: 5rem;
  color: rgba(240,119,34,.15);
  line-height: 1;
  pointer-events: none;
}

/* =============================================
   4. SOLUÇÃO
============================================= */
#solution {
  background: var(--branco);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#solution::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--verde), var(--laranja), var(--verde));
}

#solution .section-title {
  color: var(--verde);
}

#solution .section-title::after { left: 50%; transform: translateX(-50%); }

.solution-desc {
  max-width: 720px;
  margin: 24px auto 44px;
  font-size: 1.08rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.seals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 44px;
}

.seal {
  background: var(--creme);
  border: 1.5px solid var(--rosado);
  border-radius: 40px;
  padding: 10px 20px;
  font-size: .86rem;
  font-weight: 600;
  color: var(--verde);
  transition: transform .2s, box-shadow .2s, background .2s;
  cursor: default;
}

.seal:hover {
  transform: translateY(-2px);
  background: var(--branco);
  box-shadow: var(--shadow-sm);
}

/* =============================================
   5. AUTORIDADE
============================================= */
#authority {
  background:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(240,119,34,.08) 0%, transparent 50%),
    linear-gradient(135deg, #1d4c38 0%, var(--verde) 50%, #122e23 100%);
  padding: 96px 0;
  color: var(--branco);
  position: relative;
}

/* Dot pattern overlay */
#authority::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

#authority .inner {
  display: flex;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
}

.authority-text { flex: 1; }

#authority h2 {
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  color: var(--rosado);
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 18px;
}

#authority h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 48px; height: 4px;
  background: linear-gradient(90deg, var(--laranja), #f4a35e);
  border-radius: 2px;
}

#authority p {
  font-size: 1rem;
  opacity: .88;
  margin-bottom: 18px;
  line-height: 1.8;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.cred-badge {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(4px);
  color: var(--rosado);
  font-size: .79rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 40px;
  letter-spacing: .04em;
  transition: background .2s;
}

.cred-badge:hover { background: rgba(255,255,255,.18); }

.authority-quote {
  background: rgba(255,255,255,.07);
  border-left: 4px solid var(--laranja);
  padding: 24px 28px;
  border-radius: 0 12px 12px 0;
  margin-top: 32px;
  position: relative;
}

.authority-quote::before {
  content: '"';
  position: absolute;
  top: -8px; right: 16px;
  font-family: "sweet-sans-pro", sans-serif;
  font-size: 5rem;
  color: rgba(240,119,34,.2);
  line-height: 1;
  pointer-events: none;
}

.authority-quote p {
  font-family: "sweet-sans-pro", sans-serif;
  font-size: 1.2rem;
  font-style: italic;
  opacity: 1;
  margin-bottom: 10px;
  line-height: 1.55;
}

.authority-quote span {
  font-size: .85rem;
  opacity: .65;
  letter-spacing: .04em;
}

/* Authority image placeholder */
.authority-img-placeholder {
  flex: 0 0 380px;
  height: 490px;
  background: linear-gradient(145deg, #2a5e44 0%, #1e4a34 50%, #142e23 100%);
  border-radius: 80px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: rgba(168,212,190,.7);
  font-weight: 500;
  text-align: center;
  padding: 36px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 32px 70px rgba(0,0,0,.35);
}

.authority-img-placeholder::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 50%;
  pointer-events: none;
}

.authority-img-placeholder::after {
  content: '';
  position: absolute;
  bottom: -30px; left: -30px;
  width: 140px; height: 140px;
  background: rgba(240,119,34,.07);
  border-radius: 50%;
  pointer-events: none;
}

.authority-img-placeholder span {
  position: relative;
  z-index: 1;
}

/* =============================================
   6. MÓDULOS
============================================= */
#modules {
  background: var(--creme);
  padding: 96px 0;
}

#modules .section-title {
  color: var(--verde);
  text-align: center;
}

#modules .section-title::after { left: 50%; transform: translateX(-50%); }
#modules .section-sub { margin: 20px auto 52px; text-align: center; }

.modules-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
}

.module-card {
  flex: 0 1 calc((100% - 40px) / 3);
  background: var(--branco);
  border-radius: 14px;
  padding: 32px 26px;
  border-top: 4px solid var(--laranja);
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}

/* Ghost watermark number */
.module-card::after {
  content: attr(data-num);
  position: absolute;
  right: -14px;
  bottom: -28px;
  font-family: "sweet-sans-pro", sans-serif;
  font-size: 7.5rem;
  font-weight: 800;
  color: rgba(27,67,50,.055);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.module-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.module-number {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--laranja);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.module-card h3 {
  font-family: "sweet-sans-pro", sans-serif;
  font-size: 1.18rem;
  color: var(--verde);
  margin-bottom: 12px;
}

.module-card p {
  font-size: .91rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.bonus-box {
  background: linear-gradient(135deg, #1d4c38 0%, var(--verde) 50%, #122e23 100%);
  color: var(--branco);
  border-radius: 16px;
  padding: 36px;
  margin-top: 28px;
  margin-bottom: 44px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-verde);
}

.bonus-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.bonus-box h3 {
  font-family: "sweet-sans-pro", sans-serif;
  font-size: 1.35rem;
  color: var(--rosado);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.bonus-items {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.bonus-item {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 16px 22px;
  font-size: .9rem;
  font-weight: 500;
  flex: 1 1 220px;
  transition: background .2s;
}

.bonus-item:hover { background: rgba(255,255,255,.16); }

.bonus-item-note {
  font-size: .83rem;
  opacity: .75;
  display: block;
  margin-top: 5px;
  font-weight: 400;
}

#modules .cta-wrap { text-align: center; }

/* =============================================
   SOLUÇÃO — corpo de texto adicional
============================================= */
.solution-body {
  max-width: 720px;
  margin: 0 auto 36px;
}

.solution-body p {
  font-size: 1.04rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.solution-highlight {
  font-weight: 600;
  color: var(--verde) !important;
  font-size: 1.08rem !important;
}

/* =============================================
   IMAGENS REAIS — hero + autoridade
============================================= */
.hero-img-container {
  flex: 0 0 420px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-img-wrapper {
  width: 100%;
  height: 540px;
  border-radius: 28px 28px 28px 80px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.3);
  background: linear-gradient(145deg, #c0d9cf 0%, #9ac0b2 45%, #76aa9a 100%);
}

.hero-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
  color: var(--text-mid);
  font-size: .83rem;
}

.hero-caption strong {
  color: var(--text-dark);
  font-size: .93rem;
  font-weight: 700;
}

.hero-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Fallback quando a imagem não carrega */
.hero-img-wrapper.img-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.img-fallback-text {
  display: none;
  font-size: .85rem;
  color: rgba(27,67,50,.6);
  font-weight: 500;
  text-align: center;
}

.hero-img-wrapper.img-fallback .img-fallback-text { display: block; }
.authority-img-wrapper.img-fallback .img-fallback-text { display: block; }

.authority-img-container {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.authority-img-wrapper {
  width: 100%;
  height: 490px;
  border-radius: 80px 28px 28px 28px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 32px 70px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(145deg, #2a5e44 0%, #1e4a34 50%, #142e23 100%);
}

.authority-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
  color: rgba(255,255,255,.85);
  font-size: .83rem;
}

.authority-caption strong {
  color: var(--branco);
  font-size: .93rem;
  font-weight: 700;
}

.authority-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.authority-img-wrapper.img-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px;
}

.authority-img-wrapper .img-fallback-text { color: rgba(168,212,190,.7); }

/* =============================================
   7. PARA QUEM É — PERFIS + NOT FOR
============================================= */
#audience {
  background: var(--branco);
  padding: 96px 0;
}

#audience .section-title {
  color: var(--verde);
  text-align: center;
  margin-bottom: 48px;
}

#audience .section-title::after { left: 50%; transform: translateX(-50%); }

/* Grade de perfis */
.profiles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.profile-card {
  background: var(--creme);
  border: 2px solid var(--verde);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  box-shadow: 0 8px 28px rgba(27,67,50,.08);
  transition: transform .22s, box-shadow .22s;
}

.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(27,67,50,.14);
}

.profile-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #235a40, var(--verde));
  color: var(--branco);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 16px;
  box-shadow: 0 3px 10px rgba(27,67,50,.25);
}

.profile-card h3 {
  font-family: "sweet-sans-pro", sans-serif;
  font-size: 1.35rem;
  color: var(--verde);
  margin-bottom: 14px;
}

.profile-card p {
  font-size: .97rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* Bloco "Não é para todo mundo" */
.not-for-box {
  background: linear-gradient(135deg, #1d4c38 0%, var(--verde) 50%, #122e23 100%);
  color: var(--branco);
  border-radius: 16px;
  padding: 44px 48px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-verde);
}

.not-for-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.not-for-box h3 {
  font-family: "sweet-sans-pro", sans-serif;
  font-size: 1.5rem;
  color: var(--rosado);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.not-for-box p {
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  line-height: 1.78;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.not-for-box p:last-child { margin-bottom: 0; }

.not-for-closing {
  font-weight: 600;
  color: var(--rosado) !important;
  font-size: 1.05rem !important;
}

/* =============================================
   8. DEPOIMENTOS
============================================= */
#testimonials {
  background: var(--creme);
  padding: 96px 0;
}

#testimonials .section-title {
  color: var(--verde);
  text-align: center;
  margin-bottom: 12px;
}

#testimonials .section-title::after { left: 50%; transform: translateX(-50%); }

.platform-seal {
  text-align: center;
  font-size: .84rem;
  font-weight: 600;
  color: var(--laranja);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 44px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}

.testimonial-card {
  background: var(--branco);
  border-radius: 14px;
  padding: 30px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: transform .22s, box-shadow .22s;
  border-bottom: 3px solid var(--laranja);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Large decorative quote mark */
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px; right: 18px;
  font-family: "sweet-sans-pro", sans-serif;
  font-size: 5.5rem;
  color: rgba(240,119,34,.1);
  line-height: 1;
  pointer-events: none;
}

.stars {
  color: var(--laranja);
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card .quote-text {
  font-size: .94rem;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 22px;
  line-height: 1.75;
  position: relative;
  z-index: 1;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.author-avatar {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--rosado), #d4b99c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  color: var(--verde);
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(0,0,0,.1);
}

.author-info strong { font-size: .9rem; display: block; color: var(--verde); }
.author-info span   { font-size: .8rem; color: var(--text-mid); }

.testimonials-note {
  text-align: center;
  font-size: .82rem;
  color: #b0956e;
  background: #fdf5ec;
  border: 1px dashed #e8c99a;
  border-radius: 8px;
  padding: 12px 20px;
  max-width: 480px;
  margin: 0 auto;
}

/* =============================================
   9. OFERTA / PREÇO
============================================= */
#offer {
  background:
    radial-gradient(circle at 15% 85%, rgba(255,255,255,.04) 0%, transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(240,119,34,.09) 0%, transparent 45%),
    linear-gradient(160deg, #1d4c38 0%, var(--verde) 50%, #102819 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#offer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

#offer h2 {
  font-size: clamp(1.8rem, 4vw, 2.65rem);
  color: var(--rosado);
  max-width: 780px;
  margin: 0 auto 52px;
  position: relative;
  z-index: 1;
  letter-spacing: -.01em;
}

.offer-card {
  background: var(--branco);
  border-radius: 20px;
  padding: 52px 48px 44px;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 32px 80px rgba(0,0,0,.3), 0 8px 24px rgba(0,0,0,.15);
  position: relative;
  z-index: 1;
}

/* Rainbow top accent bar */
.offer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--verde) 0%, var(--laranja) 50%, var(--verde) 100%);
  border-radius: 20px 20px 0 0;
}

.offer-card h3 {
  font-family: "sweet-sans-pro", sans-serif;
  font-size: 1.5rem;
  color: var(--verde);
  margin-bottom: 28px;
  text-align: center;
}

.offer-includes {
  list-style: none;
  text-align: left;
  margin-bottom: 36px;
}

.offer-includes li {
  display: flex;
  gap: 12px;
  font-size: .94rem;
  color: var(--text-mid);
  padding: 10px 0;
  border-bottom: 1px solid var(--creme);
  align-items: flex-start;
  line-height: 1.55;
}

.offer-includes li:last-child { border-bottom: none; }

.offer-includes li .check {
  width: 20px; height: 20px;
  background: var(--verde);
  color: var(--branco);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.price-block {
  text-align: center;
  margin-bottom: 30px;
  padding: 24px;
  background: var(--creme);
  border-radius: 12px;
}

.price-old {
  font-size: .95rem;
  color: #999;
  text-decoration: line-through;
  margin-bottom: 6px;
}

.price-installment {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--verde);
  font-family: "sweet-sans-pro", sans-serif;
  letter-spacing: -.01em;
}

.price-installment span {
  font-size: 1rem;
  font-family: "sweet-sans-pro", sans-serif;
  font-weight: 500;
  color: var(--text-mid);
}

.price-cash {
  font-size: .92rem;
  color: var(--text-mid);
  margin-top: 8px;
}

.price-cash strong { color: var(--laranja); font-size: 1rem; }

.price-note {
  font-size: .78rem;
  color: #aaa;
  margin-top: 5px;
}

.offer-urgency {
  margin-top: 20px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--laranja);
  text-align: center;
  letter-spacing: .02em;
}

.btn-offer-full { width: 100%; display: block; }

.guarantee {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  font-size: .84rem;
  color: var(--text-mid);
  margin-top: 22px;
  background: #f0f8f4;
  border-radius: 8px;
  padding: 14px 18px;
  border: 1px solid rgba(27,67,50,.12);
  text-align: left;
}

.shield-icon { flex-shrink: 0; margin-top: -2px; display: flex; align-items: center; }

.trust-line {
  margin-top: 20px;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .05em;
  position: relative;
  z-index: 1;
}

/* =============================================
   10. FAQ
============================================= */
#faq {
  background: var(--creme);
  padding: 96px 0;
}

#faq .section-title {
  color: var(--verde);
  text-align: center;
  margin-bottom: 48px;
}

#faq .section-title::after { left: 50%; transform: translateX(-50%); }

.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
  background: var(--branco);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  border: 1.5px solid rgba(0,0,0,.07);
  transition: border-color .2s, box-shadow .2s;
}

.faq-item.open {
  border-color: rgba(27,67,50,.2);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: "sweet-sans-pro", sans-serif;
  font-size: .98rem;
  font-weight: 600;
  color: var(--verde);
  text-align: left;
  gap: 20px;
  transition: background .2s;
}

.faq-question:hover { background: var(--creme); }

.faq-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #f47e2b, var(--laranja));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--branco);
  font-size: 1.1rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform .3s ease;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(240,119,34,.3);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .42s ease;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: .97rem;
  color: var(--text-mid);
  line-height: 1.78;
  border-top: 1px solid var(--creme);
  margin: 0 28px;
  padding-top: 18px;
}

/* Override padding since margin handles spacing */
.faq-answer-inner { margin: 0; padding: 0 28px 24px; border-top: 1px solid var(--creme); margin: 0 28px; padding-top: 18px; }

.faq-item.open .faq-answer { max-height: 600px; }
.faq-item.open .faq-icon   { transform: rotate(45deg); }

/* =============================================
   11. CTA FINAL
============================================= */
#cta-final {
  background:
    radial-gradient(circle at 10% 90%, rgba(240,119,34,.1) 0%, transparent 40%),
    linear-gradient(135deg, var(--verde) 0%, #122e23 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

#cta-final h2 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  color: var(--rosado);
  max-width: 820px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
  letter-spacing: -.01em;
}

#cta-final p {
  color: rgba(255,255,255,.82);
  font-size: 1.06rem;
  max-width: 600px;
  margin: 0 auto 16px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

#cta-final .cta-p2 { margin-bottom: 40px; }

.cta-sub {
  margin-top: 20px;
  font-size: .84rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .05em;
  position: relative;
  z-index: 1;
}

/* =============================================
   12. RODAPÉ
============================================= */
#footer {
  background: #0d2118;
  padding: 44px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-logo {
  width: 72px;
  height: 72px;
  background: rgba(27,67,50,.6);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 50%;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  color: var(--rosado);
  font-weight: 600;
  letter-spacing: .06em;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-links a {
  color: rgba(255,255,255,.45);
  font-size: .82rem;
  transition: color .2s;
}

.footer-links a:hover { color: var(--rosado); }

.footer-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,.1);
  margin: 0 auto 20px;
}

.footer-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.badge {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  padding: 8px 16px;
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .03em;
}

.footer-copy { font-size: .77rem; color: rgba(255,255,255,.28); }

.footer-agency {
  font-size: .72rem;
  color: rgba(255,255,255,.2);
  margin-top: 8px;
}

.footer-agency a {
  color: rgba(255,255,255,.35);
  text-decoration: none;
  transition: color .2s;
}

.footer-agency a:hover { color: var(--rosado); }

/* =============================================
   VSL SECTION
============================================= */
#vsl {
  background: var(--verde);
  padding: 60px 0;
}

.vsl-inner {
  display: flex;
  align-items: center;
  gap: 64px;
}

.vsl-text {
  flex: 1;
}

.vsl-text h2 {
  color: var(--rosado);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 20px;
}

.vsl-text p {
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  line-height: 1.8;
}

.vsl-text .section-tag {
  margin-bottom: 20px;
}

.vsl-video-wrapper {
  flex: 0 0 auto;
}

.vsl-video {
  width: auto;
  max-width: 100%;
  max-height: 580px;
  border-radius: 16px;
  display: block;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  background: #000;
}

@media (max-width: 900px) {
  .vsl-inner {
    flex-direction: column;
    gap: 36px;
  }
  .vsl-video { max-height: 400px; }
}

/* =============================================
   DEPOIMENTOS — PLACEHOLDER PENDENTE
============================================= */
.testimonials-pending {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 52px 24px;
  background: var(--branco);
  border-radius: 14px;
  border: 2px dashed var(--rosado);
  max-width: 520px;
  margin: 32px auto 0;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.pending-icon { font-size: 2rem; }

.testimonials-pending p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* =============================================
   OFERTA — MENSAGEM DE LANÇAMENTO
============================================= */
.offer-launch-msg {
  background: linear-gradient(135deg, rgba(27,67,50,.05), rgba(240,119,34,.06));
  border: 1.5px solid rgba(240,119,34,.28);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 28px;
  text-align: center;
}

.offer-launch-msg p {
  font-size: .97rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 8px;
}

.offer-launch-msg p:last-child { margin-bottom: 0; }

.offer-launch-msg strong { color: var(--verde); font-weight: 700; }

/* =============================================
   PÁGINA DE OBRIGADO
============================================= */
#thank-you {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 80%, rgba(240,119,34,.07) 0%, transparent 45%),
    linear-gradient(160deg, var(--creme) 0%, var(--branco) 60%, #f0f8f4 100%);
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.ty-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.ty-badge {
  display: inline-block;
  background: linear-gradient(135deg, #235a40, var(--verde));
  color: var(--branco);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 40px;
  margin-bottom: 28px;
  box-shadow: 0 3px 12px rgba(27,67,50,.25);
}

.ty-headline {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--verde);
  margin-bottom: 36px;
  letter-spacing: -.01em;
}

.ty-body {
  max-width: 580px;
  margin: 0 auto 40px;
}

.ty-body p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.ty-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
}

.ty-btn { min-width: 320px; }

.ty-signature {
  border-top: 1px solid var(--rosado);
  padding-top: 28px;
}

.ty-signature p {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 4px;
}

.ty-name {
  font-family: "sweet-sans-pro", sans-serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--verde) !important;
  margin-top: 8px !important;
}

/* =============================================
   RESPONSIVE — TABLET
============================================= */
@media (max-width: 900px) {
  #hero .hero-inner { flex-direction: column; }

  .hero-img-container {
    flex: none;
    width: 100%;
    max-width: 100%;
  }

  .hero-img-wrapper {
    height: auto;
    aspect-ratio: 3/4;
    border-radius: 20px;
  }

  #authority .inner { flex-direction: column-reverse; align-items: center; }

  .authority-img-container {
    flex: none;
    width: 100%;
    max-width: 100%;
  }

  .authority-img-wrapper {
    height: auto;
    aspect-ratio: 4/3;
    border-radius: 24px;
  }

  .module-card       { flex-basis: calc((100% - 20px) / 2); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .profiles-grid     { grid-template-columns: 1fr; }
  .not-for-box       { padding: 32px 28px; }
}

/* =============================================
   RESPONSIVE — MOBILE
============================================= */
@media (max-width: 600px) {
  #urgency-bar {
    flex-direction: column;
    height: auto;
    padding: 10px 16px;
    gap: 8px;
  }
  #urgency-bar span { font-size: .76rem; text-align: center; white-space: normal; }
  #urgency-bar .btn { font-size: .7rem; padding: 7px 14px; }

  #hero, #pain, #solution, #authority, #modules,
  #audience, #testimonials, #offer, #faq, #cta-final {
    padding: 60px 0;
  }

  #hero { padding-top: 48px; }

  .pain-grid         { grid-template-columns: 1fr; }
  .module-card       { flex-basis: 100%; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .profiles-grid     { grid-template-columns: 1fr; }
  .not-for-box       { padding: 28px 20px; }

  .hero-img-container {
    max-width: 100%;
  }

  .hero-img-wrapper {
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 16px;
  }

  .authority-img-container {
    max-width: 100%;
  }

  .authority-img-wrapper {
    height: auto;
    aspect-ratio: 4/3;
    border-radius: 16px;
  }

  .offer-card { padding: 36px 22px 28px; }
  .btn-lg { padding: 18px 28px; font-size: .95rem; }

  .pain-transition { padding: 24px 22px; }
  .authority-quote { padding: 18px 20px; }
  .ty-btn { min-width: auto; width: 100%; }
  #thank-you { padding: 60px 0; }

  .whatsapp-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
}

/* =============================================
   BOTÃO FLUTUANTE WHATSAPP
============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.28);
  z-index: 999;
  transition: transform .2s ease;
}

.whatsapp-float:hover { transform: scale(1.08); }

.whatsapp-float svg { width: 32px; height: 32px; fill: #fff; }
