/* ================================================================
   Mente em Paz  —  Sales Page Stylesheet
   File   : css/styles.css
   Fonts  : Playfair Display · DM Sans · DM Serif Display
   Source : Google Fonts CDN (see index.html <head>)
   ================================================================ */

/* ═══════════════════════════════════════════════════════════
   MENTE EM PAZ — Sales Page CSS  (Optimised)
   Principles: compact rhythm · mobile-first · conversion-UX
   ═══════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --teal-deep:  #1A3C40;
  --teal:       #2D6A6F;
  --teal-light: #3D8B8F;
  --mint:       #A8D8D8;
  --cream:      #F5F0EB;
  --sand:       #EDE5D8;
  --gold:       #C9A84C;
  --gold-light: #E8C96A;
  --charcoal:   #1E2020;
  --gray:       #6B7280;
  --white:      #FFFFFF;
  --red-soft:   #C0392B;

  /* spacing scale */
  --space-xs:   8px;
  --space-sm:   16px;
  --space-md:   28px;
  --space-lg:   48px;
  --space-xl:   64px;

  /* section vertical rhythm */
  --sec-pad-v:  52px;
  --sec-pad-v-sm: 36px;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ── LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 600px) { .container { padding: 0 28px; } }

.gold-line {
  width: 48px; height: 3px;
  background: var(--gold);
  margin: 0 auto var(--space-sm);
  border-radius: 2px;
}
.gold-line.left { margin-left: 0; }

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0);     }
}
@keyframes bookFloat {
  0%, 100% { transform: translateY(0);   }
  50%       { transform: translateY(-7px); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0   rgba(192,57,43,.5); }
  50%       { box-shadow: 0 0 0 8px rgba(192,57,43,0);  }
}

.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── URGENCY BAR ─────────────────────────────────────────── */
.urgency-bar {
  background: var(--teal-deep);
  color: var(--mint);
  text-align: center;
  padding: 9px 16px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .4px;
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 2px solid var(--gold);
  line-height: 1.5;
}
.urgency-bar strong { color: var(--gold-light); }
#countdown { color: var(--gold-light); font-weight: 700; font-size: 14px; }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  background: linear-gradient(165deg, var(--teal-deep) 0%, #243E45 55%, #1E3840 100%);
  padding: 52px 20px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,139,143,.22) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -50px; left: -50px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,106,111,.28) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,.14);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 22px;
  animation: fadeDown .7s ease both;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 6vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 18px;
  animation: fadeDown .8s .1s ease both;
  position: relative;
  z-index: 1;
}
.hero h1 em { font-style: italic; color: var(--mint); }

.hero-sub {
  font-size: clamp(15px, 2.4vw, 18px);
  color: rgba(255,255,255,.78);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto 30px;
  animation: fadeDown .8s .2s ease both;
  position: relative;
  z-index: 1;
}
.hero-sub strong { color: var(--mint); font-weight: 600; }

.hero-cta-group {
  animation: fadeDown .8s .35s ease both;
  position: relative;
  z-index: 1;
}

.hero-note {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255,255,255,.42);
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-hero {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, #E8C96A 100%);
  color: var(--teal-deep);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: .2px;
  box-shadow: 0 6px 28px rgba(201,168,76,.4);
  transition: transform .18s, box-shadow .18s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-hero:hover  { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(201,168,76,.52); }
.btn-hero:active { transform: translateY(0); }

@media (max-width: 420px) {
  .btn-hero { font-size: 15px; padding: 15px 26px; width: 100%; text-align: center; }
}

.btn-comprar {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, #E8C96A 100%);
  color: var(--teal-deep);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
  padding: 18px 20px;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 5px 24px rgba(201,168,76,.42);
  transition: transform .18s, box-shadow .18s;
  cursor: pointer;
  border: none;
  margin-bottom: 12px;
  line-height: 1.3;
}
.btn-comprar:hover  { transform: translateY(-2px); box-shadow: 0 9px 32px rgba(201,168,76,.52); }
.btn-comprar:active { transform: translateY(0); }

/* ── SECTION LABELS ─────────────────────────────────────── */
.section-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 8px;
  display: block;
}

