/* =================================================================
   CAROLINA LEIPNER — LANDING PAGE v3 (conversão-first)
   Editorial. Clean. Honesta. Foco em download do e-book.
   ================================================================= */

:root {
  --bege:      #E8DFC9;       /* bege mais quente, com vida */
  --bege-soft: #F2EAD3;       /* bege claro seco */
  --off-white: #FBF8F0;       /* off-white levemente amarelado */
  --verde:     #2E3A28;       /* verde-sálvia PROFUNDO (era #3C4A35) */
  --verde-dark:#1E261B;       /* verde quase preto p/ CTA forte */
  --verde-light:#7A8A6E;      /* verde claro p/ borders */
  --dourado:   #B8924A;       /* dourado areia PREMIUM (era #C5A572) */
  --dourado-dark:#8B6E33;     /* dourado escuro p/ hover */
  --terracota: #B4652F;       /* terracota vivo */
  --text:      #1F1F1F;       /* preto carvão alto contraste */
  --text-soft: #4D4D4D;       /* cinza escuro (era #5A5A5A mais claro) */
  --line:      #C9BC9A;       /* linha bege mais visível */

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-body:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --maxw: 1240px;
  --gutter: 32px;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(46, 58, 40, 0.08);
  --shadow-md: 0 10px 30px rgba(46, 58, 40, 0.10);
  --shadow-lg: 0 24px 60px rgba(46, 58, 40, 0.16);
  --shadow-gold: 0 8px 24px rgba(184, 146, 74, 0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bege);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
button, input { font-family: inherit; font-size: inherit; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

/* ===================== HEADER ===================== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 231, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.header.scrolled {
  background: rgba(247, 244, 231, 0.96);
  border-bottom-color: var(--line);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 104px;
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand-wordmark-img {
  height: 72px;
  width: auto;
  display: block;
  filter: brightness(0.9) saturate(1.05);
}
.nav { display: flex; gap: 32px; }
.nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--verde);
  transition: width 0.25s ease;
}
.nav a:hover { color: var(--verde); }
.nav a:hover::after { width: 100%; }
.header-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--verde);
  padding: 9px 16px;
  border: 1px solid var(--verde);
  border-radius: 999px;
  transition: all 0.2s ease;
}
.header-cta:hover { background: var(--verde); color: #fff; }

/* ===================== HERO ===================== */
.hero {
  padding: 60px 0 80px;
  background: var(--bege);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(212, 184, 134, 0.14), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(60, 74, 53, 0.06), transparent 50%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: var(--verde);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  border-radius: 999px;
  margin-bottom: 24px;
}
.chip-soft {
  background: transparent;
  border: 1px solid var(--dourado);
  color: var(--dourado-dark);
  padding: 6px 12px;
}
.chip-soft .chip-dot { background: var(--dourado); }
.chip-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--dourado);
  flex-shrink: 0;
}
.chip-light { background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.20); }
.chip-dot-light { background: var(--dourado); }

