/* =====================================================
   MANUAL DO RELACIONAMENTO SAUDÁVEL — SALES PAGE
   Identidade Visual: Vermelho / Off-white / Grafite
   Tipografia: Playfair Display + Montserrat
   ===================================================== */

/* ---------- VARIÁVEIS ---------- */
:root {
  --red: #E31E24;
  --red-dark: #B3131A;
  --red-light: #F04A50;
  --red-soft: #FCE6E7;
  --off-white: #F7F3EF;
  --white: #FFFFFF;
  --graphite: #1C1C1C;
  --graphite-2: #2A2A2A;
  --gray: #6F6F6F;
  --gray-light: #E5E1DC;
  --gray-lighter: #F0ECE7;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1200px;
  --container-narrow: 900px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-soft: 0 8px 30px rgba(28,28,28,0.08);
  --shadow-red: 0 12px 40px rgba(227,30,36,0.25);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--graphite);
  background: var(--off-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
button, input { font-family: inherit; }
h1, h2, h3, h4 { margin: 0 0 .6em; line-height: 1.15; font-weight: 700; }
p { margin: 0 0 1em; }
ul { margin: 0 0 1em; padding-left: 1.2em; }
s { color: var(--red-dark); opacity: 0.75; }
em { font-style: italic; }

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

/* ---------- HELPERS ---------- */
.centered { text-align: center; }
.text-white { color: var(--white); }
.text-white-soft { color: rgba(255,255,255,.82); }
.text-white-bold { color: var(--white); font-family: var(--font-serif); font-weight: 900; letter-spacing: -.01em; text-transform: uppercase; }
.text-red-bold { color: var(--red); font-family: var(--font-serif); font-weight: 900; letter-spacing: -.005em; text-transform: uppercase; }
.text-red-light { color: var(--red-light); font-family: var(--font-serif); font-weight: 800; text-transform: uppercase; letter-spacing: -.005em; }
.serif { font-family: var(--font-serif); font-weight: 400; }
.mt-lg { margin-top: 2rem; }
.underline-red { border-bottom: 3px solid var(--red); padding-bottom: 2px; }
.check-icon { color: var(--red); font-weight: 800; margin-right: 4px; }
.cta-sep { margin: 0 8px; opacity: .5; }

/* ---------- SEÇÕES BASE ---------- */
.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.section-light { background: var(--off-white); color: var(--graphite); }
.section-dark { background: var(--graphite); color: var(--white); }
.section-graphite { background: linear-gradient(180deg, var(--graphite) 0%, #171717 100%); color: var(--white); }
.section-red { background: var(--red-dark); color: var(--white); }
.section-red-soft {
  background: linear-gradient(180deg, #FBE7E8 0%, #F7F3EF 100%);
  color: var(--graphite);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1.2em;
  font-weight: 700;
  letter-spacing: -.01em;
}
.section-lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--gray);
  max-width: 780px;
  margin: 0 auto 2rem;
}
.text-white-soft.section-lead { color: rgba(255,255,255,.82); }

.eyebrow {
  font-size: .78rem;
  letter-spacing: .28em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.eyebrow-white { color: var(--red-light); }
.eyebrow-line {
  display: flex; align-items: center; gap: 10px;
  font-size: .75rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--red); font-weight: 700; margin-bottom: 1rem;
}
.eyebrow-line span {
  display: inline-block; width: 40px; height: 2px; background: var(--red);
}

/* ---------- BOTÕES ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .02em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all .25s ease;
  line-height: 1.2;
  text-align: center;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 45px rgba(227,30,36,0.35);
}
.btn-white {
  background: var(--white);
  color: var(--red);
}
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }

.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-lg { padding: 20px 34px; font-size: 16px; }
.btn-xl { padding: 24px 40px; font-size: 17px; letter-spacing: .04em; }

/* ---------- HERO (centralizado, coluna única) ---------- */
.hero {
  position: relative;
  padding: 36px 0 60px;
  background: linear-gradient(180deg, var(--off-white) 0%, #FDEEEF 100%);
  overflow: hidden;
}
.hero-bg-dots {
  position: absolute; top: 40px; right: -5%; width: 300px; height: 300px;
  background-image: radial-gradient(var(--red) 1.5px, transparent 2px);
  background-size: 20px 20px;
  opacity: .12; pointer-events: none;
}
.hero-bg-dots-left {
  left: -5%; right: auto;
  top: auto; bottom: 40px;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-brand { margin-bottom: 0; }
.hero-brand img { height: 54px; width: auto; }

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -.01em;
  max-width: 1080px;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--gray);
  margin: 0;
  max-width: 780px;
  line-height: 1.5;
}

/* Hero video */
.hero-video {
  width: 100%;
  max-width: 820px;
  margin: 8px auto;
}
.video-frame {
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(28,28,28,0.15), 0 12px 30px rgba(227,30,36,0.15);
  background: var(--graphite);
}
/* O próprio player Vturb define a proporção correta (horizontal desktop / vertical mobile).
   Não aplicamos aspect-ratio para não forçar layout errado no mobile. */
.video-frame iframe,
.video-frame vturb-smartplayer {
  display: block;
  width: 100%;
  border: 0;
}

/* Wrapper vertical em mobile para não estourar a largura */
@media (max-width: 640px) {
  .hero-video { max-width: 380px; }
}

.hero-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}
.cta-note {
  font-size: .88rem;
  color: var(--gray);
  margin: 0;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 6px;
}

.hero-authorship {
  font-size: .95rem;
  color: var(--gray);
  margin: 8px auto 0;
  max-width: 620px;
  line-height: 1.55;
}
.hero-authorship strong { color: var(--graphite); }

@media (max-width: 640px) {
  .hero { padding: 40px 0 60px; }
  .hero-brand img { height: 54px; }
  .hero-inner { gap: 22px; }
}

/* ---------- BLOCO 02 - DOR ---------- */
.bloco-dor {
  background: linear-gradient(180deg, var(--graphite) 0%, #221010 100%);
}
.bloco-dor .section-title {
  text-align: center;
  max-width: 900px;
  margin-left: auto; margin-right: auto;
}
.editorial-lines {
  text-align: center;
  margin: 40px auto 30px;
  max-width: 700px;
}
.editorial-lines .line {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  margin: 6px 0;
}
.editorial-lines .line-emphasis {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  margin-top: 18px;
  font-style: italic;
  line-height: 1.3;
}
.paragraph-white {
  color: rgba(255,255,255,.85);
  max-width: 780px; margin-left: auto; margin-right: auto;
  font-size: 1.05rem;
}
.subheading {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin: 40px 0 24px;
  color: var(--white);
}
.pain-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 30px auto;
  max-width: 1100px;
}
.pain-card {
  flex: 0 1 calc(25% - 12px);
  min-width: 220px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(227,30,36,0.2);
  border-left: 3px solid var(--red);
  border-radius: 12px;
  padding: 20px;
  color: rgba(255,255,255,0.9);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .25s, background .25s;
}
.pain-card:hover {
  background: rgba(227,30,36,0.08);
  transform: translateY(-3px);
}
.pain-icon {
  width: 42px; height: 42px; border-radius: 8px;
  background: rgba(227,30,36,0.15);
  color: var(--red-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.pain-card p { margin: 0; font-size: .95rem; line-height: 1.45; }

.turning-quote {
  text-align: center; margin: 60px auto 30px;
}
.turning-quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  font-style: italic;
  margin: 0 auto;
  max-width: 900px;
  line-height: 1.3;
}
.q-mark {
  color: var(--red);
  font-family: var(--font-serif);
  font-weight: 700;
  font-style: normal;
  font-size: 1.1em;
  margin: 0 .15em;
  vertical-align: baseline;
  display: inline-block;
}
.turn-card {
  background: var(--off-white);
  color: var(--graphite);
  border-radius: 14px;
  padding: 32px;
  max-width: 720px;
  margin: 0 auto;
  border-left: 6px solid var(--red);
  box-shadow: var(--shadow-soft);
}
.turn-answer {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--red);
  margin: 0 0 12px;
}

@media (max-width: 900px) {
  .pain-card { flex: 0 1 calc(50% - 10px); }
}
@media (max-width: 560px) {
  .pain-card { flex: 0 1 100%; }
  .editorial-lines .line-emphasis { font-size: 1.4rem; }
}

/* ---------- BLOCO 03 - HISTÓRIA JOÃO ---------- */
.split {
  display: grid;
  grid-template-columns: 1.15fr .95fr;
  gap: 60px;
  align-items: center;
}
.split-reverse { grid-template-columns: .95fr 1.15fr; }
.split-reverse .split-copy { order: 2; }
.split-reverse .split-visual { order: 1; }

.split-copy .lead { font-size: 1.15rem; font-weight: 600; color: var(--graphite); }

.inline-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--graphite);
  margin: 20px 0;
  padding-left: 20px;
  border-left: 4px solid var(--red);
}

