/* =============================================
   LANDING PAGE — Os 12 Indicadores
   Identidade: David Gama (dark + azul)
   ============================================= */

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

/* ── Cursor ────────────────────────────────── */
.cursor-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
  mix-blend-mode: screen;
}

body:has(a:hover) .cursor-dot,
body:has(button:hover) .cursor-dot {
  width: 20px;
  height: 20px;
  background: rgba(77,122,255,0.6);
}

:root {
  --bg:         #0B0B0D;
  --bg-mid:     #111115;
  --bg-card:    #141418;
  --bg-alt:     #0E0E12;
  --border:     rgba(255,255,255,0.07);
  --blue:       #1C2A44;
  --blue-l:     #2A3F63;
  --accent:     #4D7AFF;
  --accent-dim: rgba(77,122,255,0.15);
  --text:       #EDEDED;
  --muted:      #8A8A99;
  --dim:        #5A5A6A;
  --sans:       'Inter', sans-serif;
  --serif:      'Lora', serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Cursor apenas em dispositivos com hover real */
@media (hover: hover) {
  body { cursor: none; }
}

/* Em touch, esconde o dot */
@media (hover: none) {
  .cursor-dot { display: none !important; }
}

a { text-decoration: none; color: inherit; }
strong { font-weight: 600; color: #fff; }
s { opacity: 0.5; }

/* ── Container ─────────────────────────────── */
.lp-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Labels e títulos ──────────────────────── */
.lp-section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
}

.lp-section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.lp-section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.lp-accent { color: var(--accent); }

/* ── Seções ────────────────────────────────── */
.lp-section { padding: 100px 0; }
.lp-section-alt { background: var(--bg-alt); }

/* ── Botões ────────────────────────────────── */
.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.lp-btn-primary:hover {
  background: #3a66ee;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(77,122,255,0.35);
}

.lp-btn-full { width: 100%; text-align: center; }

.lp-btn-large {
  font-size: 1.05rem;
  padding: 1.1rem 2.8rem;
}

/* ═══════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════ */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(11,11,13,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.lp-nav-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.lp-logo-img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity 0.2s;
}

.lp-logo-img:hover { opacity: 0.85; }

.lp-nav-cta {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  border: 1px solid rgba(77,122,255,0.3);
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
}

.lp-nav-cta:hover {
  color: #fff;
  background: var(--accent-dim);
  border-color: var(--accent);
}

/* ═══════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.lp-hero {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 75% 50%, rgba(28,42,68,0.7), transparent),
    radial-gradient(ellipse 35% 40% at 20% 80%, rgba(77,122,255,0.04), transparent);
  pointer-events: none;
}

.lp-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(77,122,255,0.25);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-weight: 500;
  margin-bottom: 1.8rem;
}

.lp-hero-title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.lp-hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 480px;
}

.lp-hero-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2.5rem;
}

.lp-hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}

.lp-bullet-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--accent-dim);
  border: 1px solid rgba(77,122,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--accent);
  font-weight: 700;
  margin-top: 2px;
}

.lp-hero-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: flex-start;
}

.lp-hero-cta-note {
  font-size: 0.78rem;
  color: var(--dim);
}

/* ── Product card (hero) ──────────────────── */
.lp-product-card {
  background: var(--bg-card);
  border: 1px solid rgba(77,122,255,0.2);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(77,122,255,0.1);
  text-align: center;
}

.lp-product-card-glow {
  position: absolute;
  top: -40px; left: -40px; right: -40px;
  height: 150px;
  background: radial-gradient(ellipse at 50% 0%, rgba(77,122,255,0.15), transparent 70%);
  pointer-events: none;
}

.lp-product-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.lp-product-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 1.5rem;
}

.lp-product-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--border);
}

.lp-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.lp-meta-num {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  font-family: var(--serif);
}

.lp-meta-desc {
  font-size: 0.72rem;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lp-meta-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

.lp-product-price-wrap {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-price-de {
  display: block;
  font-size: 0.8rem;
  color: var(--dim);
  text-decoration: line-through;
  margin-bottom: 0.3rem;
}

.lp-price-por {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
}

.lp-price-label {
  font-size: 0.82rem;
  color: var(--muted);
}

.lp-price-value {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}

/* ═══════════════════════════════════════════
   DORES
════════════════════════════════════════════ */
.lp-dores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.lp-dor-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: border-color 0.25s, transform 0.25s;
}

.lp-dor-card:hover {
  border-color: rgba(77,122,255,0.2);
  transform: translateY(-3px);
}

.lp-dor-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.lp-dor-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  font-style: italic;
}

