/* =========================================================
   LP Método Balance Pro — Dr. Fabrício Costa | Sano Lab
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700;800;900&family=Noto+Sans:wght@400;500;600&display=swap');

/* ── Tokens ── */
:root {
  --red:        #C41230;
  --red-dark:   #9B0E26;
  --red-light:  #F5E6E9;
  --white:      #FFFFFF;
  --off-white:  #F8F8F8;
  --dark:       #111111;
  --gray-dark:  #333333;
  --gray:       #666666;
  --gray-light: #EBEBEB;
  --border:     #E0E0E0;

  --ff-head: 'Figtree', sans-serif;
  --ff-body: 'Noto Sans', sans-serif;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 4px 24px rgba(0,0,0,.12);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.18);
  --shadow-red: 0 4px 24px rgba(196,18,48,.35);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --transition: .25s ease;
  --max-w: 1160px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
strong { font-weight: 700; }

/* ── Container ── */
.lp-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section ── */
.lp-section { padding: 80px 0; }

/* ── Section header ── */
.lp-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}
.lp-section-header h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 12px 0 16px;
  color: var(--dark);
}
.lp-section-header p { color: var(--gray); font-size: 1.05rem; }
.lp-section-lead {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 1.05rem;
  color: var(--gray-dark);
  line-height: 1.7;
}
.center-light h2 { color: var(--white); }
.center-light p  { color: rgba(255,255,255,.75); }

/* ── Tag ── */
.lp-tag {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--red-light);
  color: var(--red);
}
.lp-tag-red   { background: var(--red);            color: var(--white); }
.lp-tag-white { background: rgba(255,255,255,.18); color: var(--white); }
.lp-tag-dark  { background: var(--gray-light);     color: var(--gray-dark); }

/* ── Skip link ── */
.lp-skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  background: var(--red);
  color: var(--white);
  padding: 12px 20px;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .9rem;
  border-radius: 0 0 var(--radius-sm) 0;
  transition: top .15s ease;
}
.lp-skip-link:focus { top: 0; }

/* ── Buttons ── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff-head);
  font-weight: 700;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: .01em;
}
.lp-btn-lg  { font-size: 1.05rem; padding: 16px 36px; min-height: 52px; }
.lp-btn, .lp-faq-q { touch-action: manipulation; }

.lp-btn:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }
.lp-hero .lp-btn:focus-visible,
.lp-market .lp-btn:focus-visible,
.lp-cta-final .lp-btn:focus-visible { outline-color: var(--white); }
.lp-faq-q:focus-visible { outline: 3px solid var(--red); outline-offset: -3px; }
.lp-whatsapp-float:focus-visible,
.lp-topbar a:focus-visible,
.lp-pricing-note a:focus-visible,
.lp-footer a:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.lp-btn-primary { background: var(--red); color: var(--white); box-shadow: var(--shadow-red); }
.lp-btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(196,18,48,.45); }

.lp-btn-white { background: var(--white); color: var(--red); }
.lp-btn-white:hover { background: var(--off-white); transform: translateY(-2px); }

/* ── Topbar ── */
.lp-topbar {
  background: var(--dark);
  color: rgba(255,255,255,.8);
  font-size: .78rem;
  font-family: var(--ff-head);
  padding: 9px 24px;
}
.lp-topbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.lp-topbar-sep { opacity: .4; }
.lp-topbar a { color: var(--red); font-weight: 700; }
.lp-topbar a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.lp-hero {
  background: var(--dark);
  padding: 64px 0 80px;
  overflow: hidden;
}
.lp-hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.lp-hero-content { display: flex; flex-direction: column; }
.lp-hero-content .lp-tag { align-self: flex-start; margin-bottom: 20px; }
.lp-hero-content h1 {
  font-family: var(--ff-head);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
}
.lp-hero-content h1 em { font-style: normal; color: var(--red); }
.lp-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 520px;
}
.lp-hero-content .lp-btn-primary { align-self: flex-start; }
.lp-hero-disclaimer {
  font-size: .8rem;
  color: rgba(255,255,255,.38);
  margin-top: 14px;
}

