/* ==========================================
   Ebook Ice Tube — Página de venda
   Paleta: Azul-marinho #1E3A5F + Laranja #E76F51
   Fonte: Inter
   ========================================== */

:root {
  --navy: #1E3A5F;
  --navy-dark: #132642;
  --navy-soft: #2a4a75;
  --orange: #E76F51;
  --orange-dark: #c65a3f;
  --orange-soft: #ff8a6c;
  --cream: #FBF8F3;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --white: #ffffff;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(19, 38, 66, .08);
  --shadow: 0 8px 24px rgba(19, 38, 66, .1);
  --shadow-lg: 0 20px 50px rgba(19, 38, 66, .18);

  --max-width: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--cream);
  padding-bottom: 90px; /* espaço para barra flutuante */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--orange); text-decoration: none; transition: color .2s; }
a:hover { color: var(--orange-dark); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  line-height: 1.2;
  font-weight: 800;
}

h1 { font-size: clamp(28px, 4vw, 46px); letter-spacing: -.02em; }
h2 { font-size: clamp(24px, 3vw, 36px); letter-spacing: -.015em; }
h3 { font-size: 20px; }

.highlight { color: var(--orange); }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--navy-soft);
  border-left: 3px solid var(--orange);
  padding-left: 10px;
  margin-bottom: 18px;
}
.eyebrow-orange { color: var(--orange); border-color: var(--navy); }
.eyebrow-center { border: 0; padding: 0; display: block; text-align: center; color: var(--orange); margin-bottom: 12px; }
.eyebrow-white { color: rgba(255,255,255,.85); border-color: var(--orange); }

/* =========================
   BOTÕES (CTAs)
   ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .05em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(231, 111, 81, .35);
}
.btn-primary:hover { background: var(--orange-dark); color: var(--white); }

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: var(--white); }

.btn-ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(220, 39, 67, .25);
}
.btn-ig:hover { color: var(--white); }

.btn-large { padding: 20px 40px; font-size: 18px; }
.btn-huge { padding: 22px 48px; font-size: 19px; box-shadow: 0 10px 30px rgba(231, 111, 81, .4); }

/* =========================
   BLOCO 1 — HERO
   ========================= */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 72px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(231, 111, 81, .15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(231, 111, 81, .08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero .eyebrow { color: rgba(255, 255, 255, .75); border-color: var(--orange); }

.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 .price-old-hero { color: var(--orange-soft); }
.hero h1 .subline { display: block; font-size: 0.55em; font-weight: 600; color: rgba(255,255,255,.85); margin-top: 14px; line-height: 1.35; }

.subheadline {
  font-size: 18px;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 28px;
  line-height: 1.55;
}
.subheadline strong { color: var(--orange-soft); font-weight: 700; }

.hero-ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.hero-ctas .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, .4);
}
.hero-ctas .btn-secondary:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

.hero-bullets {
  list-style: none;
  font-size: 15px;
  color: rgba(255, 255, 255, .92);
}
.hero-bullets li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.hero-bullets li:last-child { border-bottom: 0; }

.hero-video { min-width: 0; }
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
  border: 3px solid rgba(255, 255, 255, .1);
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* =========================
   SEÇÕES GENÉRICAS
   ========================= */
.section { padding: 72px 0; }
.section-title {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 48px;
}
.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* =========================
   BLOCO 2 — PROBLEM
   ========================= */
.section-problem { background: var(--white); }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}
.problem-card {
  background: var(--gray-50);
  border-left: 4px solid var(--orange);
  padding: 24px 22px;
  border-radius: var(--radius);
  transition: transform .2s, box-shadow .2s;
}
.problem-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.problem-icon { font-size: 28px; display: block; margin-bottom: 10px; }
.problem-card p { color: var(--gray-700); font-size: 15.5px; line-height: 1.6; }

.problem-closing {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  max-width: 700px;
  margin: 0 auto;
  padding: 24px 20px;
  border-top: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  font-style: italic;
}

/* =========================
   BLOCO 3 — STORY (Paraty)
   ========================= */
.section-story {
  background: linear-gradient(180deg, var(--cream) 0%, var(--gray-100) 100%);
}
.story-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
.story-text h2 { margin-bottom: 22px; }
.story-text p {
  color: var(--gray-700);
  font-size: 16.5px;
  line-height: 1.75;
  margin-bottom: 14px;
}
.story-text p strong { color: var(--navy); }
.story-text p em { color: var(--orange-dark); font-style: normal; font-weight: 600; }
.story-text a { color: var(--orange); font-weight: 600; }