.lp-dores-close {
  background: var(--bg-card);
  border: 1px solid rgba(77,122,255,0.15);
  border-left: 3px solid var(--accent);
  border-radius: 14px;
  padding: 2rem 2.5rem;
  text-align: center;
}

.lp-dores-close p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════
   QUEBRA DE CRENÇA
════════════════════════════════════════════ */
.lp-crenca-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.lp-crenca-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.lp-crenca-text p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.lp-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lp-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.lp-stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
}

.lp-stat-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.lp-stat-source {
  font-size: 0.72rem;
  color: var(--dim);
  letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════════
   PRODUTO FEATURES
════════════════════════════════════════════ */
.lp-produto-wrap { text-align: left; }

.lp-produto-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.lp-produto-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.8rem;
  transition: border-color 0.25s, transform 0.25s;
}

.lp-produto-feature:hover {
  border-color: rgba(77,122,255,0.2);
  transform: translateY(-2px);
}

.lp-feat-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  color: var(--accent);
  margin-top: 2px;
}

.lp-feat-icon svg { width: 100%; height: 100%; }

.lp-produto-feature strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.lp-produto-feature p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   INDICADORES
════════════════════════════════════════════ */
.lp-indicadores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.lp-ind-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.6rem;
  background: var(--bg-card);
  transition: background 0.25s;
}

.lp-ind-card:hover { background: rgba(77,122,255,0.05); }

.lp-ind-card-destaque {
  background: rgba(77,122,255,0.06);
  border-left: 2px solid var(--accent);
}

.lp-ind-num {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
  opacity: 0.6;
  line-height: 1;
  min-width: 36px;
  padding-top: 2px;
}

.lp-ind-content strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: #fff;
}

.lp-ind-content p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   TRANSFORMAÇÃO
════════════════════════════════════════════ */
.lp-transform-grid {
  display: flex;
  gap: 2rem;
  align-items: stretch;
}

.lp-transform-col {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
}

.lp-transform-header { margin-bottom: 1.8rem; }

.lp-transform-tag {
  display: inline-flex;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 100px;
}

.lp-transform-tag.antes {
  background: rgba(255,60,60,0.1);
  color: #ff6b6b;
  border: 1px solid rgba(255,60,60,0.2);
}

.lp-transform-tag.depois {
  background: rgba(77,122,255,0.12);
  color: var(--accent);
  border: 1px solid rgba(77,122,255,0.25);
}

.lp-transform-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lp-transform-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.lp-transform-antes .lp-transform-list li span {
  color: #ff6b6b;
  font-weight: 700;
  font-size: 1rem;
  margin-top: -1px;
}

.lp-transform-depois .lp-transform-list li span {
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  margin-top: -1px;
}

.lp-transform-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-transform-arrow {
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent);
}

/* ═══════════════════════════════════════════
   AUTORIDADE
════════════════════════════════════════════ */
.lp-autoridade-wrap {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: center;
}

.lp-autoridade-photo {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 420px;
}

.lp-autoridade-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  border: 1px solid rgba(77,122,255,0.45);
  box-shadow:
    0 0 0 1px rgba(77,122,255,0.08),
    0 18px 40px rgba(0,0,0,0.28),
    0 0 24px rgba(77,122,255,0.08);
}

.lp-autoridade-photo-frame {
  position: relative;
  width: 100%;
  max-width: 340px;
}

.lp-autoridade-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse 70% 80% at 50% 60%, rgba(28,42,68,0.9) 0%, rgba(42,63,99,0.5) 40%, transparent 75%);
  filter: blur(28px);
  z-index: 0;
  border-radius: 50%;
}

.lp-autoridade-img {
  position: relative;
  z-index: 1;
  width: 100%;
  object-fit: contain;
  object-position: center bottom;
  mask-image: linear-gradient(to bottom, black 65%, transparent 95%);
  -webkit-mask-image: linear-gradient(to bottom, black 65%, transparent 95%);
  filter: drop-shadow(0 8px 28px rgba(0,0,0,0.6));
}

.lp-autoridade-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1.5rem;
}