.lp-hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 520px;
}
.lp-hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.lp-hero-badge {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.lp-hero-badge img { width: 40px; height: 40px; object-fit: contain; filter: brightness(0) invert(1); flex-shrink: 0; }
.lp-hero-badge strong { display: block; color: var(--white); font-size: .9rem; font-family: var(--ff-head); }
.lp-hero-badge span  { color: rgba(255,255,255,.55); font-size: .65rem; }

/* ══════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════ */
.lp-trust-bar {
  background: var(--red);
  padding: 18px 24px;
}
.lp-trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.lp-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 32px;
}
.lp-trust-item strong {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
}
.lp-trust-item span {
  font-size: .72rem;
  color: rgba(255,255,255,.72);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.lp-trust-sep {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   PROBLEMA
══════════════════════════════════════════ */
.lp-pain { background: var(--off-white); }
.lp-pain .lp-section-header { max-width: 860px; }
.lp-pain .lp-section-header h2 { font-size: clamp(1rem, 3vw, 1.85rem); }
.lp-pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.lp-pain-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition);
}
.lp-pain-card:hover { border-color: var(--red); box-shadow: var(--shadow-md); }
.lp-pain-icon {
  width: 48px; height: 48px;
  background: var(--red-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lp-pain-icon svg { width: 22px; height: 22px; stroke: var(--red); }
.lp-pain-card p { color: var(--gray-dark); font-size: .95rem; line-height: 1.55; }
.lp-pain-cta {
  text-align: center;
  background: var(--red-light);
  border-left: 4px solid var(--red);
  border-radius: var(--radius-md);
  padding: 20px 28px;
}
.lp-pain-cta p { color: var(--red-dark); font-size: 1rem; }

/* ══════════════════════════════════════════
   MERCADO
══════════════════════════════════════════ */
.lp-market { background: var(--dark); }
.lp-market-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.lp-market-inner .lp-tag { margin-bottom: 20px; }
.lp-market-inner h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}
.lp-market-inner p {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 640px;
}
.lp-market-callout {
  background: rgba(196,18,48,.18);
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 18px 24px;
  color: rgba(255,255,255,.92);
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  width: 100%;
  margin: 8px 0 36px;
  line-height: 1.5;
}

/* ══════════════════════════════════════════
   MÉTODO
══════════════════════════════════════════ */
.lp-method { background: var(--white); }
.lp-method .lp-section-header h2 { font-size: clamp(1.6rem, 3.2vw, 2.2rem); }
.lp-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}
.lp-pillar {
  background: var(--off-white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.lp-pillar:hover { border-color: var(--red); box-shadow: var(--shadow-md); }
.lp-pillar-highlight { background: var(--red); border-color: var(--red); }
.lp-pillar-highlight .lp-pillar-num       { color: rgba(255,255,255,.9); }
.lp-pillar-highlight .lp-pillar-num small { color: rgba(255,255,255,.65); }
.lp-pillar.lp-pillar-highlight h3 { color: var(--white); }
.lp-pillar.lp-pillar-highlight p  { color: rgba(255,255,255,.7); }
.lp-pillar-num {
  font-family: var(--ff-head);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}
.lp-pillar-num small { font-size: 1.4rem; font-weight: 700; }
.lp-pillar h3 {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.lp-pillar p { font-size: .9rem; color: var(--gray); line-height: 1.55; }

/* ── Bloco Dr. Tan ── */
.lp-tan-block {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  align-items: start;
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--border);
}
.lp-tan-img-wrap {
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1;
  width: 140px;
}
.lp-tan-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.lp-tan-content .lp-tag { margin-bottom: 16px; }
.lp-tan-content h3 {
  font-family: var(--ff-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.25;
}
.lp-tan-content p { color: var(--gray); font-size: .95rem; line-height: 1.65; margin-bottom: 14px; }
.lp-tan-content p strong { color: var(--dark); }
.lp-quote {
  border-left: 3px solid var(--red);
  background: var(--white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 14px 18px;
  margin-top: 4px;
}
.lp-quote p { font-style: italic; color: var(--gray-dark); margin: 0; font-size: .9rem; }
.lp-quote .lp-quote-translation { font-style: normal; color: var(--gray); font-size: .82rem; margin-top: 6px; }
.lp-quote footer { margin-top: 8px; font-size: .8rem; color: var(--gray); }

/* ══════════════════════════════════════════
   MENTOR
══════════════════════════════════════════ */
.lp-mentor { background: var(--off-white); }
.lp-mentor-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: start;
}
.lp-mentor-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: sticky;
  top: 90px;
}
.lp-mentor-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.lp-mentor-content .lp-tag { margin-bottom: 14px; }
.lp-mentor-content h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
}
.lp-mentor-content > p { color: var(--gray); font-size: 1rem; line-height: 1.7; margin-bottom: 14px; }
.lp-mentor-content > p strong { color: var(--dark); }
.lp-mentor-creds { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.lp-mentor-creds li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--gray-dark);
  font-size: .93rem;
  line-height: 1.5;
}
.lp-mentor-creds li svg { width: 20px; height: 20px; stroke: var(--red); flex-shrink: 0; margin-top: 2px; }