.hero-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.08;
  color: var(--verde-dark);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--terracota);
  position: relative;
  display: inline-block;
}
.hero-title em::after {
  content: '';
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 4px;
  height: 8px;
  background: var(--dourado);
  opacity: 0.30;
  z-index: -1;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 500px;
  margin-bottom: 28px;
}
.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}
.bullet em { font-style: italic; color: var(--verde-dark); font-weight: 500; }
.bullet-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--verde);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}
.lead-form {
  display: flex;
  gap: 8px;
  max-width: 500px;
}
.lead-form input[type=email] {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--off-white);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.lead-form input[type=email]:focus {
  outline: none;
  border-color: var(--verde);
  background: #fff;
}
.btn-primary {
  padding: 16px 26px;
  background: var(--verde);
  color: #FBF8F0;
  border: 0;
  border-radius: 999px;
  font-size: 15.5px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 20px rgba(46, 58, 40, 0.28);
}
.btn-primary:hover {
  background: var(--verde-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(46, 58, 40, 0.38);
}
.btn-lg { padding: 18px 32px; font-size: 17px; }
.btn-dourado {
  background: var(--dourado);
  color: var(--verde-dark);
  box-shadow: var(--shadow-gold);
}
.btn-dourado:hover {
  background: var(--dourado-dark);
  color: #FBF8F0;
}
.hero-trust {
  font-size: 12px;
  color: var(--text-soft);
  margin-top: 12px;
}
.hero-trust strong { color: var(--verde); font-weight: 600; }
.hero-secondary-link {
  display: inline-block;
  margin-top: 14px;
  margin-left: 12px;
  font-size: 13px;
  color: var(--text-soft);
  border-bottom: 1px solid var(--dourado);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.hero-secondary-link:hover { color: var(--verde); border-bottom-color: var(--verde); }

.hero-right { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-mockup-frame { position: relative; max-width: 100%; width: 100%; }
.hero-mockup-frame::before {
  content: '';
  position: absolute;
  inset: -16px;
  background: linear-gradient(135deg, rgba(212, 184, 134, 0.20), transparent 60%);
  border-radius: var(--radius-lg);
  z-index: -1;
  filter: blur(20px);
}
.hero-mockup {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-mockup:hover { transform: translateY(-4px) scale(1.005); }

/* ===================== SOCIAL BAR ===================== */
.social-bar {
  background: var(--verde-dark);
  color: #fff;
  padding: 32px 0;
}
.social-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.social-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 180px;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--dourado);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  text-align: center;
}
.social-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ===================== EYEBROW / SECTION HEAD ===================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--dourado-dark);
  margin-bottom: 16px;
  padding: 6px 14px;
  background: rgba(184, 146, 74, 0.12);
  border-radius: 999px;
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--dourado);
  border-radius: 50%;
  display: inline-block;
}
.eyebrow-light {
  color: var(--dourado);
  background: rgba(184, 146, 74, 0.18);
}
.eyebrow-light::before { background: var(--dourado); }
.section-head {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.12;
  color: var(--verde-dark);
  letter-spacing: -0.025em;
}
.title-light { color: #FBF8F0; }
.section-sub {
  font-size: 17px;
  color: var(--text-soft);
  margin-top: 18px;
  line-height: 1.55;
}
.sub-light { color: rgba(251, 248, 240, 0.88); }

/* ===================== DORES ===================== */
.pain { padding: 90px 0; background: var(--bege); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.pain-card {
  padding: 32px 26px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--dourado);
}
.pain-icon {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--dourado-dark);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--dourado);
  border-radius: 50%;
}
.pain-card h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 20px;
  color: var(--verde-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.pain-card p {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.65;
}

/* ===================== ENTREGA (O que você recebe) ===================== */
.entrega {
  padding: 90px 0;
  background: var(--bege-soft);
}
.entrega-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.entrega-left .section-title { text-align: left; }
.entrega-sub {
  font-size: 16px;
  color: var(--text-soft);
  margin: 20px 0 28px;
  max-width: 440px;
}
.entrega-right {
  display: flex;
  flex-direction: column;
}
.entrega-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.entrega-item:last-child { border-bottom: 0; }
.entrega-num {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--dourado-dark);
  line-height: 1;
  padding-top: 4px;
}
.entrega-body h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 19px;
  color: var(--verde-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}