.lp-autoridade-text p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.lp-autoridade-social {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.lp-social-btn {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1.3rem;
  background: rgba(77,122,255,0.08);
  border: 1px solid rgba(77,122,255,0.25);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  cursor: pointer;
}

.lp-social-btn:hover {
  background: rgba(77,122,255,0.18);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.lp-social-btn svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.lp-social-btn span:first-of-type {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
}

.lp-social-handle {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 400;
}

/* ═══════════════════════════════════════════
   PROVA RACIONAL
════════════════════════════════════════════ */
.lp-prova-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.lp-prova-quote { min-width: 0; }

.lp-prova-cases {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.lp-prova-quote blockquote {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  padding-left: 1.5rem;
  border-left: 2px solid var(--accent);
  margin-bottom: 1rem;
}

.lp-prova-quote cite {
  display: block;
  font-size: 0.8rem;
  color: var(--dim);
  font-style: normal;
  padding-left: 1.5rem;
}

.lp-case {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.lp-case:hover {
  border-color: rgba(77,122,255,0.2);
  transform: translateY(-2px);
}

.lp-case-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.lp-case strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #fff;
  line-height: 1.45;
}

.lp-case p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   RACIONAL
════════════════════════════════════════════ */
.racional {
  position: relative;
  overflow: hidden;
}

.racional::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 10% 50%, rgba(28,42,68,0.35), transparent);
  pointer-events: none;
}

.racional-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.racional-left {
  position: sticky;
  top: 100px;
}

.racional-title { margin-bottom: 2.5rem; }

.racional-quote {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
  padding-left: 1.4rem;
  border-left: 2px solid var(--accent);
  margin-bottom: 1.5rem;
}

.racional-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-left: 1.4rem;
}

.racional-author-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
}

.racional-author-role {
  font-size: 0.78rem;
  color: var(--dim);
  letter-spacing: 0.04em;
}

.racional-cases {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.racional-card {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.4rem 1.5rem;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.racional-card:hover {
  border-color: rgba(77,122,255,0.25);
  background: rgba(77,122,255,0.04);
  transform: translateX(4px);
}

.racional-card-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(77,122,255,0.1);
  border: 1px solid rgba(77,122,255,0.2);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-top: 1px;
}

.racional-card-icon svg {
  width: 16px;
  height: 16px;
}

.racional-card-body { flex: 1; }

.racional-card-body strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.racional-card-body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* ═══════════════════════════════════════════
   OFERTA
════════════════════════════════════════════ */
.lp-oferta-section {
  position: relative;
  overflow: hidden;
}

.lp-oferta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(28,42,68,0.5), transparent);
  pointer-events: none;
}

.lp-oferta-wrap {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.lp-oferta-itens {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 620px;
}

.lp-oferta-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.lp-oferta-check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--accent-dim);
  border: 1px solid rgba(77,122,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 700;
  margin-top: 2px;
}

.lp-oferta-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.lp-oferta-item p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

.lp-oferta-card {
  background: var(--bg-card);
  border: 1px solid rgba(77,122,255,0.25);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(77,122,255,0.08);
}

.lp-oferta-card-glow {
  position: absolute;
  top: -30px; left: -30px; right: -30px;
  height: 100px;
  background: radial-gradient(ellipse at 50% 0%, rgba(77,122,255,0.12), transparent 70%);
  pointer-events: none;
}

.lp-oferta-card-top {
  margin-bottom: 1.8rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--border);
}

.lp-oferta-nome {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.lp-oferta-price-block { margin-bottom: 0.3rem; }

.lp-oferta-de {
  display: block;
  font-size: 0.82rem;
  color: var(--dim);
  margin-bottom: 0.4rem;
}

.lp-oferta-por {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}

.lp-oferta-por-label {
  font-size: 0.82rem;
  color: var(--muted);
}

.lp-oferta-valor {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.lp-oferta-parcela {
  display: block;
  font-size: 0.78rem;
  color: var(--dim);
  margin-bottom: 1.5rem;
}

.lp-oferta-garantia-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--dim);
  margin-top: 0.8rem;
  margin-bottom: 1.8rem;
}

.lp-oferta-bonus-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 0.8rem;
}

.lp-oferta-bonus-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}

