/* ═══════════════════════════════════════════════════════════
   PÁGINA DE VENDAS — Calculadora de Juros LVB
   ═══════════════════════════════════════════════════════════ */

/* ─── RESET BÁSICO ────────────────────────────────────────── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #2a2a2a;
  background: #fdfaf5;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* ─── CONTAINER ────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-estreito {
  max-width: 760px;
}

/* ═══════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253, 250, 245, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(91, 26, 26, 0.08);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #5b1a1a 0%, #8b1f1f 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-text strong {
  font-size: 15px;
  color: #5b1a1a;
  font-weight: 600;
}

.nav-logo-text em {
  font-size: 12px;
  color: #888;
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  color: #555;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #8b1f1f;
}

.nav-cta {
  background: #5b1a1a;
  color: white !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: #8b1f1f;
}

@media (max-width: 820px) {
  .nav-links {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   BADGES E BOTÕES
   ═══════════════════════════════════════════════════════════ */
.badge-ouro {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #fef9e7 0%, #fff5d4 100%);
  color: #b8860b;
  border: 1px solid #d4a017;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-family: inherit;
}

.btn-primario {
  background: #5b1a1a;
  color: white;
}

.btn-primario:hover {
  background: #8b1f1f;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(91, 26, 26, 0.25);
}

.btn-secundario {
  background: transparent;
  color: #5b1a1a;
  border: 1px solid #d4a017;
}

.btn-secundario:hover {
  background: #fef9e7;
}

.btn-ouro {
  background: linear-gradient(135deg, #d4a017 0%, #b8860b 100%);
  color: white;
}

.btn-ouro:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(212, 160, 23, 0.35);
}

.btn-grande {
  padding: 18px 36px;
  font-size: 17px;
}

.btn-bloco {
  display: flex;
  width: 100%;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 80px 0 100px 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(212, 160, 23, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(91, 26, 26, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

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

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.hero-titulo {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  color: #5b1a1a;
  margin-bottom: 24px;
  font-weight: 700;
}

.hero-titulo em {
  font-style: italic;
  color: #b8860b;
}

.hero-titulo-strong {
  display: block;
  font-weight: 900;
}

.hero-subtitulo {
  font-size: 18px;
  color: #555;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-acoes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #777;
}

.trust-dot {
  width: 6px;
  height: 6px;
  background: #1a7a4a;
  border-radius: 50%;
}

/* ─── HERO CARD (Exemplo do resultado) ────────────────────── */
.hero-card {
  background: white;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.04);
}

.hero-card-tag {
  display: inline-block;
  background: #fef9e7;
  color: #b8860b;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.hero-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.hero-card-row span {
  color: #888;
  font-size: 14px;
}

.hero-card-row strong {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
}

.taxa-perigo {
  color: #c62828;
}

.taxa-ok {
  color: #1a7a4a;
}

.hero-card-vs {
  text-align: center;
  font-size: 11px;
  color: #ccc;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 0;
}

.hero-card-hr {
  border: none;
  border-top: 1px solid #f0e6d8;
  margin: 16px 0;
}

.hero-card-veredito {
  display: flex;
  gap: 12px;
  background: #fdecea;
  padding: 14px;
  border-radius: 10px;
  margin-bottom: 16px;
}

.veredito-icone {
  width: 32px;
  height: 32px;
  background: #c62828;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.hero-card-veredito h4 {
  color: #5b1a1a;
  font-size: 14px;
  margin-bottom: 4px;
}

.hero-card-veredito p {
  font-size: 12px;
  color: #666;
}

.hero-card-valor {
  text-align: center;
  padding-top: 12px;
  border-top: 1px dashed #f0e6d8;
}

.hero-card-valor span {
  font-size: 11px;
  color: #999;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════
   SEÇÕES GERAIS
   ═══════════════════════════════════════════════════════════ */
.secao {
  padding: 90px 0;
}

.secao-creme {
  background: linear-gradient(180deg, #fdfaf5 0%, #f8f0e3 100%);
}

.secao-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px auto;
}

.kicker {
  display: inline-block;
  font-size: 12px;
  color: #b8860b;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.kicker-claro {
  color: #fef9e7;
}

.secao-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  color: #5b1a1a;
  margin-bottom: 16px;
  font-weight: 700;
}

.secao-header .lead {
  font-size: 17px;
  color: #666;
}

/* ═══════════════════════════════════════════════════════════
   PASSOS (Como funciona)
   ═══════════════════════════════════════════════════════════ */
.passos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.passo {
  background: white;
  border: 1px solid #f0e6d8;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.2s;
}

.passo:hover {
  transform: translateY(-4px);
  border-color: #d4a017;
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}

.passo-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: #d4a017;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}

.passo h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #5b1a1a;
  margin-bottom: 12px;
}

.passo p {
  color: #666;
  font-size: 14px;
}

/* ═══════════════════════════════════════════════════════════
   PLANOS (cards de preço)
   ═══════════════════════════════════════════════════════════ */
.planos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

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

.plano-card {
  background: white;
  border: 2px solid #f0e6d8;
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.plano-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.plano-card-destaque {
  border-color: #d4a017;
  background: linear-gradient(180deg, #fef9e7 0%, #fff 60%);
}

.plano-card-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #d4a017;
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
}

.plano-card-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #5b1a1a;
  margin: 0 0 4px 0;
}

.plano-card-sub {
  color: #888;
  font-size: 14px;
  margin: 0 0 24px 0;
}

.plano-card-preco {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0e6d8;
}

.plano-preco-cifrao {
  font-size: 22px;
  color: #5b1a1a;
  font-weight: 600;
}

.plano-preco-valor {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: #5b1a1a;
  line-height: 1;
}

.plano-preco-unidade {
  font-size: 14px;
  color: #888;
}

.plano-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  flex: 1;
}