.entrega-body p {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 8px;
}
.entrega-time {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--dourado-dark);
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials {
  padding: 90px 0;
  background: var(--off-white);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-stars {
  color: var(--dourado);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 24px;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.testimonial-author strong {
  display: block;
  font-size: 13px;
  color: var(--verde-dark);
  font-weight: 600;
  margin-bottom: 2px;
}
.testimonial-author span {
  font-size: 12px;
  color: var(--text-soft);
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  font-family: var(--font-serif);
  flex-shrink: 0;
  background: var(--verde);
}

/* ===================== SOBRE ===================== */
.sobre { padding: 90px 0; background: var(--off-white); }
.sobre-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.sobre-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  min-height: 480px;
  background:
    radial-gradient(ellipse at top, rgba(184, 146, 74, 0.30) 0%, transparent 70%),
    linear-gradient(165deg, #F2EAD3 0%, #D4C68F 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding: 48px 32px 40px;
  gap: 28px;
}
.sobre-logo {
  width: 80%;
  height: auto;
  max-width: 300px;
  flex-shrink: 0;
  filter: drop-shadow(0 3px 10px rgba(46, 58, 40, 0.18)) brightness(0.4) contrast(1.1);
}
.sobre-avatar {
  width: 160px;
  height: 160px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(251, 248, 240, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 44px rgba(46, 58, 40, 0.32);
  border: 4px solid rgba(255, 255, 255, 0.7);
  margin-top: auto;
}
.avatar-initials {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.6rem;
  font-weight: 600;
  color: var(--verde);
  letter-spacing: -0.02em;
  line-height: 1;
}
.sobre-text .section-title { text-align: left; margin-bottom: 24px; }
.sobre-lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--dourado-dark);
  margin-bottom: 20px;
}
.sobre-text p {
  font-size: 15.5px;
  color: var(--text-soft);
  margin-bottom: 16px;
  line-height: 1.7;
}
.credenciais {
  list-style: none;
  margin: 24px 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.credenciais li {
  position: relative;
  padding-left: 24px;
  font-size: 14.5px;
  color: var(--text);
}
.credenciais li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--verde);
  font-weight: 700;
}
.sobre-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  border: 1.5px solid transparent;
  letter-spacing: 0.01em;
}
.social-btn svg { flex-shrink: 0; }
.social-btn:hover { transform: translateY(-2px); }
.social-btn.whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.30);
}
.social-btn.whatsapp:hover {
  background: #1FB958;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.40);
}
.social-btn.email {
  background: var(--verde);
  color: var(--bege-soft);
  box-shadow: 0 6px 16px rgba(46, 58, 40, 0.30);
}
.social-btn.email:hover {
  background: var(--verde-dark);
  box-shadow: 0 10px 24px rgba(46, 58, 40, 0.40);
}
.social-btn.instagram {
  background: linear-gradient(45deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
  color: #fff;
  box-shadow: 0 6px 16px rgba(221, 42, 123, 0.30);
}
.social-btn.instagram:hover {
  box-shadow: 0 10px 24px rgba(221, 42, 123, 0.45);
}

/* ===================== GUIA BÔNUS ===================== */
.guia-bonus {
  padding: 90px 0;
  background: var(--bege);
}
.guia-bonus-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.guia-bonus-left {
  display: flex;
  justify-content: center;
}
.guia-bonus-img {
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transform: rotate(-2deg);
  transition: transform 0.4s ease;
}
.guia-bonus-img:hover { transform: rotate(0deg) translateY(-4px); }
.guia-bonus-right .section-title {
  text-align: left;
  margin: 16px 0 20px;
  font-size: clamp(26px, 2.6vw, 36px);
}
.guia-bonus-right p {
  font-size: 16px;
  color: var(--text-soft);
  margin-bottom: 16px;
  line-height: 1.7;
}
.guia-bonus-meta {
  padding: 14px 18px;
  background: var(--off-white);
  border-left: 3px solid var(--dourado);
  font-size: 14px !important;
  margin-bottom: 28px !important;
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ===================== PLANOS FOOT ===================== */
.plans-foot {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ===================== URGÊNCIA ===================== */
.urgency {
  padding: 90px 0;
  background: var(--verde);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.urgency::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(197, 165, 114, 0.18), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(212, 184, 134, 0.10), transparent 50%);
  pointer-events: none;
}
.urgency > * { position: relative; z-index: 1; }
.urgency .eyebrow-light {
  color: var(--dourado);
  opacity: 1;
  letter-spacing: 0.18em;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: inline-block;
}
.urgency-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.2;
  color: #F7F4E7;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.urgency-sub {
  font-size: 17px;
  line-height: 1.65;
  color: #E8E2D0;
  margin-bottom: 32px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.urgency-sub strong {
  color: var(--dourado);
  font-weight: 600;
}

/* ===================== ACOMPANHAMENTO ===================== */
.acompanhamento {
  padding: 90px 0;
  background: var(--verde-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.acompanhamento::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(212, 184, 134, 0.10), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(212, 184, 134, 0.06), transparent 50%);
  pointer-events: none;
}
.plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.plan {
  padding: 38px 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.plan:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(212, 184, 134, 0.40);
}
.plan header h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 6px;
}
.plan-tag {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
}
.price .cur { font-size: 16px; color: rgba(255,255,255,0.7); }
.price .amt {
  font-family: var(--font-serif);
  font-size: 50px;
  font-weight: 600;
  color: var(--dourado);
  letter-spacing: -0.02em;
  line-height: 1;
}
.price .per { font-size: 15px; color: rgba(255,255,255,0.6); }
.plan ul { list-style: none; margin: 0 0 28px; padding: 0; }
.plan ul li {
  padding: 11px 0 11px 26px;
  position: relative;
  font-size: 14.5px;
  color: rgba(255,255,255,0.85);
  border-top: 1px solid rgba(255,255,255,0.08);
  line-height: 1.5;
}
.plan ul li:first-child { border-top: 0; }
.plan ul li::before {
  content: '+';
  position: absolute;
  left: 0;
  top: 11px;
  color: var(--dourado);
  font-weight: 700;
}
.plan-cta {
  display: block;
  text-align: center;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14.5px;
  transition: all 0.2s ease;
}
.plan-cta:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.50);
}
.plan-featured {
  background: rgba(212, 184, 134, 0.10);
  border-color: var(--dourado);
}
.plan-featured .price .amt { color: #fff; }
.badge {
  position: absolute;
  top: -14px;
  right: 24px;
  padding: 6px 14px;
  background: var(--dourado);
  color: var(--verde-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
}
.plan-cta-primary {
  background: var(--dourado);
  color: var(--verde-dark);
  border-color: var(--dourado);
}
.plan-cta-primary:hover { background: #fff; border-color: #fff; }

/* ===================== FAQ ===================== */
.faq { padding: 90px 0; background: var(--bege); }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-inner .section-title { text-align: left; margin-bottom: 40px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.faq-list summary {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 18px;
  color: var(--verde-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s ease;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  font-size: 22px;
  color: var(--dourado-dark);
  font-weight: 400;
  transition: transform 0.3s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list summary:hover { color: var(--dourado-dark); }
.faq-list details p {
  margin-top: 14px;
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 640px;
}

/* ===================== CTA FINAL ===================== */
.cta-final {
  padding: 100px 0;
  background: var(--verde-dark);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 184, 134, 0.12), transparent 60%);
  pointer-events: none;
}
.cta-final-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.cta-final h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.12;
  margin: 16px 0 14px;
}
.cta-final p {
  font-size: 17px;
  color: rgba(255,255,255,0.80);
  margin-bottom: 32px;
}
.lead-form-center { margin: 0 auto; justify-content: center; }

/* ===================== FOOTER ===================== */
.footer {
  padding: 48px 0 32px;
  background: var(--bege-soft);
  border-top: 1px solid var(--line);
}
.footer-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.footer-logo { display: flex; flex-direction: column; text-decoration: none; gap: 4px; }
.footer-wordmark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bege);
  letter-spacing: -0.01em;
  line-height: 1;
}
.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--dourado);
  text-transform: uppercase;
}
.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-meta a {
  font-size: 13px;
  color: var(--text-soft);
  transition: color 0.2s ease;
}
.footer-meta a:hover { color: var(--verde); }
.footer-disc {
  margin: 0;
  font-size: 11px;
  color: var(--text-soft);
  opacity: 0.7;
  text-align: center;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 40px 0 60px; }
  .hero-mockup-frame { max-width: 480px; margin: 0 auto; }
  .entrega-inner { grid-template-columns: 1fr; gap: 40px; }
  .entrega-left .section-title { text-align: center; }
  .entrega-sub { margin-left: auto; margin-right: auto; }
  .entrega-left { text-align: center; }
  .sobre-inner { grid-template-columns: 1fr; gap: 40px; }
  .sobre-photo { max-width: 380px; margin: 0 auto; }
  .sobre-text .section-title { text-align: center; }
  .sobre-lead, .sobre-text p { text-align: center; }
  .credenciais { max-width: 340px; margin-left: auto; margin-right: auto; }
  .sobre-actions { justify-content: center; }
  .plans { grid-template-columns: 1fr; }
  .nav { display: none; }
  .header-row { height: 104px; }
  .brand-wordmark-img { height: 64px; }
  .footer-row { grid-template-columns: 1fr; text-align: center; }
  .footer-meta { align-items: center; }
  .social-bar-inner { gap: 16px; }
  .social-divider { display: none; }
}
@media (max-width: 640px) {
  .lead-form { flex-direction: column; }
  .lead-form input[type=email] { width: 100%; }
  .btn-primary { width: 100%; }
  .pain, .entrega, .testimonials, .sobre, .acompanhamento, .faq, .cta-final, .urgency { padding: 64px 0; }
  .pain-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 18px; }
  .entrega-item { grid-template-columns: 50px 1fr; gap: 14px; padding: 18px 0; }
  .entrega-num { font-size: 24px; }
  .entrega-body h3 { font-size: 17px; }
}
/* ===================== RECONHECIMENTO ===================== */
.reconhecimento {
  padding: 80px 0;
  background: var(--offwhite);
}
.reconhecimento-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--verde);
  text-align: center;
  line-height: 1.25;
  margin: 0 0 48px;
}
.reconhecimento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 32px;
  max-width: 880px;
  margin: 0 auto;
}
.reconhecimento-item {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--texto);
  line-height: 1.5;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.check-red {
  color: var(--terracota);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===================== HERO FLOATING ===================== */
.hero-mockup-frame { position: relative; }
/* .hero-floating removido (HTML limpo) */

/* ===================== TESTIMONIAL RESULT ===================== */
.testimonial-result {
  font-family: var(--font-serif);
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 700;
  color: var(--verde);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 12px 0 6px;
}
.testimonial-meta {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}

/* ===================== CREDENCIAIS ===================== */
.credenciais {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 32px 0 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(60, 74, 53, 0.15);
  border-bottom: 1px solid rgba(60, 74, 53, 0.15);
}
.credencial {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.cred-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  color: var(--verde);
  line-height: 1.1;
}
.cred-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--texto-soft);
  line-height: 1.3;
}