.story-cta-note {
  margin-top: 24px !important;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--orange);
  font-size: 15px !important;
  font-weight: 600;
  color: var(--navy) !important;
}

.story-photos {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 20px;
}
.story-photo {
  background: var(--white);
  padding: 12px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .2s;
}
.story-photo:hover { transform: translateY(-3px); }
.story-photo img {
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.story-photo figcaption {
  font-size: 13px;
  color: var(--gray-500);
  padding: 12px 6px 6px;
  text-align: center;
  font-weight: 500;
}
.story-photo a { text-decoration: none; color: inherit; }
.story-photo a:hover figcaption { color: var(--orange); }

.story-video .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.story-video .video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* =========================
   BLOCO 4 — CONTENT (7 partes)
   ========================= */
.section-content { background: var(--white); }

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.content-card {
  background: linear-gradient(135deg, var(--gray-50), var(--white));
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  position: relative;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.content-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--orange);
}
.content-card-full { grid-column: 1 / -1; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); }
.content-card-full h3, .content-card-full p { color: var(--white); }
.content-card-full .content-num { background: var(--orange); color: var(--white); }
.content-card-full p { color: rgba(255,255,255,.85); }

.content-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 14px;
  padding: 0 12px;
}
.content-card h3 { margin-bottom: 10px; color: var(--navy); font-size: 19px; }
.content-card p { color: var(--gray-700); font-size: 15px; line-height: 1.6; }

/* =========================
   BLOCO 5 — PROOF (Instagram)
   ========================= */