.plano-card-features li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: #444;
  font-size: 15px;
}

.plano-card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 10px;
  color: #1a7a4a;
  font-weight: 700;
  font-size: 16px;
}

.planos-rodape {
  text-align: center;
  color: #999;
  font-size: 13px;
  margin-top: 32px;
}

/* ═══════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: white;
  border: 1px solid #f0e6d8;
  border-radius: 12px;
  padding: 20px 24px;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: #d4a017;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: #5b1a1a;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: #d4a017;
  font-weight: 400;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  margin-top: 12px;
  color: #666;
  font-size: 15px;
}

/* ═══════════════════════════════════════════════════════════
   CTA FINAL
   ═══════════════════════════════════════════════════════════ */
.cta-final {
  padding: 90px 0;
  background: linear-gradient(135deg, #5b1a1a 0%, #8b1f1f 100%);
}

.cta-final-card {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  color: white;
}

.cta-final-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 700;
}

.cta-final-card h2 em {
  color: #f5d57a;
  font-style: italic;
}

.cta-final-card p {
  font-size: 17px;
  opacity: 0.9;
  margin-bottom: 32px;
}

.cta-final-card small {
  display: block;
  margin-top: 16px;
  opacity: 0.7;
  font-size: 13px;
}

/* ═══════════════════════════════════════════════════════════
   RODAPÉ
   ═══════════════════════════════════════════════════════════ */
.rodape {
  background: #1a0e0e;
  color: #b8a89a;
  padding: 60px 0 30px 0;
}

.rodape-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