/* ===================== ENTREGA TRUST ===================== */
.entrega-trust {
  margin-top: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--texto-soft);
  text-align: center;
}

/* ===================== PLAN — preço ===================== */
.plan-equiv {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--texto-soft);
  text-align: center;
  margin: -8px 0 16px;
  line-height: 1.4;
}
.plan-equiv strong { color: var(--verde); }
.amt-old {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--texto-soft);
  text-decoration: line-through;
  margin-right: 6px;
}
.plan-foot {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--texto-soft);
  text-align: center;
  margin-top: 12px;
  line-height: 1.3;
}

/* ===================== PLANS GUARANTEE ===================== */
.plans-guarantee {
  margin-top: 32px;
  padding: 20px 28px;
  background: rgba(60, 74, 53, 0.08);
  border-left: 4px solid var(--verde);
  border-radius: 0 8px 8px 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--verde);
  line-height: 1.5;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.plans-guarantee strong { color: var(--verde); }

/* ===================== URGENCY STATS ===================== */
.urgency-stats {
  margin-top: 32px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--offwhite);
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.urgency-stats strong { color: var(--dourado); }
.urgency-stats .dot { opacity: 0.6; }

/* ===================== CTA FINAL BUTTONS ===================== */
.cta-final-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.btn-secondary-light {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 18px 32px;
  border-radius: 999px;
  border: 2px solid var(--offwhite);
  background: transparent;
  color: var(--offwhite);
  text-decoration: none;
  transition: all 0.2s ease;
}
.btn-secondary-light:hover {
  background: var(--offwhite);
  color: var(--verde);
}
.cta-final-trust {
  margin-top: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--offwhite);
  opacity: 0.85;
}

