/* ═══════════════════════════════════════════
   TABELA PRO — LP Alta Conversão
   ═══════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #1a1a2e;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }

:root {
  --green: #16a34a;
  --green-dark: #15803d;
  --green-bg: #f0fdf4;
  --green-border: #bbf7d0;
  --text: #111827;
  --text-2: #4b5563;
  --text-3: #9ca3af;
  --bg: #ffffff;
  --bg-soft: #f9fafb;
  --border: #e5e7eb;
  --yellow-bg: #fefce8;
  --yellow-border: #fef08a;
  --yellow-text: #854d0e;
  --radius: 10px;
  --max-w: 680px;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 920px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

/* ═══════════ HERO ═══════════ */
.hero {
  padding: 56px 0 48px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(28px, 6vw, 44px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.12;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.hero-city {
  display: inline;
  background: linear-gradient(to top, var(--yellow-border) 40%, transparent 40%);
  padding: 0 2px;
}

.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 500;
  color: var(--text-2);
  margin-top: 14px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-subtitle strong {
  color: var(--text);
  font-weight: 700;
}

/* Video Player (Stories-style) */
.vsl-player {
  position: relative;
  margin: 28px auto 32px;
  max-width: 300px;
  aspect-ratio: 9 / 16;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}
.vsl-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Progress bar no topo */
.stories-progress {
  position: absolute;
  top: 8px;
  left: 10px;
  right: 10px;
  height: 3px;
  background: rgba(255,255,255,0.25);
  border-radius: 3px;
  z-index: 5;
  overflow: hidden;
}
.stories-progress-fill {
  height: 100%;
  width: 0%;
  background: #fff;
  border-radius: 3px;
  transition: width 0.3s linear;
}

/* Header do stories */
.stories-header {
  position: absolute;
  top: 18px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 5;
}
.stories-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  font-weight: 800;
  flex-shrink: 0;
  border: 2px solid #fff;
}
.stories-name {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.stories-time {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Play button central */
.vsl-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  transition: opacity 0.2s;
}
.vsl-player.playing .vsl-play-btn {
  opacity: 0;
  pointer-events: none;
}

/* Gradient overlay quando pausado */
.stories-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 25%, transparent 75%, rgba(0,0,0,0.3) 100%);
  z-index: 3;
  pointer-events: none;
  transition: opacity 0.2s;
}
.vsl-player.playing .stories-overlay {
  opacity: 0;
}

/* CTA Button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 10px;
  border-bottom: 6px solid #14532d; /* Efeito 3D */
  transition: all 0.15s ease;
  width: auto;
  position: relative;
  top: 0;
}
.btn-cta:hover {
  background: var(--green-dark);
  border-bottom: 6px solid #064e3b;
}
.btn-cta:active {
  top: 4px;
  border-bottom: 2px solid #064e3b;
}
.btn-cta-full { width: 100%; max-width: 400px; }

.compra-segura-img {
  max-width: 260px;
  width: 100%;
  margin: 16px auto 0;
  display: block;
  /* Deixando a imagem mais escura / integrada */
  filter: grayscale(1) invert(0) brightness(0.4) contrast(1.2);
  opacity: 0.7;
}

/* ═══════════ TRUST BAR ═══════════ */
.trust-bar {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}
.trust-item svg { color: var(--green); flex-shrink: 0; }

/* ═══════════ SECTIONS ═══════════ */
section { padding: 56px 0; }
.section-divider { height: 1px; background: var(--border); }

.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.section-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 500px;
}

/* ═══════════ PROBLEMS ═══════════ */
.problems {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.problem-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.problem-row .icon-circle {
  margin-top: 2px;
}
.problem-row h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.problem-row p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

/* ═══════════ FEATURES (Vertical Cards) ═══════════ */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 32px;
}
.feat-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 8px;
}
.feat-browser-mockup {
  background: #f1f5f9;
  padding: 12px 12px 0;
  border-bottom: 1px solid var(--border);
}
.feat-screenshot {
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  display: block;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.feat-content {
  padding: 24px 20px;
}
.feat-content h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.2;
}
.feat-content p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.5;
}
.featured-card {
  border: 2px solid var(--green);
  background: #fff;
}
.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 6px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(22, 163, 74, 0.3);
}

/* ═══════════ BONUS ═══════════ */
.bonus-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bonus-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
  background: var(--yellow-bg);
  border: 1px solid var(--yellow-border);
  border-radius: var(--radius);
}
.bonus-item .emoji {
  font-size: 18px;
  flex-shrink: 0;
}
.bonus-item h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.bonus-item p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

/* ═══════════ PRICING CTA ═══════════ */
.pricing-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.pricing-card {
  background: var(--bg);
  border: 2px solid var(--green);
  border-radius: 14px;
  padding: 40px 28px;
  max-width: 460px;
  margin: 0 auto;
}
.pricing-includes {
  text-align: left;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}
.pricing-includes li svg { color: var(--green); flex-shrink: 0; }

.price-tag {
  margin: 24px 0 8px;
}
.price-tag .from {
  font-size: 14px;
  color: var(--text-3);
}
.price-tag .old {
  font-size: 16px;
  color: var(--text-3);
  text-decoration: line-through;
}
.price-tag .amount {
  font-size: 48px;
  font-weight: 900;
  color: var(--green);
  display: block;
  line-height: 1;
  margin: 4px 0;
}
.price-tag .desc {
  font-size: 13px;
  color: var(--text-3);
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-bg);
  border: 1px solid var(--green-border);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

/* ═══════════ FAQ ═══════════ */
.faq-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 16px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-q svg {
  transition: transform 0.2s;
  color: var(--text-3);
}
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 16px 14px;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ═══════════ FINAL CTA ═══════════ */
.final-cta {
  padding: 48px 0;
  text-align: center;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}

/* ═══════════ FOOTER ═══════════ */
.footer {
  padding: 28px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.footer p { font-size: 11px; color: var(--text-3); }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 768px) {
  section { padding: 44px 0; }
  .hero { padding: 44px 0 40px; }
  .trust-items { gap: 16px; }
  .trust-item { font-size: 12px; }
  .btn-cta { width: 100%; }
  .pricing-card { padding: 32px 20px; }
  .hero-micro { flex-direction: column; gap: 6px; }
}

@media (max-width: 480px) {
  .container, .container-wide { padding: 0 16px; }
  section { padding: 36px 0; }
  .hero { padding: 36px 0 32px; }
  .trust-items { flex-direction: column; gap: 8px; }
}