.lp-oferta-bonus-list li {
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

/* ═══════════════════════════════════════════
   GARANTIA
════════════════════════════════════════════ */
.lp-garantia-wrap {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: var(--bg-card);
  border: 1px solid rgba(77,122,255,0.15);
  border-radius: 20px;
  padding: 3rem 3.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.lp-garantia-icon {
  width: 72px;
  height: 72px;
  min-width: 72px;
  color: var(--accent);
  opacity: 0.8;
}

.lp-garantia-icon svg { width: 100%; height: 100%; }

.lp-garantia-text h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.8rem;
}

.lp-garantia-text p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

/* ═══════════════════════════════════════════
   CTA FINAL
════════════════════════════════════════════ */
.lp-cta-final-section {
  background: linear-gradient(135deg, var(--bg-mid), var(--blue) 80%);
  position: relative;
  overflow: hidden;
}

.lp-cta-final-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 60% 50%, rgba(77,122,255,0.1), transparent);
  pointer-events: none;
}

.lp-cta-final-inner {
  max-width: 680px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.lp-cta-final-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

.lp-cta-final-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.lp-btn-hero {
  font-size: 1.1rem;
  padding: 1.2rem 3rem;
  box-shadow: 0 8px 40px rgba(77,122,255,0.35);
}

.lp-cta-final-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

.lp-cta-final-meta span {
  font-size: 0.8rem;
  color: var(--dim);
}

/* ═══════════════════════════════════════════
   DEPOIMENTOS
════════════════════════════════════════════ */
.lp-depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2.5rem;
}

.lp-depoimento-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.8rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lp-depoimento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(77,122,255,0.22);
  box-shadow: 0 18px 42px rgba(0,0,0,0.24);
}

.lp-depoimento-text {
  font-size: 0.96rem;
  line-height: 1.85;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.6rem;
}

.lp-depoimento-person {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.lp-avatar-wrap {
  width: 56px;
  height: 56px;
  min-width: 56px;
  max-width: 56px;
  flex: 0 0 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(77,122,255,0.25);
  box-shadow: 0 0 0 4px rgba(77,122,255,0.06);
}

.lp-depoimento-avatar,
.lp-avatar-wrap img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  object-position: center;
  display: block;
}

.lp-depoimento-info {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  min-width: 0;
}

.lp-depoimento-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1.2;
}

.lp-depoimento-role {
  font-size: 0.82rem;
  color: #fff;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.lp-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.lp-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.lp-footer-logo {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  letter-spacing: 0.08em;
}

.lp-footer-copy {
  font-size: 0.75rem;
  color: var(--dim);
}

/* ═══════════════════════════════════════════
   RESPONSIVO
════════════════════════════════════════════ */
@media (max-width: 980px) {
  .lp-prova-grid,
  .lp-autoridade-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .lp-depoimentos-grid { grid-template-columns: 1fr; }
  .lp-autoridade-photo { max-width: 380px; margin: 0 auto; }
}

@media (max-width: 960px) {
  .lp-hero-inner,
  .lp-crenca-wrap,
  .lp-oferta-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .lp-autoridade-photo-frame { max-width: 260px; margin: 0 auto; }
  .lp-indicadores-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-dores-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-transform-grid { flex-direction: column; }
  .lp-transform-divider { transform: rotate(90deg); }
}

@media (max-width: 900px) {
  .racional-grid { grid-template-columns: 1fr; gap: 3rem; }
  .racional-left { position: static; }
}

@media (max-width: 640px) {
  .lp-section { padding: 70px 0; }
  .lp-hero { padding: 100px 0 60px; min-height: auto; }

  .lp-dores-grid,
  .lp-indicadores-grid,
  .lp-produto-cards { grid-template-columns: 1fr; }

  .lp-garantia-wrap {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .lp-nav-cta { display: none; }

  .lp-cta-final-meta {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .racional-card { padding: 1.1rem 1.2rem; }

  .lp-depoimento-card { padding: 1.4rem; border-radius: 16px; }
  .lp-depoimento-text { font-size: 0.92rem; margin-bottom: 1.3rem; }

  .lp-avatar-wrap {
    width: 52px;
    height: 52px;
    min-width: 52px;
    max-width: 52px;
    flex: 0 0 52px;
  }

  .lp-depoimento-name { font-size: 0.88rem; }
  .lp-depoimento-role { font-size: 0.78rem; }

  .lp-autoridade-photo img { border-radius: 20px; }
}