/* ── HERO MOCKUP ─────────────────────────────────────────── */
.hero-mockup {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.hero-book-wrapper {
  position: relative;
  display: inline-block;
  filter: drop-shadow(0 28px 44px rgba(0,0,0,.52));
}
.book-shadow-2 {
  position: absolute;
  top: 12px; left: -18px;
  transform: rotate(-6deg);
  opacity: .55;
}
.book-main {
  position: relative;
  z-index: 2;
  animation: bookFloat 4s ease-in-out infinite;
}
.book-reflection {
  position: absolute;
  bottom: -24px; left: 50%;
  transform: translateX(-50%);
  width: 140px; height: 18px;
  background: radial-gradient(ellipse, rgba(168,216,216,.22) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(5px);
}
@media (max-width: 600px) {
  .hero-mockup { margin-top: 32px; }
  .book-main svg       { width: 140px; height: 196px; }
  .book-shadow-2 svg   { width: 112px; height: 156px; }
}

/* ── DOR ─────────────────────────────────────────────────── */
.section-dor {
  background: var(--white);
  padding: var(--sec-pad-v) 20px;
}

.section-dor h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(23px, 4vw, 34px);
  font-weight: 700;
  color: var(--teal-deep);
  line-height: 1.22;
  margin-bottom: 18px;
}
.section-dor .intro-text {
  font-size: 15.5px;
  line-height: 1.72;
  color: #3A3A3A;
  margin-bottom: 24px;
}

.dor-list { list-style: none; margin-bottom: 24px; }
.dor-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #F0EAE0;
  font-size: 15px;
  line-height: 1.55;
  color: #3A3A3A;
}
.dor-list li:last-child { border-bottom: none; }
.dor-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  background: #FEF0EF;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  margin-top: 2px;
}

.dor-callout {
  background: linear-gradient(135deg, #F7F2EC, #EDE5D8);
  border-left: 4px solid var(--gold);
  padding: 18px 20px;
  border-radius: 0 10px 10px 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--teal-deep);
  font-family: 'DM Serif Display', serif;
  font-style: italic;
}

/* ── SOLUÇÃO ─────────────────────────────────────────────── */
.section-solucao {
  background: linear-gradient(165deg, var(--teal-deep) 0%, #243E45 100%);
  padding: var(--sec-pad-v) 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-solucao::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.section-solucao .section-label { color: var(--mint); }
.section-solucao h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(23px, 4vw, 36px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.section-solucao h2 em { color: var(--mint); font-style: italic; }

.solucao-text {
  font-size: 15.5px;
  color: rgba(255,255,255,.82);
  line-height: 1.72;
  max-width: 600px;
  margin: 0 auto 28px;
  position: relative; z-index: 1;
}

/* Solução two-col layout */
.solucao-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
@media (max-width: 600px) {
  .solucao-layout { grid-template-columns: 1fr; }
  .solucao-book-col { order: -1; }
  .solucao-book-wrap svg       { width: 130px; height: 182px; }
  .solucao-book-shadow svg     { width: 104px; height: 146px; }
}

.solucao-book-col {
  display: flex;
  justify-content: center;
  align-items: center;
}
.solucao-book-wrap {
  position: relative;
  filter: drop-shadow(0 18px 32px rgba(0,0,0,.38));
  animation: bookFloat 4s ease-in-out infinite;
}
.solucao-book-shadow {
  position: absolute;
  top: 9px; left: -14px;
  transform: rotate(-5deg);
  opacity: .45;
}

.produto-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 24px 22px;
  position: relative; z-index: 1;
  box-shadow: 0 20px 56px rgba(0,0,0,.22);
  text-align: left;
}
.produto-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 4px;
}
.produto-card .tagline {
  font-size: 12.5px;
  color: var(--gray);
  margin-bottom: 18px;
  font-style: italic;
}
.produto-card .what-in { list-style: none; }
.produto-card .what-in li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px;
  color: #3A3A3A;
  padding: 7px 0;
  border-bottom: 1px solid #EDE5D8;
  line-height: 1.45;
}
.produto-card .what-in li:last-child { border-bottom: none; }
.check {
  flex-shrink: 0;
  color: var(--teal);
  font-size: 15px;
  font-weight: 700;
  margin-top: 1px;
}

/* ── BENEFÍCIOS ─────────────────────────────────────────── */
.section-beneficios {
  background: var(--cream);
  padding: var(--sec-pad-v) 20px;
}
.section-beneficios h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(23px, 4vw, 34px);
  font-weight: 700;
  color: var(--teal-deep);
  line-height: 1.22;
  margin-bottom: 8px;
}
.section-beneficios .sub {
  font-size: 15.5px;
  color: var(--gray);
  margin-bottom: 28px;
  line-height: 1.6;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 520px) {
  .beneficios-grid { grid-template-columns: 1fr; }
}

.beneficio-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px 18px;
  border: 1px solid #E8E0D4;
  transition: transform .18s, box-shadow .18s;
}
.beneficio-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(45,106,111,.1);
}
.beneficio-icon { font-size: 26px; margin-bottom: 10px; display: block; }
.beneficio-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 6px;
}
.beneficio-card p { font-size: 13.5px; color: #555; line-height: 1.6; }

/* ── PROVA ───────────────────────────────────────────────── */
.section-prova {
  background: var(--white);
  padding: var(--sec-pad-v) 20px;
}
.section-prova h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 14px;
  line-height: 1.28;
}
.section-prova .intro-text {
  font-size: 15.5px;
  line-height: 1.72;
  color: #3A3A3A;
  margin-bottom: 22px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}