.joao-photo-wrap {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 460px;
  margin: 0 auto;
}
.joao-photo {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(28,28,28,0.15);
  z-index: 2;
}
.joao-photo-placeholder {
  position: relative;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #f4dede 0%, var(--red-soft) 60%, #fff 100%);
  border-radius: 16px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 30px 60px rgba(28,28,28,0.12);
}
.joao-photo-placeholder.large { min-height: 500px; }
.joao-icon-fallback {
  width: 50%; opacity: .35; filter: grayscale(0);
}
.photo-label {
  position: absolute;
  bottom: 12px; left: 12px;
  font-size: .7rem;
  background: rgba(255,255,255,.85);
  padding: 4px 10px;
  border-radius: 20px;
  color: var(--gray);
  font-weight: 600;
  letter-spacing: .05em;
}
.photo-frame-accent {
  position: absolute;
  top: 24px; left: 24px;
  width: 100%; height: 100%;
  border: 2px solid var(--red);
  border-radius: 16px;
  z-index: 1;
}
.photo-dots-grid {
  position: absolute;
  top: -20px; right: -20px;
  width: 100px; height: 100px;
  background-image: radial-gradient(var(--red) 1.5px, transparent 2px);
  background-size: 12px 12px;
  opacity: .5;
  z-index: 3;
}

.timeline {
  display: flex; flex-direction: column;
  margin-top: 32px;
  gap: 10px;
  padding-left: 16px;
  border-left: 2px dashed rgba(227,30,36,0.3);
}
.tl-item {
  display: flex; align-items: center; gap: 12px;
  font-size: .9rem; color: var(--gray);
}
.tl-dot {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
  margin-left: -22px;
}
.tl-active { color: var(--graphite); font-weight: 700; }
.tl-active .tl-dot {
  box-shadow: 0 0 0 4px rgba(227,30,36,0.25);
}

.clinica-box { background: var(--red-dark); margin-top: 80px; }
.clinica-inner {
  color: var(--white);
  padding: 70px 40px;
  max-width: 900px; margin: 0 auto;
}
.clinica-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 20px;
}
.clinica-text { font-size: 1.05rem; color: rgba(255,255,255,.9); }
.clinica-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.clinica-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.9);
}
.clinica-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 20px;
  width: 16px; height: 2px;
  background: var(--white);
}
.clinica-quote {
  font-family: var(--font-serif);
  font-style: italic;
  text-align: center;
  font-size: 1.8rem;
  margin: 32px 0 20px;
  color: var(--white);
}
.clinica-fix {
  background: var(--off-white);
  color: var(--graphite);
  padding: 20px 28px;
  border-radius: 12px;
  text-align: center;
  margin-top: 20px;
}
.clinica-fix span { display: block; font-size: 1rem; }
.clinica-fix strong { color: var(--red); font-size: 1.4rem; display: block; margin-top: 6px; font-family: var(--font-serif); font-style: italic; font-weight: 700; }

