/*=========================================
  LP INBOUND — Novos componentes
  (complementa style.css do design system)
=========================================*/

/* ---- Hero: eyebrow (tag acima do H1) ---- */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 14px;
  background: rgba(241, 143, 28, 0.12);
  border: 1px solid rgba(241, 143, 28, 0.38);
  border-radius: 50px;
  color: #ffd9a8;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

.hero-eyebrow-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 0 rgba(241, 143, 28, 0.6);
  animation: heroEyebrowPulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes heroEyebrowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(241, 143, 28, 0.55); }
  50% { box-shadow: 0 0 0 8px rgba(241, 143, 28, 0); }
}

@media (max-width: 768px) {
  .hero-eyebrow {
    font-size: 12px;
    padding: 6px 14px 6px 12px;
    white-space: normal;
    margin-bottom: 18px;
  }
}

/* ---- Pre-checkout: nota de segurança ---- */
.precheckout-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(10, 77, 64, 0.06);
  border-left: 3px solid var(--primary);
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13.5px;
  color: #555;
  line-height: 1.5;
  margin-top: 8px;
  margin-bottom: 0;
}

.precheckout-note-icon {
  font-size: 16px;
  line-height: 1.4;
  flex-shrink: 0;
}

/* ---- Hero: subtexto abaixo do CTA ---- */
.hero-cta-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 14px;
  max-width: 480px;
  line-height: 1.5;
}

/* =========================================
   SEÇÃO 2 — CARDS DE CONSEQUÊNCIA (DOR)
========================================= */
.consequence-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 50px 0 40px;
}

.consequence-card {
  background: var(--white);
  border-radius: 14px;
  padding: 30px 28px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--secondary);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.consequence-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.consequence-icon {
  font-size: 32px;
  line-height: 1;
}

.consequence-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.35;
}

.consequence-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* =========================================
   SEÇÃO 4 — AGÊNCIA A vs B (TABELA)
========================================= */
.ab-section {
  background: var(--white);
  padding: 100px 0;
}

.ab-table {
  max-width: 1100px;
  margin: 50px auto 40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  background: var(--white);
}