.section-proof {
  background: linear-gradient(135deg, #fff8f5 0%, #fff1e9 100%);
  text-align: center;
}
.proof-inner { max-width: 720px; margin: 0 auto; }
.proof-icon {
  width: 88px; height: 88px;
  background: linear-gradient(45deg, #f09433 0%, #dc2743 50%, #bc1888 100%);
  color: var(--white);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 28px rgba(220, 39, 67, .25);
}
.proof-inner h2 { margin-bottom: 18px; }
.proof-inner > p {
  font-size: 17px;
  color: var(--gray-700);
  margin-bottom: 28px;
  line-height: 1.7;
}
.proof-note {
  margin-top: 28px;
  font-size: 14px;
  color: var(--gray-500);
  font-style: italic;
}

/* =========================
   BLOCO 6 — FIT (Para quem é)
   ========================= */
.section-fit { background: var(--white); }

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.fit-yes, .fit-no {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 2px solid;
}
.fit-yes { background: #f0fdf4; border-color: #86efac; }
.fit-yes h3 { color: #15803d; margin-bottom: 18px; font-size: 22px; }
.fit-no { background: #fef2f2; border-color: #fca5a5; }
.fit-no h3 { color: #b91c1c; margin-bottom: 18px; font-size: 22px; }

.fit-grid ul { list-style: none; }
.fit-grid li {
  padding: 10px 0 10px 0;
  color: var(--gray-700);
  font-size: 15.5px;
  line-height: 1.55;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}
.fit-grid li:last-child { border-bottom: 0; }
.fit-yes li strong { color: #166534; }
.fit-no li strong { color: #991b1b; }

/* =========================
   BLOCO 7 — HONEST (Investimento real)
   ========================= */
.section-honest {
  background: linear-gradient(180deg, var(--gray-100) 0%, var(--cream) 100%);
}
.honest-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.honest-inner h2 { margin-bottom: 32px; }

.honest-box {
  background: var(--white);
  padding: 36px 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: left;
  border-top: 5px solid var(--orange);
}
.honest-lead {
  font-size: 18px;
  color: var(--gray-900);
  margin-bottom: 20px;
  line-height: 1.6;
}
.honest-list {
  list-style: none;
  margin-bottom: 28px;
}
.honest-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--gray-700);
  font-size: 16px;
}
.honest-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
  font-size: 18px;
}

.honest-warning {
  background: #fff7ed;
  border-left: 5px solid var(--orange);
  padding: 20px 22px;
  border-radius: var(--radius);
}
.honest-warning p {
  color: var(--gray-900);
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 1.6;
}
.honest-warning p:last-child { margin-bottom: 0; color: var(--gray-700); font-style: italic; font-size: 15px; }

.honest-footer {
  margin-top: 28px;
  font-size: 15px;
  color: var(--gray-500);
  font-style: italic;
  line-height: 1.6;
}

/* =========================
   BLOCO 8 — SUPPORT
   ========================= */
.section-support { background: var(--white); }

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.support-card {
  background: var(--gray-50);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform .2s, box-shadow .2s;
  border: 1px solid var(--gray-200);
}
.support-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.support-icon { font-size: 42px; margin-bottom: 14px; }
.support-card h3 { margin-bottom: 10px; color: var(--navy); font-size: 18px; }
.support-card p { color: var(--gray-700); font-size: 14.5px; line-height: 1.55; margin-bottom: 14px; }
.support-link {
  display: inline-block;
  color: var(--orange);
  font-weight: 600;
  font-size: 14.5px;
  word-break: break-all;
}
.support-link:hover { color: var(--orange-dark); text-decoration: underline; }

/* =========================
   BLOCO 9 — GUARANTEE
   ========================= */
.section-guarantee {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
}
.guarantee-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.guarantee-seal {
  width: 180px; height: 180px;
  border: 4px solid var(--orange);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(231, 111, 81, .15);
  background: rgba(231, 111, 81, .08);
}
.guarantee-num {
  font-family: 'Inter', sans-serif;
  font-size: 82px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.guarantee-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(255,255,255,.9);
  text-align: center;
  padding: 0 10px;
  margin-top: 6px;
}

.guarantee-text h2 { color: var(--white); margin-bottom: 16px; }
.guarantee-text p { color: rgba(255,255,255,.88); font-size: 16px; margin-bottom: 12px; line-height: 1.7; }
.guarantee-text strong { color: var(--orange-soft); }

/* =========================
   BLOCO 10 — CTA FINAL
   ========================= */
.section-cta-final {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,.08) 0%, transparent 40%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta-inner h2 { color: var(--white); margin-bottom: 36px; font-size: clamp(26px, 3vw, 34px); }

.price-box {
  background: var(--white);
  color: var(--navy);
  padding: 32px 40px;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  box-shadow: 0 20px 50px rgba(0,0,0,.2);
  display: inline-block;
}
.price-old {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: .02em;
}
.price-old s { color: var(--gray-500); }
.price-now {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 10px;
}
.price-symbol { font-size: 28px; font-weight: 700; }
.price-value { font-size: 82px; line-height: 1; font-family: 'Inter', sans-serif; }
.price-cents { font-size: 32px; font-weight: 700; }
.price-installments { font-size: 13px; color: var(--gray-500); }
.price-installments strong { color: var(--navy); }

.cta-checklist {
  list-style: none;
  text-align: left;
  display: inline-block;
  margin: 0 auto 32px;
  max-width: 440px;
}
.cta-checklist li {
  padding: 8px 0;
  color: rgba(255,255,255,.95);
  font-size: 15.5px;
  font-weight: 500;
}

.cta-inner .btn-huge {
  background: var(--white);
  color: var(--orange);
}
.cta-inner .btn-huge:hover { background: var(--navy); color: var(--white); }

.cta-note {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,.85);
  letter-spacing: .03em;
}

/* =========================
   BLOCO 11 — FAQ
   ========================= */
.section-faq { background: var(--cream); }
.faq-inner { max-width: 820px; margin: 0 auto; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item[open] {
  border-color: var(--orange);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  font-size: 16.5px;
  list-style: none;
  position: relative;
  padding-right: 56px;
  transition: background .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--gray-50); }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: var(--orange);
  font-weight: 300;
  transition: transform .2s;
  line-height: 1;
}
.faq-item[open] summary::after { content: "−"; }

.faq-body {
  padding: 0 24px 20px;
  color: var(--gray-700);
  font-size: 15.5px;
  line-height: 1.7;
}
.faq-body p { margin-bottom: 10px; }
.faq-body strong { color: var(--navy); }

.faq-footer {
  text-align: center;
  margin-top: 40px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.faq-footer p {
  color: var(--gray-700);
  font-size: 17px;
  margin-bottom: 16px;
  font-weight: 500;
}

/* =========================
   FOOTER
   ========================= */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.8);
  padding: 48px 0 32px;
  font-size: 14px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
}
.footer-title { font-size: 18px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.footer-sub { color: rgba(255,255,255,.6); }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.footer-links a { color: rgba(255,255,255,.85); }
.footer-links a:hover { color: var(--orange); }

.footer-legal {
  grid-column: 1 / -1;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
}
.footer-legal p { margin-bottom: 8px; }
.footer-disclaimer { font-style: italic; }
.footer-disclaimer strong { color: rgba(255,255,255,.85); }

/* =========================
   BARRA FLUTUANTE (CTA fixo)
   ========================= */
.floating-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 2px solid var(--orange);
  box-shadow: 0 -8px 28px rgba(0,0,0,.12);
  z-index: 100;
  padding: 12px 0;
}
.floating-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.floating-price { display: flex; flex-direction: column; line-height: 1.2; }
.floating-label { font-size: 12px; color: var(--gray-500); }
.floating-price strong { font-size: 22px; color: var(--orange); font-weight: 900; }

/* =========================
   RESPONSIVE — Mobile
   ========================= */
@media (max-width: 900px) {
  .hero { padding: 48px 0 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-video { order: -1; }

  .story-inner { grid-template-columns: 1fr; gap: 36px; }
  .story-photos { position: static; }

  .content-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; }

  .guarantee-inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .guarantee-seal { margin: 0 auto; }

  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  body { font-size: 16px; padding-bottom: 110px; }
  .section { padding: 48px 0; }
  .container { padding: 0 18px; }

  .btn { padding: 14px 24px; font-size: 14px; }
  .btn-huge { padding: 18px 28px; font-size: 16px; }

  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }

  .price-box { padding: 24px 20px; }
  .price-value { font-size: 64px; }
  .price-cents { font-size: 26px; }

  .honest-box { padding: 24px 20px; }

  .floating-inner { flex-direction: column; gap: 8px; padding: 0 16px; }
  .floating-inner .btn { width: 100%; padding: 12px 20px; }
  .floating-price { flex-direction: row; align-items: baseline; gap: 8px; }
  .floating-price strong { font-size: 20px; }

  .faq-item summary { padding: 16px 52px 16px 20px; font-size: 15.5px; }
  .faq-body { padding: 0 20px 18px; font-size: 15px; }
}

/* Impressão */
@media print {
  .floating-cta, .hero-ctas, .section-cta, .faq-footer { display: none; }
}

/* =========================
   REFINAMENTOS VISUAIS
   ========================= */

/* Hero — grid de pontos sutil no fundo */
.hero {
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  background-size: 28px 28px, auto;
  background-position: 0 0, 0 0;
}

/* Hero h1 — permitir uso de Fraunces opcional para destaque */
.hero h1 .highlight {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -.02em;
}

/* Story — tipografia serif para trechos-chave da história */
.story-text p strong {
  color: var(--navy);
  font-weight: 700;
}
.story-text h2 {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 600;
  letter-spacing: -.015em;
  line-height: 1.15;
}
.story-text h2::first-letter {
  color: var(--orange);
}

/* Honest — tipografia de impacto no H2 */
.honest-inner h2 {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 600;
  font-style: italic;
}

/* Guarantee — idem */
.guarantee-text h2 {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 600;
}

/* =========================
   BARRA DE STATS (Números destacados)
   ========================= */
.stats-bar {
  background: var(--navy-dark);
  padding: 36px 0;
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative;
}
.stats-bar::before {
  content: "";
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 4px;
  background: var(--orange);
  border-radius: 0 0 4px 4px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  max-width: 1050px;
  margin: 0 auto;
}
.stat {
  text-align: center;
  padding: 0 10px;
}
.stat-num {
  font-family: 'Fraunces', 'Inter', serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.stat-suffix {
  font-size: 0.5em;
  font-weight: 600;
  margin-left: 4px;
  color: rgba(255,255,255,.75);
  font-family: 'Inter', sans-serif;
  font-style: normal;
  letter-spacing: 0;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.3;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.2), transparent);
}