/* ══════════════════════════════════════════
   CURRÍCULO
══════════════════════════════════════════ */
.lp-curriculum { background: var(--dark); }
.lp-curriculum .lp-section-header h2 { color: var(--white); }
.lp-curriculum .lp-section-header p  { color: rgba(255,255,255,.6); font-size: .9rem; }
.lp-curr-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 48px;
  max-width: 880px;
  margin: 0 auto 48px;
}
.lp-curr-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,.88);
  font-size: .97rem;
  line-height: 1.5;
}
.lp-curr-check {
  width: 22px; height: 22px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.lp-curr-check svg { width: 12px; height: 12px; stroke: var(--white); }
.lp-curr-label {
  text-align: left;
  font-family: var(--ff-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  max-width: 880px;
  margin: 0 auto 12px;
}
.lp-curr-cta { text-align: center; }

/* ══════════════════════════════════════════
   BENEFÍCIOS
══════════════════════════════════════════ */
.lp-benefits { background: var(--white); }
.lp-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lp-benefit {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.lp-benefit:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.lp-benefit-icon {
  width: 52px; height: 52px;
  background: var(--red-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.lp-benefit-icon svg { width: 24px; height: 24px; stroke: var(--red); }
.lp-benefit h4 {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.lp-benefit p { font-size: .88rem; color: var(--gray); line-height: 1.55; }

/* ══════════════════════════════════════════
   PARA QUEM É
══════════════════════════════════════════ */
.lp-forwhom { background: var(--red-dark); }
.lp-forwhom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.lp-forwhom-block {
  border-radius: var(--radius-lg);
  padding: 36px;
}
.lp-forwhom-yes { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); }
.lp-forwhom-no  { background: rgba(0,0,0,.2);        border: 1px solid rgba(255,255,255,.08); }
.lp-forwhom-block h3 {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.lp-forwhom-yes h3 svg { stroke: #4ade80; width: 22px; height: 22px; }
.lp-forwhom-no  h3 svg { stroke: rgba(255,255,255,.4); width: 22px; height: 22px; }
.lp-forwhom-block ul { display: flex; flex-direction: column; gap: 12px; }
.lp-forwhom-yes li {
  color: rgba(255,255,255,.88);
  font-size: .95rem;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.lp-forwhom-yes li::before { content: '→'; position: absolute; left: 0; color: rgba(255,255,255,.45); }
.lp-forwhom-no li {
  color: rgba(255,255,255,.48);
  font-size: .95rem;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.lp-forwhom-no li::before { content: '–'; position: absolute; left: 0; }

/* ══════════════════════════════════════════
   VÍDEOS
══════════════════════════════════════════ */
.lp-videos { background: var(--off-white); }
.lp-videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 700px;
  margin: 0 auto;
}
.lp-video-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark);
  box-shadow: var(--shadow-md);
}
.lp-video-wrap video {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
}

/* ══════════════════════════════════════════
   DEPOIMENTOS WHATSAPP
══════════════════════════════════════════ */
.lp-wadepos { background: var(--dark); }
.lp-wadepos .lp-section-header h2 { color: var(--white); }
.lp-wadepos .lp-section-header p  { color: rgba(255,255,255,.6); }
.lp-wa-grid {
  columns: 3;
  column-gap: 20px;
}
.lp-wa-img {
  display: block;
  width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  break-inside: avoid;
  box-shadow: 0 4px 24px rgba(0,0,0,.55);
}

/* ══════════════════════════════════════════
   PREÇO
══════════════════════════════════════════ */
.lp-pricing { background: var(--off-white); }
.lp-pricing-grid {
  display: grid;
  gap: 28px;
  margin: 0 auto;
  align-items: stretch;
}
.lp-pricing-single {
  grid-template-columns: 1fr;
  max-width: 500px;
}
.lp-price-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.lp-price-card-body { flex: 1; display: flex; flex-direction: column; }
.lp-price-card .lp-btn { margin-top: auto; }
.lp-price-card-featured { border-color: var(--red); box-shadow: 0 8px 40px rgba(196,18,48,.18); }
.lp-price-best {
  background: var(--red);
  color: var(--white);
  font-family: var(--ff-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px;
}
.lp-price-card-top {
  background: var(--off-white);
  padding: 28px;
  border-bottom: 1px solid var(--border);
}
.lp-price-card-featured .lp-price-card-top {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-bottom-color: transparent;
}
.lp-price-tag {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(196,18,48,.15);
  color: var(--red);
  margin-bottom: 10px;
}
.lp-price-card-featured .lp-price-tag { background: rgba(255,255,255,.2); color: var(--white); }
.lp-price-card-top h3 {
  font-family: var(--ff-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.lp-price-card-featured .lp-price-card-top h3 { color: var(--white); }
.lp-price-card-top p { font-size: .9rem; color: var(--gray); }
.lp-price-card-featured .lp-price-card-top p { color: rgba(255,255,255,.78); }
.lp-price-card-body { padding: 28px; }
.lp-price {
  margin-bottom: 24px;
}
.lp-price-install {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.lp-price-times {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray);
}
.lp-price-install strong {
  font-family: var(--ff-head);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.lp-price-avista {
  font-size: .88rem;
  color: var(--gray);
  margin-top: 6px;
}
.lp-price-avista strong { color: var(--gray-dark); font-weight: 700; }
.lp-price-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.lp-price-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--gray-dark);
}
.lp-price-list li svg { width: 16px; height: 16px; stroke: var(--red); flex-shrink: 0; margin-top: 3px; }
.lp-price-card .lp-btn { width: 100%; }
.lp-pricing-note { text-align: center; margin-top: 28px; font-size: .9rem; color: var(--gray); }
.lp-pricing-note a { color: var(--red); font-weight: 600; }
.lp-pricing-note a:hover { text-decoration: underline; }

/* ── ROI ── */
.lp-roi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 36px auto 32px;
  max-width: 860px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}
.lp-roi-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
  border-right: 1px solid var(--border);
}
.lp-roi-item:last-child { border-right: none; }
.lp-roi-icon {
  width: 38px; height: 38px;
  background: var(--red-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lp-roi-icon svg { width: 17px; height: 17px; stroke: var(--red); }
.lp-roi-item strong { display: block; font-family: var(--ff-head); font-size: .9rem; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.lp-roi-item p { font-size: .83rem; color: var(--gray); line-height: 1.55; }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.lp-faq { background: var(--white); }
.lp-faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: border-color var(--transition); }
.lp-faq-item.open { border-color: var(--red); }
.lp-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: .98rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
}
.lp-faq-q:hover { background: var(--off-white); }
.lp-faq-q svg { width: 20px; height: 20px; stroke: var(--gray); flex-shrink: 0; transition: transform var(--transition); }
.lp-faq-item.open .lp-faq-q { color: var(--red); }
.lp-faq-item.open .lp-faq-q svg { transform: rotate(45deg); stroke: var(--red); }
.lp-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.lp-faq-item.open .lp-faq-a { max-height: 320px; }
.lp-faq-a p { padding: 0 24px 20px; color: var(--gray); font-size: .95rem; line-height: 1.65; }

/* ══════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════ */
.lp-cta-final {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 96px 0;
  text-align: center;
}
.lp-cta-final h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}
.lp-cta-final p { color: rgba(255,255,255,.78); font-size: 1.05rem; max-width: 560px; margin: 0 auto 36px; }
.lp-cta-sub {
  margin-top: 16px !important;
  margin-bottom: 0 !important;
  font-size: .82rem !important;
  color: rgba(255,255,255,.4) !important;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.lp-footer {
  background: var(--dark);
  padding: 36px 0;
  color: rgba(255,255,255,.45);
  font-size: .85rem;
}
.lp-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.lp-footer a { color: var(--red); }
.lp-footer a:hover { text-decoration: underline; }
.lp-logo { height: 44px; width: auto; }
.lp-logo-footer { height: 36px; }
.lp-logo-white { filter: brightness(0) invert(1); }
.lp-footer-disclaimer { font-size: .75rem; color: rgba(255,255,255,.28); max-width: 560px; line-height: 1.6; }

/* ══════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════ */
.lp-whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .25s ease, box-shadow .25s ease;
}
.lp-whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.lp-whatsapp-float svg { width: 30px; height: 30px; }

/* ══════════════════════════════════════════
   ESCASSEZ
══════════════════════════════════════════ */
.lp-dot-live {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  margin-right: 7px;
  vertical-align: middle;
  animation: lp-pulse 1.6s ease-in-out infinite;
}
@keyframes lp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .45; transform: scale(1.4); }
}
.lp-seats-left {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: var(--gray);
  margin-top: 12px;
  font-weight: 500;
}

/* ══════════════════════════════════════════
   RESPONSIVE — 1024px
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .lp-hero-inner        { grid-template-columns: 1fr; gap: 48px; }
  .lp-hero-content h1   { font-size: clamp(2rem, 6vw, 3rem); }
  .lp-hero-visual       { max-height: 400px; max-width: 380px; }
  .lp-hero-content .lp-btn-primary { align-self: stretch; text-align: center; }

  .lp-mentor-inner      { grid-template-columns: 280px 1fr; gap: 40px; }
  .lp-mentor-img        { position: static; }

  .lp-benefits-grid     { grid-template-columns: repeat(2, 1fr); }

  .lp-tan-block         { grid-template-columns: 120px 1fr; gap: 28px; padding: 32px; }
  .lp-tan-img-wrap      { width: 100px; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — 768px
══════════════════════════════════════════ */
@media (max-width: 768px) {
  .lp-section { padding: 56px 0; }

  /* Topbar */
  .lp-topbar-inner  { font-size: .72rem; gap: 8px; }
  .lp-topbar-sep    { display: none; }

  /* Hero */
  .lp-hero          { padding: 52px 0 56px; }
  .lp-hero-visual   { display: none; }
  .lp-hero-content .lp-btn-primary { align-self: stretch; text-align: center; }
  .lp-hero-content h1 { font-size: clamp(2rem, 7vw, 2.8rem); }
  .lp-hero-sub      { font-size: 1rem; max-width: 100%; }

  /* Trust bar */
  .lp-trust-inner   { gap: 0; flex-wrap: wrap; }
  .lp-trust-item    { padding: 10px 20px; min-width: 45%; }
  .lp-trust-sep     { display: none; }

  /* Dor */
  .lp-pain-grid     { grid-template-columns: 1fr; }

  /* Mercado */
  .lp-market-inner  { padding: 0 24px; }
  .lp-market-inner h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }

  /* Método */
  .lp-pillars       { grid-template-columns: 1fr; margin-bottom: 40px; }
  .lp-tan-block     { grid-template-columns: 1fr; text-align: center; padding: 28px; }
  .lp-tan-img-wrap  { width: 100px; margin: 0 auto; }
  .lp-quote         { text-align: left; }

  /* Mentor */
  .lp-mentor-inner  { grid-template-columns: 1fr; }
  .lp-mentor-img    { max-height: 300px; aspect-ratio: 3/2; }
  .lp-mentor-img img { object-position: center 20%; }

  /* Currículo */
  .lp-curr-list     { grid-template-columns: 1fr; }

  /* Benefícios */
  .lp-benefits-grid { grid-template-columns: repeat(2, 1fr); }

  /* Para quem é */
  .lp-forwhom-grid  { grid-template-columns: 1fr; }

  /* Vídeos */
  .lp-videos-grid   { grid-template-columns: 1fr; }

  /* WhatsApp */
  .lp-wa-grid       { columns: 2; }

  /* Preço */
  .lp-pricing-single { max-width: 100%; }
  .lp-roi-grid      { grid-template-columns: 1fr; }
  .lp-roi-item      { border-right: none; border-bottom: 1px solid var(--border); }
  .lp-roi-item:last-child { border-bottom: none; }

  /* CTA final */
  .lp-cta-final     { padding: 72px 0; }
  .lp-cta-final h2  { font-size: clamp(1.6rem, 5vw, 2.4rem); }

  /* FAQ */
  .lp-faq-q         { font-size: .93rem; padding: 18px 20px; }
  .lp-faq-a p       { padding: 0 20px 18px; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — 480px
══════════════════════════════════════════ */
@media (max-width: 480px) {
  .lp-section       { padding: 48px 0; }
  .lp-container     { padding: 0 16px; }

  /* Hero */
  .lp-hero          { padding: 44px 0 48px; }
  .lp-hero-content h1 { font-size: clamp(1.75rem, 7.5vw, 2.2rem); }
  .lp-hero-sub      { font-size: .95rem; }
  .lp-hero-disclaimer { font-size: .75rem; }

  /* Trust bar */
  .lp-trust-inner   { flex-direction: row; justify-content: center; flex-wrap: wrap; gap: 4px; }
  .lp-trust-item    { padding: 8px 14px; min-width: 44%; }
  .lp-trust-item strong { font-size: 1.1rem; }
  .lp-trust-item span   { font-size: .65rem; }

  /* Dor */
  .lp-pain-card     { flex-direction: column; gap: 12px; }

  /* Mercado */
  .lp-market-callout { font-size: .92rem; padding: 14px 18px; }
  .lp-market-inner h2 { font-size: clamp(1.5rem, 6.5vw, 2rem); }

  /* Método */
  .lp-tan-block     { padding: 20px; }

  /* Benefícios */
  .lp-benefits-grid { grid-template-columns: 1fr; }

  /* WhatsApp */
  .lp-wa-grid       { columns: 1; }

  /* Preço */
  .lp-price-install strong { font-size: 2.2rem; }
  .lp-btn-lg        { font-size: .97rem; padding: 14px 28px; }

  /* CTA final */
  .lp-cta-final     { padding: 56px 0; }

  /* WhatsApp float */
  .lp-whatsapp-float    { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .lp-whatsapp-float svg { width: 26px; height: 26px; }

  /* Section header */
  .lp-section-header { margin-bottom: 40px; }
  .lp-section-header h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
}

/* ══════════════════════════════════════════
   REDUCED MOTION
══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .lp-dot-live { animation: none; opacity: 1; }
}