@media (max-width: 900px) {
  .split, .split-reverse { grid-template-columns: 1fr; gap: 40px; }
  .split-reverse .split-copy { order: 2; }
  .split-reverse .split-visual { order: 1; }
  .clinica-inner { padding: 40px 24px; }
  .clinica-title { font-size: 1.5rem; }
}

/* ---------- BLOCO 04 - DESCOBERTA ---------- */
.bloco-descoberta { background: linear-gradient(180deg, var(--off-white) 0%, #fff 100%); }
.diagram-image {
  max-width: 900px;
  margin: 50px auto 30px;
}
.diagram-image img {
  width: 100%;
  height: auto;
  display: block;
}

.diagram {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 700px;
  margin: 50px auto 30px;
  position: relative;
}
.d-node {
  background: white;
  border: 2px solid var(--red);
  border-radius: 14px;
  padding: 24px 12px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform .3s;
}
.d-node:hover { transform: translateY(-4px); }
.d-icon {
  font-size: 2rem; color: var(--red); margin-bottom: 8px;
  display: flex; justify-content: center; align-items: center; height: 50px;
}
.d-icon img { height: 44px; width: auto; }
.d-node span { font-size: .85rem; font-weight: 700; color: var(--graphite); letter-spacing: .05em; }
.d-arrow {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 2rem;
  color: var(--red);
  margin: 8px 0;
}
.d-relation {
  grid-column: 1 / -1;
  background: var(--red);
  border-color: var(--red);
  color: white;
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}
.d-relation-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  z-index: 1;
}
.d-relation-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 220px;
  background: linear-gradient(180deg, rgba(179,19,26,0.55) 0%, rgba(179,19,26,0.85) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 28px;
}
.d-relation .d-icon { color: white; }
.d-relation .d-icon img { filter: brightness(0) invert(1); opacity: 1; }
.d-relation span { color: white; font-size: 1rem; font-weight: 800; letter-spacing: .1em; }

.explain-list {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 720px;
}
.explain-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-light);
  color: var(--graphite);
  font-size: 1rem;
}
.li-dot {
  flex-shrink: 0;
  width: 12px; height: 12px;
  border: 2px solid var(--red);
  border-radius: 50%;
  margin-top: 6px;
  position: relative;
}
.li-dot::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: var(--red);
  border-radius: 50%;
}

.turn-red-card {
  background: var(--red);
  color: white;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  max-width: 700px;
  margin: 50px auto 0;
  box-shadow: var(--shadow-red);
}
.turn-red-card p {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  line-height: 1.4;
  margin: 0;
}
.turn-red-card strong { font-family: var(--font-serif); font-weight: 800; text-transform: uppercase; letter-spacing: .01em; }

@media (max-width: 640px) {
  .diagram { grid-template-columns: 1fr; }
}

/* ---------- BLOCO 05 - APRESENTAÇÃO ---------- */
.bloco-apresentacao {
  background: linear-gradient(180deg, var(--graphite) 0%, #2a0e10 100%);
  position: relative;
}
.apresentacao-header { text-align: center; margin-bottom: 60px; }

/* Split: mockup à esquerda + conteúdo à direita */
.apresentacao-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
  margin: 20px 0 40px;
}
.apresentacao-content { text-align: left; }
.apresentacao-content .eyebrow-white { margin: 0 0 10px; }
.apresentacao-content .section-title { text-align: left; margin-bottom: 14px; }
.apresentacao-content .section-lead { text-align: left; margin: 0 0 24px; max-width: none; }