/* ===================== RESPONSIVO ===================== */
@media (max-width: 768px) {
  .reconhecimento-grid { grid-template-columns: 1fr; }
  .credenciais { grid-template-columns: 1fr; gap: 16px; }
  .reconhecimento-title { font-size: 28px; }
  .cta-final-buttons { flex-direction: column; align-items: stretch; }
}

/* ===================== HERO STAT BAR (substitui floating) ===================== */
.hero-stat-bar {
  margin-top: 28px;
  background: var(--verde);
  border-radius: 16px;
  padding: 24px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  box-shadow: 0 12px 36px rgba(60, 74, 53, 0.18);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  border-right: 1px solid rgba(247, 244, 231, 0.18);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--dourado);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--offwhite);
  line-height: 1.3;
  letter-spacing: 0.02em;
  opacity: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 500;
}

/* ===================== TESTIMONIAL RESULT CARD ===================== */
/* Removido — números em destaque direto no verde-sálvia, sem card chapado */

/* ===================== BADGE ESSENCIAL ===================== */
.badge-essencial {
  background: var(--dourado);
  color: var(--verde);
}

/* ===================== LAYOUT 60/40 HERO ===================== */
.hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-stat-bar { grid-template-columns: 1fr; }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(247, 244, 231, 0.18); padding-bottom: 12px; }
  .hero-stat:last-child { border-bottom: none; padding-bottom: 0; }
}

/* ===================== FAQ MAIS COMPACTO ===================== */
.faq details {
  border: 1px solid rgba(60, 74, 53, 0.12);
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 12px;
  background: var(--offwhite);
  transition: all 0.2s ease;
}
.faq details[open] {
  background: var(--offwhite);
  border-color: var(--verde);
  box-shadow: 0 6px 24px rgba(60, 74, 53, 0.08);
}
.faq summary {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--verde);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--terracota);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq details[open] summary::after {
  transform: rotate(45deg);
}
.faq details p {
  margin-top: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--texto);
  line-height: 1.6;
}