@media (max-width: 760px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 12px;
  }
  .stat-divider { display: none; }
}

/* =========================
   Pattern sutil em seções escuras
   ========================= */
.section-guarantee {
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  background-size: 24px 24px, auto;
}

/* =========================
   Animação fade-in ao rolar
   ========================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2, .6, .3, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================
   Melhora visual dos cards de problema (hover + divider)
   ========================= */
.problem-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--orange);
}
.problem-card:hover {
  border-color: var(--orange);
  border-left-color: var(--navy);
  background: #fff8f5;
}
.problem-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: #fff1eb;
  border-radius: 12px;
  font-size: 24px;
  margin-bottom: 14px;
}

/* =========================
   Content-card — numeração romana mais elegante
   ========================= */
.content-num {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 700;
  font-size: 20px;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  box-shadow: 0 4px 12px rgba(19, 38, 66, .25);
}
.content-card h3 {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -.01em;
}
.content-card-full h3 { color: var(--white); }

/* =========================
   Price box — destaque extra
   ========================= */
.price-value {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 700;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--navy), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* =========================
   Section title — separador visual
   ========================= */
.section-title {
  position: relative;
  padding-bottom: 20px;
}
.section-title::after {
  content: "";
  display: block;
  width: 60px; height: 3px;
  background: var(--orange);
  margin: 16px auto 0;
  border-radius: 3px;
}

/* CTA Final — não aplicar essa linha na seção laranja */
.section-cta-final .section-title::after { background: var(--white); }