/* Container do mockup */
.mockup-hero {
  position: relative;
  width: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.mockup-icon-bg { display: none !important; }

.mockup-main {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 480px;
  height: auto;
  margin: 0 auto;
  filter:
    drop-shadow(0 0 30px rgba(255,255,255,0.18))
    drop-shadow(0 0 60px rgba(255,255,255,0.10))
    drop-shadow(0 25px 40px rgba(0,0,0,0.45));
  animation: mockupFloat 6s ease-in-out infinite;
}

@media (max-width: 900px) {
  .apresentacao-split { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .apresentacao-content .section-title,
  .apresentacao-content .section-lead { text-align: center; }
  .apresentacao-content .eyebrow-white { text-align: center; }
}

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

/* Espaçamentos mais apertados no bloco */
.bloco-apresentacao { padding: 50px 0 40px; }
.bloco-apresentacao .apresentacao-header { margin-bottom: 4px; }
.bloco-apresentacao .apresentacao-header .section-title { margin-bottom: 8px; }
.bloco-apresentacao .apresentacao-header .section-lead { margin-bottom: 0; }
.bloco-apresentacao .positioning-cards { margin: 24px auto; }
.bloco-apresentacao .cta-block { margin-top: 20px; }

@media (max-width: 900px) {
  .mockup-hero { padding: 30px 20px; }
  .mockup-main { animation: none; max-width: 95%; }
}
.mockup-devices {
  position: relative;
  display: flex; align-items: center; justify-content: center; gap: 20px;
  z-index: 2;
}
.device-laptop {
  width: 520px; max-width: 100%;
  background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 8px solid #2a2a2a;
  border-radius: 14px 14px 8px 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 60px rgba(227,30,36,0.15);
  position: relative;
}
.device-laptop::after {
  content: '';
  position: absolute;
  bottom: -12px; left: -20px; right: -20px;
  height: 10px;
  background: linear-gradient(180deg, #2a2a2a, #1a1a1a);
  border-radius: 0 0 20px 20px;
}
.device-screen {
  background: var(--off-white);
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  padding: 20px;
}
.device-screen img { max-width: 60%; height: auto; }
.device-label { margin-top: 12px; font-size: .8rem; color: var(--gray); font-weight: 600; letter-spacing: .1em; }

.device-phone {
  width: 130px;
  background: #1a1a1a;
  border: 6px solid #0a0a0a;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 40px rgba(227,30,36,0.2);
  margin-left: -40px;
  z-index: 3;
}
.device-screen.phone {
  background: var(--red);
  aspect-ratio: 9/16;
  padding: 20px;
}
.device-screen.phone img { max-width: 70%; filter: brightness(0) invert(1); }

.positioning-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 700px;
  margin: 40px auto;
}
.pos-card {
  padding: 26px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.pos-card h3 {
  font-size: 1rem;
  letter-spacing: .15em;
  margin-bottom: 16px;
  color: var(--white);
}
.pos-nao h3 { color: rgba(255,255,255,.6); }
.pos-e h3 { color: var(--red-light); }
.pos-card ul { list-style: none; padding: 0; margin: 0; }
.pos-card li {
  color: rgba(255,255,255,.9);
  padding: 8px 0;
  display: flex; align-items: center; gap: 10px;
  font-size: .95rem;
}
.x-mark { color: rgba(255,255,255,.4); font-weight: 700; }
.pos-e .check-mark { color: var(--red-light); font-weight: 800; }

.cta-block { margin-top: 40px; }
.highlight-quote {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.5;
}
.highlight-quote strong { color: var(--red-light); font-family: var(--font-serif); font-weight: 800; }

@media (max-width: 780px) {
  .mockup-hero { aspect-ratio: auto; }
  .device-phone { display: none; }
  .device-laptop { width: 100%; }
  .positioning-cards { grid-template-columns: 1fr; }
}

/* ---------- BLOCO 06 - DEPOIMENTOS ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.testimonial {
  background: white;
  border-radius: 14px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--red);
  display: flex; flex-direction: column; gap: 12px;
}
.testimonial:nth-child(4), .testimonial:nth-child(5) { grid-column: span 1.5; }
.test-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--red);
  background: var(--gray-lighter);
}
.test-highlight {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--graphite);
  font-style: italic;
  line-height: 1.4;
  margin: 0;
}
.test-body {
  color: var(--gray);
  font-size: .92rem;
  line-height: 1.55;
  margin: 0;
}
.test-name {
  font-size: .8rem;
  color: var(--red);
  font-weight: 700;
  letter-spacing: .05em;
  margin-top: auto;
  margin-bottom: 0;
}

.test-quote-band {
  background: var(--red);
  color: white;
  padding: 40px;
  border-radius: 16px;
  margin-top: 50px;
  text-align: center;
  box-shadow: var(--shadow-red);
}
.test-quote-band p {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.4;
  margin: 0;
  font-style: italic;
}
.test-quote-band .underline-red { border-color: white; }

@media (max-width: 900px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ---------- BLOCO 07 - DIFERENCIAÇÃO ---------- */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  margin: 50px 0 30px;
  align-items: center;
}
.compare-card {
  padding: 32px;
  border-radius: 14px;
  min-height: 460px;
}
.compare-bad {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,.85);
}
.compare-bad h3 {
  color: rgba(255,255,255,.5);
  font-size: 1rem;
  letter-spacing: .2em;
  margin-bottom: 20px;
}
.compare-good {
  background: var(--off-white);
  color: var(--graphite);
  position: relative;
  box-shadow: 0 25px 60px rgba(227,30,36,0.2);
}
.badge-cientifico {
  position: absolute;
  top: -12px; left: 24px;
  background: var(--red);
  color: white;
  padding: 6px 14px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .15em;
  border-radius: 20px;
}
.compare-good h3 {
  color: var(--red);
  font-size: 1.05rem;
  letter-spacing: .1em;
  margin-bottom: 20px;
  margin-top: 8px;
}
.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.compare-list li {
  padding: 10px 0;
  display: flex; align-items: flex-start; gap: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: .95rem;
}
.compare-bad .compare-list li { border-color: rgba(255,255,255,0.08); }
.compare-list li:last-child { border-bottom: 0; }
.check-mark { color: var(--red); font-weight: 800; flex-shrink: 0; }
.compare-footer {
  margin-top: 16px;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  font-style: italic;
}
.compare-divider {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.divider-line {
  width: 2px; height: 100px;
  background: linear-gradient(180deg, rgba(255,255,255,0.1), var(--red), rgba(255,255,255,0.1));
}
.divider-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
}
.divider-note {
  color: rgba(255,255,255,.6);
  font-size: .8rem;
  text-align: center;
  max-width: 120px;
  font-style: italic;
  margin: 0;
}
.closing-line {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-top: 30px;
  max-width: 800px; margin-left: auto; margin-right: auto;
  font-style: italic;
}

@media (max-width: 900px) {
  .compare-grid { grid-template-columns: 1fr; }
  .compare-divider { flex-direction: row; }
  .divider-line { width: 60px; height: 2px; }
}

/* ---------- BLOCO 08 - MÓDULOS ---------- */
.modulos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 50px 0 30px;
}
.modulo {
  background: white;
  border-radius: 16px;
  padding: 32px;
  border-left: 5px solid var(--red);
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: transform .3s;
}
.modulo:hover { transform: translateY(-4px); }
.modulo:last-child { grid-column: 1 / -1; }
.modulo-number {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--red);
  opacity: .1;
  line-height: 1;
}
.modulo-icon {
  width: 56px; height: 56px;
  background: var(--red-soft);
  color: var(--red);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.modulo h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--graphite);
  margin-bottom: 12px;
}
.modulo p {
  color: var(--gray);
  font-size: .95rem;
  line-height: 1.6;
}
.modulo-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.modulo-list li {
  padding: 6px 0 6px 16px;
  position: relative;
  font-size: .9rem;
  color: var(--graphite);
}
.modulo-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 8px; height: 2px;
  background: var(--red);
}
.modulo-note {
  font-size: .78rem;
  color: var(--gray);
  font-style: italic;
  margin-top: 12px;
  padding: 10px 14px;
  background: var(--gray-lighter);
  border-radius: 8px;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 30px;
}
.beneficio {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  padding: 16px 12px;
  text-align: center;
  font-size: .82rem;
  font-weight: 600;
  color: var(--graphite);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  transition: all .25s;
}
.beneficio:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}
.b-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 34px; height: 34px;
  background: var(--red-soft);
  color: var(--red);
  border-radius: 50%;
  font-size: 1rem;
}