@media (max-width: 500px) {
  .stat-row { grid-template-columns: 1fr; gap: 10px; }
}

.stat-box {
  text-align: center;
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
  border-radius: 12px;
  padding: 22px 12px;
  color: var(--white);
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 7px;
}
.stat-label { font-size: 12px; color: var(--mint); line-height: 1.45; }

.prova-quote {
  background: linear-gradient(135deg, #F7F2EC, #EDE5D8);
  border-radius: 12px;
  padding: 24px 22px;
  border-left: 4px solid var(--teal);
  font-family: 'DM Serif Display', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--teal-deep);
  line-height: 1.65;
}
.prova-quote cite {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-light);
  margin-top: 12px;
  letter-spacing: .4px;
}

/* ── OFERTA ──────────────────────────────────────────────── */
.section-oferta {
  background: linear-gradient(165deg, #1A3C40 0%, #0F2426 100%);
  padding: var(--sec-pad-v) 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-oferta::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.07) 0%, transparent 70%);
  pointer-events: none;
}

.oferta-badge {
  display: inline-block;
  background: var(--red-soft);
  color: var(--white);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  animation: pulse 2s infinite;
}

.section-oferta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(25px, 4.5vw, 40px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.section-oferta h2 em { color: var(--mint); font-style: italic; }

.oferta-sub {
  font-size: 15.5px;
  color: rgba(255,255,255,.7);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.65;
  position: relative; z-index: 1;
}

.oferta-box {
  background: var(--cream);
  border-radius: 20px;
  max-width: 500px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0,0,0,.32);
  position: relative; z-index: 1;
}

/* Oferta header with book stack */
.oferta-header-new {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  padding: 28px 24px 22px;
  text-align: center;
}
.oferta-books-stack {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  height: 148px;
  margin-bottom: 14px;
}
.stack-book {
  position: absolute;
  bottom: 0;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.38));
}
.stack-book-1 { left: 50%; transform: translateX(-50%) rotate(-8deg); bottom: 7px; opacity: .48; z-index: 1; }
.stack-book-2 { left: 50%; transform: translateX(-38%) rotate(-3deg); bottom: 3px; opacity: .72; z-index: 2; }
.stack-book-3 { left: 50%; transform: translateX(-62%) rotate(3deg);  bottom: 3px; opacity: .72; z-index: 2; }
.stack-book-main { left: 50%; transform: translateX(-50%); z-index: 3; bottom: 0; }

@media (max-width: 420px) {
  .oferta-books-stack { height: 110px; }
  .stack-book svg { width: 72px; height: auto; }
  .stack-book-main svg { width: 88px; height: auto; }
}

.produto-nome {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 3px;
}
.produto-desc { font-size: 12.5px; color: var(--mint); }

.oferta-body { padding: 22px 22px 20px; }

.oferta-includes { list-style: none; margin-bottom: 20px; }
.oferta-includes li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px;
  color: #3A3A3A;
  padding: 9px 0;
  border-bottom: 1px solid #E8E0D4;
  line-height: 1.45;
}
.oferta-includes li:last-child { border-bottom: none; }
.check-gold { flex-shrink: 0; color: var(--gold); font-size: 15px; font-weight: 700; margin-top: 1px; }

.bonus-tag {
  display: inline-block;
  background: rgba(201,168,76,.12);
  border: 1px solid var(--gold);
  border-radius: 5px;
  padding: 1px 6px;
  font-size: 10px;
  font-weight: 700;
  color: #996B00;
  letter-spacing: .4px;
  margin-left: 5px;
  vertical-align: middle;
  white-space: nowrap;
}

.price-area {
  text-align: center;
  padding: 20px 0 16px;
  border-top: 2px dashed #DDD5C8;
}
.price-was {
  font-size: 16px;
  color: var(--gray);
  text-decoration: line-through;
  margin-bottom: 3px;
}
.price-was strong { color: #888; }

.price-now {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  margin-bottom: 4px;
}
.price-currency {
  font-size: 20px; font-weight: 700;
  color: var(--teal-deep);
  margin-top: 7px;
}
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 66px;
  font-weight: 900;
  color: var(--teal-deep);
  line-height: 1;
}

.price-note { font-size: 12.5px; color: var(--gray); margin-bottom: 14px; }
.price-save {
  display: inline-block;
  background: #E8F5E9;
  color: #2E7D32;
  font-size: 12.5px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.secure-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 11.5px;
  color: var(--gray);
  margin-top: 4px;
  flex-wrap: wrap;
  row-gap: 4px;
}
.secure-badges span { display: flex; align-items: center; gap: 3px; }