.ab-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ab-header-cell {
  padding: 26px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ab-a-header {
  background: linear-gradient(135deg, #5a5a5a 0%, #3d3d3d 100%);
  color: var(--white);
}

.ab-b-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
}

.ab-label {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.ab-sublabel {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ab-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #eee;
}

.ab-cell {
  padding: 24px 28px;
  font-size: 15.5px;
  line-height: 1.55;
  color: #444;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ab-cell p {
  margin: 0;
  flex: 1;
}

.ab-a-cell {
  background: #fafafa;
  border-right: 1px solid #eee;
}

.ab-b-cell {
  background: var(--white);
}

.ab-dot {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.ab-dot-x {
  background: #fce4e4;
  color: #c23a3a;
}

.ab-dot-check {
  background: rgba(10, 77, 64, 0.1);
  color: var(--primary);
}

.ab-row-highlight .ab-a-cell {
  background: #f2e8e8;
}

.ab-row-highlight .ab-b-cell {
  background: rgba(241, 143, 28, 0.08);
}

.ab-row-highlight strong {
  color: var(--primary);
  font-weight: 800;
}

.ab-row-highlight .ab-a-cell strong {
  color: #8a3a3a;
}

.ab-closing {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

.ab-closing p {
  font-size: 20px;
  line-height: 1.5;
  color: var(--primary);
}

.ab-closing strong {
  color: var(--secondary);
}

/* =========================================
   FEATURES — ícone com fundo verde
   (gradient + halo interno pra não ofuscar os emojis)
========================================= */
.features-section .feature-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -2px 4px rgba(0, 0, 0, 0.12),
    0 2px 6px rgba(10, 77, 64, 0.18);
  position: relative;
}

.features-section .feature-icon::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 6px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.features-section .feature-item:hover .feature-icon {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -2px 4px rgba(0, 0, 0, 0.14),
    0 4px 12px rgba(10, 77, 64, 0.28);
}

/* =========================================
   SEÇÃO 5 — COMPARATIVO LEAPER vs OUTRAS
========================================= */
.versus-section {
  background: var(--white);
  padding: 100px 0;
}
.vs-table {
  max-width: 1000px;
  margin: 50px auto 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}

.vs-header {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  background: #f8f8f8;
}

.vs-header-cell {
  padding: 22px 24px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
}

.vs-feature-head {
  text-align: left;
}

.vs-leaper-head {
  background: var(--primary);
  color: var(--white);
  font-size: 18px;
  letter-spacing: -0.01em;
}

.vs-other-head {
  background: #5a5a5a;
  color: rgba(255, 255, 255, 0.95);
}

.vs-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-top: 1px solid #eee;
}

.vs-cell {
  padding: 20px 24px;
  font-size: 15px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vs-feature-cell {
  font-weight: 600;
  color: var(--primary);
  background: #fafafa;
}

.vs-leaper-cell {
  background: rgba(10, 77, 64, 0.04);
  color: #333;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
}

.vs-other-cell {
  color: #666;
}

.vs-mark {
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1;
}

.vs-leaper-cell .vs-yes {
  filter: saturate(1.1);
}

/* =========================================
   SEÇÃO 8 — PRICING (3 cards + ancoragem)
========================================= */
.pricing-anchor {
  max-width: 780px;
  margin: 0 auto 60px;
  text-align: center;
  background: linear-gradient(135deg, #fff8ef 0%, #fff1dc 100%);
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid rgba(241, 143, 28, 0.25);
}

.pricing-anchor h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}

.pricing-anchor h3 em {
  font-style: italic;
  color: var(--secondary);
}

.pricing-anchor p {
  font-size: 15.5px;
  color: #555;
  line-height: 1.65;
  margin-bottom: 14px;
}

.pricing-anchor strong {
  color: var(--primary);
}

.pricing-anchor-punch {
  font-size: 19px !important;
  font-weight: 700;
  color: var(--primary) !important;
  margin-top: 6px !important;
  margin-bottom: 0 !important;
}

/* Override: 3 colunas em vez das 2 padrão */
.plans-grid.plans-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  gap: 24px;
}

/* Plan-price precisa acomodar "R$ [definir]" em tamanho menor */
.plan-price-value {
  display: inline-block;
}

.plan-card .plan-price-value {
  font-size: inherit;
}

/* =========================================
   SEÇÃO 6 — PROVA SOCIAL (ajustes)
========================================= */
.proof-section .stats-row {
  margin-bottom: 50px;
  max-width: 900px;
}

.proof-section .stats-row + .testimonials-grid {
  margin-top: 0;
}

/* Cards de stats mais equilibrados: valor menor e com identidade */
.proof-section .stat-card {
  background: var(--white);
  border: 1px solid #eee;
  border-top: 3px solid var(--secondary);
  padding: 32px 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.proof-section .stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.proof-section .stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 10px;
}

.proof-section .stat-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
  line-height: 1.4;
  text-transform: none;
}

@media (max-width: 768px) {
  .proof-section .stat-value {
    font-size: 24px;
  }

  .proof-section .stat-card {
    padding: 26px 20px;
  }
}

/* =========================================
   SEÇÃO 9 — GARANTIA
========================================= */
.guarantee-section {
  background: var(--light-gray);
  padding: 80px 0;
}

.guarantee-card {
  max-width: 980px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 44px 48px;
  box-shadow: var(--shadow-strong);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-top: 6px solid var(--secondary);
}

.guarantee-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(241, 143, 28, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.guarantee-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.guarantee-shield {
  width: 64px;
  height: 64px;
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-shield svg {
  width: 100%;
  height: 100%;
}

.guarantee-days-wrap {
  text-align: center;
  background: linear-gradient(135deg, var(--secondary) 0%, #f7a845 100%);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(241, 143, 28, 0.3);
  min-width: 120px;
}

.guarantee-days {
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.guarantee-days-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
  opacity: 0.95;
  margin-top: 4px;
}

.guarantee-content {
  position: relative;
  z-index: 1;
}

.guarantee-content h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 14px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.guarantee-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.65;
  margin-bottom: 14px;
}

.guarantee-content strong {
  color: var(--primary);
}

.guarantee-why {
  margin-top: 18px !important;
  margin-bottom: 0 !important;
  padding-top: 16px;
  border-top: 1px solid #eee;
  font-size: 14.5px !important;
  color: #666 !important;
}

.guarantee-why em {
  font-style: italic;
}

/* =========================================
   RESPONSIVIDADE
========================================= */
@media (max-width: 992px) {
  .consequence-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .plans-grid.plans-grid-3 {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .guarantee-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 32px;
    text-align: center;
  }

  .guarantee-content h2 {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .ab-section {
    padding: 60px 0;
  }

  .ab-table {
    border-radius: 12px;
  }

  .ab-header-cell {
    padding: 18px 16px;
  }

  .ab-label {
    font-size: 18px;
  }

  .ab-sublabel {
    font-size: 11px;
  }

  .ab-cell {
    padding: 18px 16px;
    font-size: 14px;
    gap: 10px;
  }

  .ab-dot {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .ab-closing p {
    font-size: 17px;
  }

  /* VS Table vira layout vertical no mobile */
  .vs-header {
    grid-template-columns: 1fr 1fr;
  }

  .vs-feature-head {
    display: none;
  }

  .vs-row {
    grid-template-columns: 1fr;
  }

  .vs-feature-cell {
    grid-column: 1 / -1;
    font-size: 14px;
    padding: 12px 20px;
    background: var(--primary);
    color: var(--white);
    border-radius: 0;
    justify-content: center;
    text-align: center;
  }

  .vs-leaper-cell,
  .vs-other-cell {
    border: none;
    border-top: 1px solid #eee;
    padding: 14px 20px;
    font-size: 14px;
  }

  .vs-leaper-cell {
    background: rgba(10, 77, 64, 0.05);
  }

  .vs-leaper-cell::before {
    content: "Leaper: ";
    font-weight: 700;
    color: var(--primary);
    margin-right: 4px;
  }

  .vs-other-cell::before {
    content: "Outras: ";
    font-weight: 700;
    color: #666;
    margin-right: 4px;
  }

  .pricing-anchor {
    padding: 28px 22px;
    margin-bottom: 44px;
  }

  .pricing-anchor h3 {
    font-size: 22px;
  }

  .pricing-anchor p {
    font-size: 14.5px;
  }

  .pricing-anchor-punch {
    font-size: 17px !important;
  }

  .guarantee-section {
    padding: 60px 0;
  }

  .guarantee-card {
    padding: 32px 24px;
    border-radius: 16px;
  }

  .guarantee-content h2 {
    font-size: 22px;
  }

  .guarantee-content p {
    font-size: 15px;
  }

  .guarantee-shield {
    width: 70px;
    height: 70px;
  }

  .guarantee-days {
    font-size: 40px;
  }

  .consequence-card {
    padding: 24px 22px;
  }

  .consequence-card h4 {
    font-size: 17px;
  }

  .consequence-card p {
    font-size: 14.5px;
  }

  .hero-cta-sub {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .ab-header {
    grid-template-columns: 1fr 1fr;
  }

  .ab-label {
    font-size: 16px;
  }

  .ab-cell {
    padding: 14px 12px;
    font-size: 13.5px;
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
  }

  .ab-dot {
    width: 22px;
    height: 22px;
  }
}