@media (max-width: 900px) {
  .modulos { grid-template-columns: 1fr; }
  .modulo-list { grid-template-columns: 1fr; }
  .beneficios-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 500px) {
  .beneficios-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- BLOCO 09 - PASSOS ---------- */
.bloco-passos {
  background: linear-gradient(180deg, var(--red-dark) 0%, var(--graphite) 100%);
}
.passos {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: stretch;
  margin: 50px 0 40px;
}
.passo {
  background: var(--off-white);
  color: var(--graphite);
  padding: 28px 22px;
  border-radius: 14px;
  position: relative;
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column;
}
.passo-num {
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 900;
  color: var(--red);
  opacity: .15;
  line-height: 1;
}
.passo-icon {
  font-size: 1.8rem;
  color: var(--red);
  margin-bottom: 14px;
  width: 44px; height: 44px;
  background: var(--red-soft);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.passo h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--red-dark);
  margin-bottom: 10px;
}
.passo p { font-size: .88rem; color: var(--gray); margin: 0; }

.passo-connector {
  width: 30px; height: 2px;
  background: linear-gradient(90deg, var(--red-light), rgba(255,255,255,.3));
  align-self: center;
}

.passos-fechamento {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-style: italic;
  margin-top: 40px;
  max-width: 800px; margin-left: auto; margin-right: auto;
}

@media (max-width: 900px) {
  .passos { grid-template-columns: 1fr; }
  .passo-connector { display: none; }
}

/* ---------- BLOCO 10 - BÔNUS ---------- */
.bloco-bonus { background: linear-gradient(180deg, var(--off-white), #fff); }
.bonus-list { display: flex; flex-direction: column; gap: 40px; margin-top: 50px; }
.bonus-card {
  background: white;
  border: 2px solid var(--red);
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  position: relative;
  box-shadow: 0 20px 50px rgba(28,28,28,0.06);
  align-items: center;
}
.bonus-card.reverse {
  grid-template-columns: 1fr 300px;
}
.bonus-card.reverse .bonus-visual { order: 2; }
.bonus-card.reverse .bonus-content { order: 1; }

.bonus-badge {
  position: absolute;
  top: -14px; left: 40px;
  background: var(--red);
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .1em;
}

.bonus-visual {
  aspect-ratio: 1;
  background: transparent;
  border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.bonus-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.15));
}
.bonus-visual-inner {
  position: relative;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.b-visual-ciclo .ciclo-heart { font-size: 5rem; z-index: 2; }
.b-visual-ciclo .ciclo-arrow {
  position: absolute;
  font-size: 8rem;
  opacity: 0.3;
}
.b-visual-celular .celular-phone { font-size: 6rem; }
.b-visual-celular .notif {
  position: absolute;
  width: 14px; height: 14px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.3);
}
.b-visual-celular .n1 { top: 30%; left: 30%; }
.b-visual-celular .n2 { top: 40%; right: 25%; }
.b-visual-celular .n3 { bottom: 30%; left: 40%; }
.b-visual-shield .shield-icon { font-size: 6rem; }
.b-visual-shield .shield-check {
  position: absolute;
  font-size: 3rem;
  font-weight: 900;
  z-index: 2;
}

.bonus-content h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--graphite);
  margin-bottom: 12px;
}
.bonus-lead {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 16px;
}
.bonus-content ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 20px;
}
.bonus-content ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: .92rem;
  color: var(--graphite);
}
.bonus-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 800;
}
.bonus-value {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red);
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.05rem;
}
.bonus-value span {
  font-weight: 500;
  opacity: .85;
  font-size: .85rem;
}

@media (max-width: 800px) {
  .bonus-card, .bonus-card.reverse { grid-template-columns: 1fr; gap: 24px; padding: 30px; }
  .bonus-card.reverse .bonus-visual { order: 1; }
  .bonus-card.reverse .bonus-content { order: 2; }
  .bonus-visual { max-width: 240px; margin: 0 auto; }
}

/* ---------- BLOCO 11 - EMPILHAMENTO ---------- */
.stack {
  max-width: 800px;
  margin: 50px auto 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
}
.stack-visual {
  position: relative;
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 30px;
}
.stack-icon-bg {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.1;
}
.stack-icon-bg img { max-height: 180px; filter: brightness(0) invert(1); }
.stack-devices {
  position: relative;
  z-index: 2;
}
.stack-device {
  background: var(--off-white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.stack-device img { max-width: 280px; height: auto; }
.stack-mockup {
  max-width: 100%;
  max-height: 220px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

.stack-list {
  display: flex; flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}
.stack-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: white;
  align-items: center;
}
.stack-item .check-mark { color: var(--red-light); }
.stack-name { font-size: .95rem; }
.stack-val { font-weight: 800; color: var(--red-light); }

.stack-total {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0 0;
  border-top: 2px solid var(--red);
}
.stack-total-label { color: rgba(255,255,255,.75); font-size: .9rem; }
.stack-total-value {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 900;
  color: white;
}

@media (max-width: 640px) {
  .stack { padding: 24px; }
  .stack-item { grid-template-columns: auto 1fr; }
  .stack-item .stack-val { grid-column: 2; padding-left: 24px; }
}

/* ---------- BLOCO 12 - AMPLIFICAÇÃO ---------- */
.amp-cards {
  display: flex; flex-direction: column; gap: 20px;
  margin: 40px 0 20px;
}
.amp-card {
  background: white;
  border: 1px solid var(--gray-light);
  border-left: 5px solid var(--red);
  border-radius: 12px;
  padding: 26px 30px;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: start;
  box-shadow: var(--shadow-soft);
  transition: transform .25s;
}
.amp-card:hover { transform: translateX(4px); }
.amp-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--red);
  font-weight: 900;
  line-height: 1;
}
.amp-body p { color: var(--graphite); font-size: 1rem; margin-bottom: 10px; }
.amp-close {
  font-weight: 800;
  color: var(--red) !important;
  letter-spacing: .04em;
  margin-top: 8px !important;
  font-size: .95rem !important;
}