/* ── OBJEÇÕES ────────────────────────────────────────────── */
.section-objecoes {
  background: var(--cream);
  padding: var(--sec-pad-v) 20px;
}
.section-objecoes h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 28px;
  line-height: 1.28;
  text-align: center;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid #E8E0D4;
}
.faq-q {
  padding: 16px 18px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--teal-deep);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  user-select: none;
  line-height: 1.45;
}
.faq-q:hover { background: #FAFAF8; }
.faq-arrow {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--teal-deep);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  transition: transform .28s;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 14px 18px 18px;
  font-size: 14px;
  color: #4A4A4A;
  line-height: 1.7;
  border-top: 1px solid #F0EAE0;
}
.faq-item.open .faq-a { display: block; }

/* ── ESCASSEZ ────────────────────────────────────────────── */
.section-escassez {
  background: linear-gradient(135deg, #C0392B, #922B21);
  padding: 40px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-escassez::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(255,255,255,.03) 8px, rgba(255,255,255,.03) 16px);
  pointer-events: none;
}
.section-escassez h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 3.5vw, 28px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.section-escassez p {
  font-size: 15px;
  color: rgba(255,255,255,.85);
  margin-bottom: 22px;
  position: relative; z-index: 1;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.section-escassez .btn-hero {
  position: relative; z-index: 1;
  font-size: 15px;
  padding: 15px 32px;
}

/* ── GARANTIA ────────────────────────────────────────────── */
.section-garantia {
  background: var(--white);
  padding: var(--sec-pad-v) 20px;
  text-align: center;
}
.garantia-badge {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 10px 32px rgba(45,106,111,.28);
}
.garantia-badge .dias {
  font-family: 'Playfair Display', serif;
  font-size: 30px; font-weight: 900;
  color: var(--gold-light); line-height: 1;
}
.garantia-badge .dias-label {
  font-size: 9.5px; color: var(--mint);
  font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase;
}
.section-garantia h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 14px;
}
.section-garantia p {
  font-size: 15.5px;
  color: #4A4A4A;
  line-height: 1.72;
  max-width: 540px;
  margin: 0 auto 8px;
}

/* ── FINAL CTA ───────────────────────────────────────────── */
.section-final {
  background: var(--cream);
  padding: var(--sec-pad-v) 20px 52px;
  text-align: center;
}
.section-final h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4.5vw, 42px);
  font-weight: 900;
  color: var(--teal-deep);
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-final h2 em { font-style: italic; color: var(--teal-light); }
.section-final .closing-text {
  font-size: 16px;
  color: #4A4A4A;
  line-height: 1.72;
  max-width: 540px;
  margin: 0 auto 32px;
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--teal-deep);
  color: rgba(255,255,255,.42);
  text-align: center;
  padding: 24px 20px;
  font-size: 11.5px;
  line-height: 1.75;
}
footer a { color: var(--mint); text-decoration: none; }

/* ── STICKY CTA ──────────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--teal-deep);
  border-top: 2px solid var(--gold);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  z-index: 199;
  transform: translateY(100%);
  transition: transform .38s ease;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .price-info { color: var(--white); font-size: 12.5px; line-height: 1.4; }
.sticky-cta .price-info strong {
  color: var(--gold-light);
  font-size: 18px;
  font-family: 'Playfair Display', serif;
}
.sticky-cta .price-info s { color: var(--gray); font-size: 11.5px; }
.sticky-btn {
  background: linear-gradient(135deg, var(--gold), #E8C96A);
  color: var(--teal-deep);
  font-weight: 800;
  font-size: 13.5px;
  padding: 11px 22px;
  border-radius: 28px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  transition: transform .18s;
}
.sticky-btn:hover { transform: scale(1.03); }

@media (max-width: 460px) {
  .sticky-cta {
    flex-direction: row;
    padding: 10px 14px;
    gap: 10px;
  }
  .sticky-btn { font-size: 12.5px; padding: 10px 16px; }
}

/* ── GLOBAL MOBILE OVERRIDES ─────────────────────────────── */
@media (max-width: 600px) {
  :root {
    --sec-pad-v: 40px;
  }
  .section-dor, .section-beneficios, .section-prova,
  .section-objecoes, .section-garantia, .section-final {
    padding-left: 16px;
    padding-right: 16px;
  }
  .oferta-body { padding: 18px 16px 16px; }
  .oferta-header-new { padding: 22px 16px 16px; }
  .prova-quote { padding: 20px 18px; font-size: 15px; }
  .dor-callout { font-size: 14.5px; padding: 16px 18px; }
  .hero { padding: 40px 16px 44px; }
  .section-solucao { padding: 40px 16px; }
  .section-oferta  { padding: 40px 16px; }
  .section-escassez { padding: 32px 16px; }
}