@media (max-width: 820px) {
  .rodape-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.nav-logo-rodape .nav-logo-text strong {
  color: #fef9e7;
}

.nav-logo-rodape .nav-logo-text em {
  color: #b8a89a;
}

.rodape-sobre {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
  max-width: 380px;
}

.rodape h4 {
  color: #fef9e7;
  font-size: 14px;
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.rodape ul {
  list-style: none;
}

.rodape ul li {
  padding: 6px 0;
  font-size: 14px;
}

.rodape ul li a:hover {
  color: #fef9e7;
}

.rodape-base {
  border-top: 1px solid #2a1a1a;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

.rodape-base a:hover {
  color: #fef9e7;
}

/* ═══════════════════════════════════════════════════════════
   AVISO SOBRE E-MAIL (importante pro fluxo de compra)
   ═══════════════════════════════════════════════════════════ */
.aviso-email {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: linear-gradient(135deg, #fef9e7 0%, #fff5d4 100%);
  border: 1px solid #d4a017;
  border-radius: 12px;
  padding: 16px 20px;
  max-width: 800px;
  margin: 0 auto 32px auto;
  font-size: 14px;
  color: #5b1a1a;
}

.aviso-email-icone {
  font-size: 22px;
  flex-shrink: 0;
}

.aviso-email strong {
  color: #5b1a1a;
}

/* ═══════════════════════════════════════════════════════════
   LINK DISCRETO NO NAV ("Já comprei? Acessar")
   ═══════════════════════════════════════════════════════════ */
.nav-link-discreto {
  font-size: 13px !important;
  color: #999 !important;
  font-style: italic;
  border-left: 1px solid #e0d4c4;
  padding-left: 16px;
  margin-left: 8px;
}

.nav-link-discreto:hover {
  color: #8b1f1f !important;
}

@media (max-width: 820px) {
  .nav-link-discreto {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   LOGO LVB (substitui o "CJ" antigo)
   ═══════════════════════════════════════════════════════════ */

/* Logo no nav (topo) */
.nav-logo-img {
  height: 44px;
  width: auto;
  border-radius: 6px;
  display: block;
}

/* Logo no rodapé (fundo escuro) */
.nav-logo-img-rodape {
  height: 48px;
  width: auto;
  border-radius: 6px;
  display: block;
}

/* Esconde os marks antigos "CJ" caso ainda existam em algum lugar */
.nav-logo-mark {
  display: none;
}

/* ═══════════════════════════════════════════════════════════
   PÁGINAS LEGAIS (Política / Termos)
   ═══════════════════════════════════════════════════════════ */
.legal-page {
  padding: 60px 0 80px 0;
  min-height: calc(100vh - 200px);
}

.legal-header {
  text-align: center;
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid #f0e6d8;
}

.legal-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 44px);
  color: #5b1a1a;
  margin: 12px 0 16px 0;
  font-weight: 700;
}

.legal-meta {
  font-size: 14px;
  color: #999;
  font-style: italic;
}

.legal-content {
  background: white;
  border-radius: 16px;
  padding: 48px 56px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.04);
  border: 1px solid #f0e6d8;
}

@media (max-width: 720px) {
  .legal-content {
    padding: 32px 24px;
  }
}

.legal-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #5b1a1a;
  margin: 36px 0 14px 0;
  font-weight: 600;
  padding-top: 8px;
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
}

.legal-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: #5b1a1a;
  margin: 24px 0 10px 0;
  font-weight: 600;
}

.legal-content p {
  color: #444;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-content ul {
  margin: 0 0 16px 24px;
  color: #444;
  font-size: 15px;
  line-height: 1.75;
}

.legal-content ul li {
  margin-bottom: 8px;
  padding-left: 4px;
}

.legal-content a {
  color: #b8860b;
  text-decoration: underline;
  font-weight: 500;
}

.legal-content a:hover {
  color: #8b6209;
}

.legal-content strong {
  color: #5b1a1a;
  font-weight: 600;
}

.legal-voltar {
  display: inline-block;
  margin-top: 40px;
  color: #888;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.legal-voltar:hover {
  color: #5b1a1a;
}

/* Footer reduzido pras páginas legais */
.rodape-mini {
  padding: 24px 0;
}

.rodape-mini .rodape-base {
  border-top: none;
  padding-top: 0;
  color: #b8a89a;
}

.rodape-mini .rodape-base a {
  color: #b8a89a;
}

.rodape-mini .rodape-base a:hover {
  color: #fef9e7;
}