.claro-band {
  background: var(--red);
  color: white;
  text-align: center;
  padding: 30px;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: .1em;
  border-radius: 12px;
  margin: 40px 0 30px;
  box-shadow: var(--shadow-red);
  font-family: var(--font-serif);
}

.custa-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--graphite);
  font-style: italic;
}

/* ---------- BLOCO 13 - EMPILHAMENTO (fundo claro, card escuro) ---------- */
.bloco-empilhamento {
  background: linear-gradient(180deg, var(--off-white) 0%, #fff 100%);
}
.empilhamento-card {
  max-width: 900px;
  margin: 40px auto 0;
  background: linear-gradient(135deg, var(--graphite) 0%, #2a0e10 60%, var(--red-dark) 100%);
  border-radius: 24px;
  padding: 50px 40px;
  color: white;
  box-shadow: 0 40px 80px rgba(28,28,28,0.25), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
.empilhamento-card::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.empilhamento-visual {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}
.empilhamento-mockup {
  max-width: 100%;
  max-height: 320px;
  margin: 0 auto;
  filter:
    drop-shadow(0 0 40px rgba(255,255,255,0.12))
    drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}
.empilhamento-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  position: relative;
  z-index: 2;
}
.empilhamento-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 1rem;
}
.empilhamento-list li:last-child { border-bottom: 0; }
.empilhamento-list .check-mark {
  color: var(--red-light);
  font-size: 1.1rem;
}
.emp-name { color: rgba(255,255,255,0.92); }
.emp-val {
  color: var(--red-light);
  font-weight: 800;
  font-size: 1.05rem;
}
.emp-val s { color: var(--red-light); text-decoration-thickness: 2px; }

.empilhamento-total {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid var(--red);
  margin-top: 10px;
  position: relative;
  z-index: 2;
}
.emp-total-label {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  letter-spacing: .04em;
  margin: 0 0 8px;
}
.emp-total-value {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: white;
  font-weight: 900;
  margin: 0;
  line-height: 1;
}
.emp-total-value s { color: white; text-decoration-thickness: 3px; }

@media (max-width: 640px) {
  .empilhamento-card { padding: 30px 20px; }
  .empilhamento-list li { grid-template-columns: auto 1fr; }
  .empilhamento-list .emp-val { grid-column: 2; padding-left: 28px; }
  .emp-total-value { font-size: 2.5rem; }
}

/* ---------- BLOCO 13B - PREÇO (fundo escuro vermelho, card claro centralizado) ---------- */
.bloco-preco {
  background: linear-gradient(180deg, var(--graphite) 0%, #3a0d10 50%, var(--red-dark) 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.bloco-preco::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1.5px);
  background-size: 24px 24px;
  pointer-events: none;
}
.preco-title {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
.bloco-preco > .container > .eyebrow-white,
.bloco-preco > .container > .section-lead {
  position: relative;
  z-index: 2;
}
.preco-card {
  max-width: 640px;
  margin: 40px auto 0;
  background: var(--off-white);
  border: 3px solid var(--red);
  border-radius: 24px;
  padding: 50px 40px;
  color: var(--graphite);
  box-shadow: 0 40px 80px rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.preco-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.preco-brand img { height: 150px; width: auto; max-width: 100%; }

.preco-values {
  background: white;
  border: 2px dashed var(--red);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  margin: 4px 0;
}
.preco-parcel {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  color: var(--red);
  line-height: 1;
}
.pp-mult {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--graphite);
}
.pp-currency {
  font-size: 1.3rem;
  font-weight: 800;
  margin-left: 4px;
}
.pp-value {
  font-family: var(--font-serif);
  font-size: 4.2rem;
  font-weight: 900;
  color: var(--red);
}
.pp-cents {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--red);
  align-self: flex-start;
  margin-top: 8px;
}
.preco-parcel-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.preco-secondary {
  color: var(--gray);
  font-size: .95rem;
  font-weight: 500;
}

.preco-cta { width: 100%; }
.preco-trust {
  display: flex; justify-content: center; gap: 20px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .82rem;
  color: var(--graphite);
  font-weight: 600;
}
.t-icon { color: var(--red); font-size: 1rem; }

.preco-payments {
  display: flex; justify-content: center; gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.pay-badge {
  background: var(--gray-lighter);
  color: var(--graphite);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 600;
}
.preco-hotmart {
  display: flex;
  justify-content: center;
  margin-top: 8px;
  opacity: .75;
}
.hotmart-logo {
  height: 28px;
  width: auto;
}

@media (max-width: 640px) {
  .preco-card { padding: 30px 20px; }
  .pp-value { font-size: 3.4rem; }
}

/* ---------- BLOCO 14 - ESPECIALISTA ---------- */
.specialist-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  margin: 16px 0;
}
.specialist-list li {
  padding: 6px 0 6px 20px;
  position: relative;
  font-size: .95rem;
  color: var(--graphite);
}
.specialist-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 10px; height: 2px;
  background: var(--red);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.pillar {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  padding: 14px;
  display: flex; align-items: center; gap: 10px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--graphite);
}
.p-icon { color: var(--red); font-size: 1.2rem; }

.joao-quote-card {
  background: var(--red-dark);
  color: white;
  border-radius: 20px;
  padding: 50px 40px;
  max-width: 900px;
  margin: 50px auto 0;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(179,19,26,0.25);
}
.quote-mark-big {
  font-family: var(--font-serif);
  font-size: 6rem;
  color: rgba(255,255,255,.2);
  line-height: .5;
  margin-bottom: 20px;
}
.joao-quote-card p {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 20px;
}
.quote-author {
  font-family: var(--font-sans) !important;
  font-style: normal !important;
  font-size: .9rem !important;
  color: rgba(255,255,255,.75);
  font-weight: 700;
  letter-spacing: .1em;
  margin: 0 !important;
}

@media (max-width: 640px) {
  .specialist-list { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .joao-quote-card { padding: 30px 24px; }
  .joao-quote-card p { font-size: 1.2rem; }
}

/* ---------- BLOCO 15 - GARANTIA ---------- */
.bloco-garantia { padding: 80px 0; }
.garantia-card {
  background: var(--off-white);
  color: var(--graphite);
  border-radius: 20px;
  padding: 50px;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.selo-circle {
  width: 200px; height: 200px;
  border: 5px dashed var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: rotate 30s linear infinite;
}
@keyframes rotate { to { transform: rotate(360deg); } }
.selo-inner {
  animation: rotate 30s linear infinite reverse;
  text-align: center;
  color: var(--red);
  font-weight: 800;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.selo-num { display: block; font-family: var(--font-serif); font-size: 3rem; line-height: 1; }
.selo-lbl { display: block; font-size: .75rem; letter-spacing: .2em; }
.selo-sub { display: block; font-size: .6rem; letter-spacing: .15em; color: var(--graphite); margin-top: 2px; }

.garantia-body h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--red-dark);
  margin-bottom: 14px;
}
.garantia-strong {
  padding: 14px 18px;
  background: var(--red-soft);
  border-radius: 10px;
  margin: 16px 0;
}
.garantia-strong strong { color: var(--red-dark); font-size: 1.1rem; }

@media (max-width: 720px) {
  .garantia-card { grid-template-columns: 1fr; text-align: center; padding: 30px; }
  .selo-circle { margin: 0 auto; width: 160px; height: 160px; }
}

/* ---------- BLOCO 16 - FAQ ---------- */
.faq-header { text-align: center; margin-bottom: 40px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: white;
  border: 1px solid var(--gray-light);
  border-left: 4px solid var(--red);
  border-radius: 10px;
  padding: 18px 22px;
  transition: box-shadow .25s;
}
.faq-item[open] {
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-top: 4px solid var(--red);
  border-left-color: var(--red);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--graphite);
  font-size: 1rem;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--red);
  font-size: 1.6rem;
  font-weight: 400;
  transition: transform .25s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-body {
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid var(--gray-light);
  color: var(--gray);
  font-size: .95rem;
}
.faq-body p { margin: 0; }

/* ---------- BLOCO 17 - FINAL ---------- */
.bloco-final {
  background: linear-gradient(180deg, var(--graphite) 0%, var(--red-dark) 100%);
  color: white;
  padding: 100px 0;
}
.final-title {
  max-width: 900px;
  margin-left: auto; margin-right: auto;
  margin-bottom: 50px;
}
.final-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 800px; margin: 0 auto 50px;
}
.choice {
  padding: 32px;
  border-radius: 14px;
}
.choice-bad {
  background: rgba(0,0,0,0.3);
  color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.1);
}
.choice-bad h3 { color: rgba(255,255,255,.6); font-size: 1.1rem; }
.choice-good {
  background: var(--off-white);
  color: var(--graphite);
}
.choice-good h3 { color: var(--red); font-size: 1.1rem; }
.choice ul { list-style: none; padding: 0; margin: 16px 0 0; }
.choice li {
  padding: 8px 0;
  display: flex; align-items: center; gap: 10px;
  font-size: .95rem;
}

.final-emotion {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.4;
  max-width: 900px;
  margin: 60px auto;
}

.final-offer {
  max-width: 640px;
  margin: 40px auto 0;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}
.final-offer h3 {
  font-family: var(--font-serif);
  color: white;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.final-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 24px;
  max-width: 500px;
  text-align: left;
}
.final-list li {
  color: rgba(255,255,255,.9);
  padding: 8px 0;
  display: flex; align-items: center; gap: 10px;
  font-size: .95rem;
}
.final-list .check-mark { color: var(--red-light); }
.final-price {
  color: white; margin: 30px 0;
  padding: 24px;
  background: rgba(255,255,255,.05);
  border: 2px dashed rgba(240,74,80,.5);
  border-radius: 12px;
  text-align: center;
}
.final-price p { margin: 4px 0; }
.final-price s { color: rgba(255,255,255,.4); }
.fp-from {
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  margin: 0 0 6px !important;
}
.fp-parcel {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--red-light);
  font-weight: 800;
  margin: 0;
}
.fp-parcel strong { font-weight: 900; }
.fp-avista {
  color: rgba(255,255,255,.75);
  font-size: .95rem;
  margin: 6px 0 0 !important;
  font-weight: 500;
}
.final-note {
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  margin-top: 20px;
}

@media (max-width: 640px) {
  .final-choice { grid-template-columns: 1fr; }
  .final-offer { padding: 24px; }
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--graphite);
  color: rgba(255,255,255,.7);
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}
.footer-icon-bg {
  position: absolute;
  right: -80px; bottom: -80px;
  width: 400px;
  opacity: .04;
  pointer-events: none;
}
.footer-icon-bg img { width: 100%; }

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
  position: relative; z-index: 2;
}
.footer-brand img { height: 50px; margin-bottom: 12px; filter: brightness(0) invert(1); }
.footer-tag {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255,255,255,.85);
  margin: 4px 0;
}
.footer-author {
  font-size: .85rem;
  color: var(--red-light);
  font-weight: 700;
  letter-spacing: .05em;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.footer-col h4 {
  color: white;
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 4px 0; }
.footer-col a {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: color .2s;
}
.footer-col a:hover { color: var(--red-light); }

.footer-disclaimer {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  margin-top: 20px;
  line-height: 1.6;
}
.footer-copy {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  text-align: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.05);
}

@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

/* ---------- ANIMAÇÕES ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   OTIMIZAÇÕES MOBILE
   ============================================================ */
@media (max-width: 900px) {
  .section { padding: 70px 0; }
  .hero { padding: 30px 0 40px; }
  .hero-title { font-size: clamp(1.3rem, 5vw, 1.9rem) !important; }
  .apresentacao-split { gap: 24px; }
}

@media (max-width: 640px) {
  html { -webkit-text-size-adjust: 100%; }
  body { font-size: 16px; }

  .section { padding: 50px 0; }
  .hero { padding: 20px 0 30px; }
  .container { padding: 0 16px; }

  /* Tipografia */
  .section-title { font-size: 1.5rem !important; line-height: 1.2; }
  .section-lead { font-size: .95rem; }
  .hero-title { font-size: 1.4rem !important; line-height: 1.2; }
  .hero-sub { font-size: .95rem; }
  .eyebrow, .eyebrow-white, .eyebrow-line { font-size: .68rem; }

  /* Botões — touch target mínimo 48px */
  .btn { min-height: 48px; padding: 14px 20px; font-size: 14px; }
  .btn-xl { padding: 18px 20px; font-size: 14px; letter-spacing: .02em; }
  .btn-lg { padding: 16px 18px; font-size: 13px; letter-spacing: .02em; }
  .btn-sm { padding: 10px 14px; font-size: 12px; }

  /* Cards de dor — mais compactos */
  .pain-card { padding: 16px; }
  .pain-card p { font-size: .88rem; }
  .pain-icon { width: 36px; height: 36px; font-size: 1rem; }

  /* Editorial lines */
  .editorial-lines .line { font-size: 1.05rem; }
  .editorial-lines .line-emphasis { font-size: 1.2rem !important; }
  .turning-quote-text { font-size: 1.4rem !important; }
  .turn-answer { font-size: 1.8rem; }
  .turn-card { padding: 24px 20px; }

  /* Módulos */
  .modulo { padding: 24px 20px; }
  .modulo h3 { font-size: 1.25rem; }
  .modulo-number { font-size: 3rem; top: 12px; right: 16px; }

  /* Passos */
  .passo { padding: 22px 18px; }
  .passo h3 { font-size: 1.15rem; }
  .passo-num { font-size: 2.5rem; top: 10px; right: 14px; }

  /* Bônus */
  .bonus-card { padding: 24px 18px; gap: 18px !important; }
  .bonus-card, .bonus-card.reverse { grid-template-columns: 1fr !important; }
  .bonus-content h3 { font-size: 1.3rem; }
  .bonus-lead { font-size: .92rem; }
  .bonus-content ul li { font-size: .88rem; }
  .bonus-visual { max-width: 260px; }

  /* Empilhamento */
  .empilhamento-card { padding: 30px 20px; }
  .empilhamento-list li {
    grid-template-columns: auto 1fr !important;
    row-gap: 4px;
  }
  .empilhamento-list .emp-val {
    grid-column: 2 !important;
    padding-left: 24px;
    text-align: left !important;
    font-size: .95rem;
  }
  .empilhamento-mockup { max-height: 200px; }

  /* Preço */
  .bloco-preco { padding: 60px 0; }
  .preco-card { padding: 30px 20px; margin-top: 24px; }
  .preco-brand img { height: 90px; }
  .preco-values { padding: 20px 12px; }
  .pp-value { font-size: 3rem; }
  .pp-cents { font-size: 1.3rem; margin-top: 6px; }
  .pp-mult, .pp-currency { font-size: 1rem; }
  .preco-title { font-size: 1.5rem !important; }
  .preco-trust, .preco-payments { gap: 10px; }
  .trust-item { font-size: .75rem; }

  /* Depoimentos */
  .testimonial { padding: 24px 20px; }
  .test-avatar { width: 54px; height: 54px; }
  .test-highlight { font-size: 1.05rem; }
  .test-body { font-size: .88rem; }

  /* Diferenciação */
  .compare-card { padding: 24px 18px; min-height: auto; }
  .compare-list li { font-size: .88rem; padding: 8px 0; }

  /* Amplificação */
  .amp-card { padding: 22px 20px; grid-template-columns: 40px 1fr !important; gap: 12px !important; }
  .amp-num { font-size: 2.5rem; }
  .amp-body p { font-size: .95rem; }
  .claro-band { font-size: 1.4rem; padding: 24px 16px; }
  .custa-text { font-size: 1.05rem; }

  /* Garantia */
  .garantia-card { padding: 24px 20px; }
  .garantia-body h2 { font-size: 1.5rem; }
  .selo-circle { width: 140px; height: 140px; }
  .selo-num { font-size: 2.4rem; }

  /* FAQ */
  .faq-item { padding: 14px 16px; }
  .faq-item summary { font-size: .92rem; }

  /* Final */
  .final-title { font-size: 1.5rem !important; margin-bottom: 30px; }
  .final-emotion { font-size: 1.3rem !important; margin: 30px auto; }
  .final-offer { padding: 24px 18px; }
  .fp-parcel { font-size: 1.8rem; }

  /* Especialista */
  .joao-quote-card { padding: 24px 18px; }
  .joao-quote-card p { font-size: 1.1rem; }
  .clinica-inner { padding: 30px 18px; }
  .clinica-title { font-size: 1.35rem; }
  .clinica-quote { font-size: 1.4rem; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }

  /* Beneficios grid mobile */
  .beneficios-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .beneficio { font-size: .78rem; padding: 12px 8px; }

  /* Positioning cards */
  .positioning-cards { grid-template-columns: 1fr !important; gap: 12px; }
  .pos-card { padding: 20px; }

  /* Diagrama imagem */
  .diagram-image { margin: 30px auto 20px; }

  /* Módulo lista em 1 coluna */
  .modulo-list { grid-template-columns: 1fr !important; }

  /* Ordem de leitura mobile: mockup vem depois do texto */
  .apresentacao-split { grid-template-columns: 1fr !important; }
  .apresentacao-split .mockup-hero { order: 2; margin-top: 8px; }
  .apresentacao-split .apresentacao-content { order: 1; }
}

/* Telas muito pequenas */
@media (max-width: 380px) {
  .hero-title { font-size: 1.25rem !important; }
  .section-title { font-size: 1.3rem !important; }
  .btn-lg, .btn-xl { font-size: 12px; letter-spacing: .01em; padding: 14px 14px; }
  .pp-value { font-size: 2.6rem; }
}
