/* ══════════════════════════════════════════════════════════════
   FAP01 v2 — overrides on top of styles.min.css
   ICP: empresário R$75-300k/mês em platô · dor: dependência do dono
   ══════════════════════════════════════════════════════════════ */

:root {
  --v2-text-strong: #ffffff;
  --v2-text-on-dark: rgba(255, 255, 255, 0.92);
  --v2-text-on-dark-muted: rgba(255, 255, 255, 0.72);
  --v2-text-on-dark-soft: rgba(255, 255, 255, 0.55);
  --v2-green: #22c55e;
}

/* ── Top ribbon: claim de autoridade no topo ── */
.v2-top-ribbon {
  background: linear-gradient(90deg, #c90030, var(--red), #c90030);
  color: #fff;
  text-align: center;
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 9px 16px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1.3;
  box-shadow: 0 2px 12px rgba(254, 6, 59, 0.25);
}
.v2-top-ribbon strong {
  color: #fff;
  font-weight: 800;
}
.v2-top-ribbon__icon {
  font-size: 0.95rem;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}
@media (max-width: 500px) {
  .v2-top-ribbon {
    font-size: 0.7rem;
    padding: 8px 12px;
    letter-spacing: 0.05em;
  }
}

/* Remove caps lock estridente, hierarquia tipográfica melhor */
.v2-section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem) !important;
  font-weight: 800;
  line-height: 1.18 !important;
  letter-spacing: -0.02em !important;
  text-transform: none !important;
  text-wrap: balance;
}

.v2-section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 8px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ── NAVBAR v2 ─────────────────────────────────── */
.v2-navbar {
  transition: background 0.25s ease, padding 0.25s ease, border-color 0.25s ease;
}
.v2-navbar.is-scrolled {
  padding: 10px 0;
  background: rgba(10, 10, 10, 0.99);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}
.v2-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.v2-nav-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.v2-nav-links a:hover {
  color: #fff;
}
.v2-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}
.v2-nav-links a:hover::after {
  transform: scaleX(1);
}

.v2-navbar-cta {
  font-size: 0.9rem !important;
  padding: 12px 24px !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 16px rgba(254, 6, 59, 0.35) !important;
}
.v2-navbar-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(254, 6, 59, 0.5) !important;
}

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

/* Mobile: esconde CTA do navbar (botão fixo de baixo já cobre) */
@media (max-width: 600px) {
  .v2-navbar-cta {
    display: none !important;
  }
}

/* ── HERO v2 ─────────────────────────────────── */
.v2-hero {
  min-height: auto !important;
  padding-bottom: 0;
}
.v2-hero .hero-overlay {
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(254, 6, 59, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, rgba(5, 10, 25, 0.7) 0%, rgba(5, 10, 25, 0.92) 100%) !important;
}
.v2-hero-container {
  padding-top: 56px !important;
  padding-bottom: 64px !important;
  max-width: 920px !important;
}

.v2-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(254, 6, 59, 0.14);
  border: 1px solid rgba(254, 6, 59, 0.4);
  color: #ff5d7c;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.v2-hero-badge .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(254, 6, 59, 0.2);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(254, 6, 59, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(254, 6, 59, 0); }
}

.v2-hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 4.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 22px;
  max-width: 880px;
  text-align: center;
  text-wrap: balance;
}
.v2-hero-title .red {
  color: var(--red);
}

.v2-hero-sub {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--v2-text-on-dark-muted);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 720px;
  text-align: center;
  text-wrap: pretty;
}
.v2-hero-sub strong {
  color: #fff;
  font-weight: 600;
}

.v2-hero-video {
  width: min(100%, 760px) !important;
  margin-bottom: 28px !important;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

/* Click-to-play poster */
.v2-video-poster {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  cursor: pointer;
  background: #000;
  overflow: hidden;
  border-radius: 14px;
}
.v2-video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v2-play-button {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s;
}
.v2-play-button svg {
  width: 64px;
  height: 64px;
  padding: 18px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(254, 6, 59, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}
.v2-video-poster:hover .v2-play-button svg {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(254, 6, 59, 0.7);
}
.v2-play-button span {
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.v2-hero-cta {
  font-size: 1.1rem !important;
  padding: 18px 40px !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 28px rgba(254, 6, 59, 0.45) !important;
  margin-bottom: 18px;
}
.v2-hero-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 36px rgba(254, 6, 59, 0.6) !important;
}
.v2-hero-cta--top {
  margin-top: 8px;
  margin-bottom: 14px;
}

.v2-hero-urgency {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
}
.v2-hero-urgency--top {
  margin-bottom: 28px;
}
.v2-hero-urgency strong {
  color: #fff;
}
.urgency-dot--green {
  background: var(--v2-green) !important;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
  animation: pulse-green 1.8s ease-in-out infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25); }
  50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.v2-hero-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 580px;
}
.v2-hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
}
.v2-stars {
  color: #ffc107;
  letter-spacing: 2px;
  font-size: 1rem;
}
.v2-rating-text strong {
  color: #fff;
}
.v2-hero-divider {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.18);
}
.v2-hero-stat {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
}
.v2-hero-stat strong {
  color: #fff;
  font-family: 'Sora', sans-serif;
}

@media (max-width: 700px) {
  .v2-hero-divider { display: none; }
  .v2-hero-urgency { gap: 12px; font-size: 0.76rem; }
  .v2-play-button svg { width: 52px; height: 52px; padding: 14px; }
  .v2-hero-container {
    padding-top: 36px !important;
    padding-bottom: 48px !important;
  }
  .v2-hero-title {
    font-size: clamp(1.55rem, 7vw, 2rem) !important;
    margin-bottom: 16px;
  }
  .v2-hero-sub {
    font-size: 0.98rem;
    margin-bottom: 24px;
  }
  .v2-hero-cta--top {
    width: 100%;
    max-width: 360px;
    justify-content: center;
    padding: 16px 24px !important;
    font-size: 1rem !important;
  }
  .v2-hero-urgency--top {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
  }
  .v2-hero-video {
    margin-bottom: 22px !important;
  }
}

/* ── PAIN POINTS v2 ─────────────────────────────────── */
.v2-pain-section {
  padding: 96px 0 !important;
}
.v2-pain-items {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 16px !important;
}
@media (max-width: 768px) {
  .v2-pain-items { grid-template-columns: 1fr !important; }
}
/* 5o card centralizado quando 2 cols (ímpar) */
@media (min-width: 769px) {
  .v2-pain-item--last {
    grid-column: 1 / -1;
    max-width: calc(50% - 8px);
    margin-left: auto;
    margin-right: auto;
  }
}
.v2-pain-item {
  flex-direction: column !important;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 26px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  align-items: flex-start !important;
  gap: 18px !important;
}
.v2-pain-item:hover {
  border-color: var(--border-red);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.v2-pain-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(254, 6, 59, 0.1);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.v2-pain-body {
  padding: 0 !important;
  display: block !important;
}
.v2-pain-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}
.v2-pain-item p {
  font-size: 0.92rem !important;
  color: var(--text-muted) !important;
  line-height: 1.6;
}

.v2-pain-callout {
  margin-top: 48px !important;
  max-width: 720px !important;
  padding: 28px 32px;
  background: rgba(254, 6, 59, 0.04);
  border-left: 4px solid var(--red);
  border-radius: 0 12px 12px 0;
  text-align: left !important;
}
.v2-pain-callout p {
  font-size: 1.05rem !important;
  color: var(--text-primary) !important;
  line-height: 1.65 !important;
}
.v2-pain-callout strong {
  color: var(--red) !important;
}

/* ── ABOUT DIAGNÓSTICO v2 ─────────────────────────────────── */
.v2-about-diag .v2-about-diag-inner {
  max-width: 760px;
  gap: 18px;
}
.v2-about-diag .about-diag-text p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  text-align: left;
}
.v2-bullet-list {
  list-style: none;
  margin: 22px 0 32px;
  padding: 0;
  display: grid;
  gap: 14px;
}
.v2-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--v2-text-on-dark);
  font-size: 1rem;
  line-height: 1.55;
}
.v2-bullet-list svg {
  flex-shrink: 0;
  color: var(--v2-green);
  margin-top: 4px;
}
.v2-bullet-list strong {
  color: #fff;
}

/* ── CASES GRID v2 ─────────────────────────────────── */
.v2-cases-section {
  padding: 96px 0 !important;
}
.v2-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
@media (max-width: 980px) {
  .v2-cases-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .v2-cases-grid { grid-template-columns: 1fr; }
}
.v2-case-card {
  background: #181818;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.v2-case-card:hover {
  border-color: rgba(254, 6, 59, 0.4);
  transform: translateY(-3px);
}
.v2-case-thumb {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #000;
}
.v2-case-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v2-case-body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.v2-case-stars {
  color: #ffc107;
  font-size: 0.9rem;
  letter-spacing: 2px;
}
.v2-case-quote {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--v2-text-on-dark);
  font-style: italic;
  flex: 1;
}
.v2-case-result {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  padding: 10px 14px;
  background: rgba(254, 6, 59, 0.08);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
}
.v2-case-before {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.5);
}
.v2-case-after {
  color: var(--red);
  font-weight: 700;
  font-size: 0.92rem;
}
.v2-case-period {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-left: auto;
}
.v2-case-author {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
}
.v2-case-author strong {
  color: #fff;
  display: block;
  margin-bottom: 2px;
}

/* (Carousel auto-scroll do styles.min.css volta a ser usado — sem override aqui) */

/* ── BENEFITS v2 — SVG icons ─────────────────────────────────── */
.v2-benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(254, 6, 59, 0.08);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
/* hide default emoji icon container if we forgot to replace */
.v2-benefit-card .benefit-icon { display: none; }
.v2-benefit-card .benefit-desc {
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── SYSTEM v2 — diagrama de engrenagens ─────────────────────────────────── */
.v2-system-title { color: #fff !important; }
.v2-system-lead {
  font-size: 1.02rem !important;
  color: var(--v2-text-on-dark-muted) !important;
  text-align: center;
  max-width: 740px;
  margin: 22px auto 40px !important;
}
.v2-system-lead strong { color: #fff; }

.v2-system-diagram {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 900px) {
  .v2-system-diagram { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .v2-system-diagram { grid-template-columns: 1fr; }
}
.v2-gear {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 24px 22px;
  text-align: left;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
  position: relative;
}
.v2-gear:hover {
  border-color: var(--border-red);
  background: rgba(254, 6, 59, 0.04);
  transform: translateY(-3px);
}
.v2-gear-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(254, 6, 59, 0.12);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.v2-gear-n {
  position: absolute;
  top: 22px;
  right: 22px;
  font-family: 'Sora', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.12);
  letter-spacing: -0.04em;
}
.v2-gear-name {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}
.v2-gear-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

.v2-system-quote {
  max-width: 720px;
  margin: 48px auto 0 !important;
  padding: 24px 28px !important;
  background: rgba(254, 6, 59, 0.05) !important;
  border-top: 0 !important;
  border-left: 3px solid var(--red) !important;
  border-radius: 0 10px 10px 0 !important;
  font-size: 1rem !important;
  color: rgba(255, 255, 255, 0.85) !important;
  font-style: italic;
  text-align: left !important;
  line-height: 1.7 !important;
}

/* ── ABOUT FSS v2 ─────────────────────────────────── */
.v2-about-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
}
.v2-about-text strong {
  color: var(--text-primary);
}
.v2-about-img-wrap {
  height: 460px !important;
  position: relative;
  overflow: hidden;
}
.v2-about .about-img {
  filter: grayscale(85%) contrast(1.08) brightness(0.9) saturate(0.85);
}
.v2-about-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(254, 6, 59, 0.22) 0%, transparent 45%, rgba(20, 0, 5, 0.45) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}
.v2-about-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.5));
  pointer-events: none;
  z-index: 2;
}
.v2-stats-grid {
  margin-top: 56px !important;
}

/* ── FAQ v2 ─────────────────────────────────── */
.v2-faq .faq-q {
  font-size: 1rem;
  font-weight: 600;
  padding: 20px 24px;
}
.v2-faq .faq-a {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
  padding-bottom: 20px;
}

/* ── FINAL CTA v2 ─────────────────────────────────── */
.v2-finalcta { padding: 112px 0 !important; }
.v2-finalcta-title {
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 18px !important;
}
.v2-finalcta-sub {
  font-size: 1.1rem !important;
  color: rgba(255, 255, 255, 0.82) !important;
  margin-bottom: 32px !important;
}
.v2-finalcta-sub strong { color: #fff; }
.v2-finalcta-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-top: 28px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ── FOOTER v2 ─────────────────────────────────── */
.v2-footer { padding: 56px 0 28px !important; }
.v2-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
@media (max-width: 800px) {
  .v2-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .v2-footer-grid { grid-template-columns: 1fr; }
}
.v2-footer-col h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}
.v2-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}
.v2-footer-col a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}
.v2-footer-col a:hover { color: #fff; }
.v2-footer-col li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
.v2-footer-logo {
  height: 32px;
  width: auto;
  margin-bottom: 14px;
}
.v2-footer-tagline {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 14px;
  max-width: 320px;
}
.v2-footer-cnpj {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
}
.v2-footer-badges li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.v2-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  font-size: 0.85rem;
}
.v2-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

/* ── WIZARD MODAL v2 ─────────────────────────────────── */
.v2-modal-wizard { max-width: 540px !important; }
.v2-wizard-header { padding: 22px 26px 14px !important; }
.v2-wizard-progress {
  margin-bottom: 14px;
}
.v2-progress-track {
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 14px;
}
.v2-progress-fill {
  height: 100%;
  width: 33%;
  background: var(--red);
  border-radius: 2px;
  transition: width 0.35s ease;
}
.v2-wizard-tabs {
  display: flex;
  gap: 6px;
  border-bottom: none !important;
  margin-bottom: 0 !important;
}
.v2-wizard-tabs .wizard-tab {
  display: flex !important;
  align-items: center;
  gap: 8px;
  flex: 1;
  padding: 0 !important;
  text-align: left !important;
  color: rgba(255, 255, 255, 0.45) !important;
}
.v2-wizard-tabs .wizard-tab::after { display: none !important; }
.v2-tab-num {
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.v2-tab-label {
  font-size: 0.78rem;
  font-weight: 500;
}
.v2-wizard-tabs .wizard-tab.active .v2-tab-num {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.v2-wizard-tabs .wizard-tab.active {
  color: #fff !important;
}
.v2-wizard-tabs .wizard-tab.completed .v2-tab-num {
  background: rgba(34, 197, 94, 0.2);
  border-color: var(--v2-green);
  color: var(--v2-green);
}
.v2-wizard-tabs .wizard-tab.completed { color: rgba(255, 255, 255, 0.7) !important; }
.v2-wizard-tabs .wizard-tab.completed .v2-tab-num::after {
  content: '✓';
  font-size: 0.7rem;
}
.v2-wizard-tabs .wizard-tab.completed .v2-tab-num {
  font-size: 0;
}

@media (max-width: 768px) {
  /* ── Modal / backdrop ──
     Material 8pt grid · backdrop 16px de margem segura
     + scroll vertical para conteúdo maior que viewport ── */
  .modal-backdrop {
    padding: 16px !important;
    align-items: flex-start !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .modal--wizard {
    border-radius: 18px !important;
    max-width: 640px !important;
    margin: auto 0 !important;
  }

  /* ── Header (faixa preta) ── */
  .wizard-header,
  .v2-wizard-header { padding: 22px 24px 16px !important; }
  .wizard-brand { font-size: 1rem !important; margin-bottom: 16px !important; }

  /* ── Tabs ── */
  .v2-wizard-tabs { gap: 6px; padding-bottom: 12px; }
  .v2-tab-label { font-size: 0.85rem; }
  .v2-tab-num {
    width: 26px;
    height: 26px;
    font-size: 0.8rem;
  }
  .v2-wizard-tabs .wizard-tab.completed .v2-tab-num::after { font-size: 0.78rem; }

  /* ── Progress meta ── */
  .wizard-meta { font-size: 0.8rem; margin-top: 12px; }
  .wizard-step-label,
  .wizard-time { font-size: 0.8rem; }

  /* ── Conteúdo do step ──
     padding generoso (8pt grid: 32/24/28) ── */
  .wizard-body { padding: 32px 24px 28px !important; }
  .wizard-step-title {
    font-size: 1.5rem !important;       /* 24px — H2 mobile padrão */
    line-height: 1.3 !important;
    margin-bottom: 14px !important;
    letter-spacing: -0.01em !important;
  }
  .wizard-step-desc {
    font-size: 1.0625rem !important;    /* 17px — body+ */
    line-height: 1.6 !important;
    margin-bottom: 24px !important;
  }
  .wizard-step-tag { display: none !important; }

  /* ── Cards de opção ──
     altura ≥56px (Material recomenda 56px filled fields)
     padding interno generoso + tipografia legível ── */
  .radio-card {
    padding: 20px 20px !important;
    font-size: 1.0625rem !important;    /* 17px */
    line-height: 1.45 !important;
    gap: 16px !important;
    border-radius: 14px !important;
    min-height: 56px !important;
  }
  .radio-grid { gap: 14px !important; margin-bottom: 22px !important; }
  .radio-list { gap: 14px !important; margin-bottom: 12px !important; }
  .radio-circle { width: 26px !important; height: 26px !important; }
  .radio-circle::after { width: 13px !important; height: 13px !important; }

  /* ── Inputs / info-block ── */
  .wizard-info-box { padding: 18px 20px !important; margin-bottom: 20px !important; }
  .wizard-info-box p { font-size: 1rem !important; line-height: 1.6 !important; }
  .form-field { margin-bottom: 18px !important; }
  .form-field input,
  .form-field select {
    padding: 18px 18px !important;
    font-size: 16px !important;          /* obrigatório: anti-zoom iOS */
    border-radius: 12px !important;
    min-height: 56px !important;         /* Material: 56px filled */
  }
  .form-field label {
    font-size: 0.875rem !important;     /* 14px */
    margin-bottom: 10px !important;
    letter-spacing: 0.04em !important;
  }
  .phone-input-wrapper { min-height: 56px !important; border-radius: 12px !important; }
  .phone-input-wrapper #f-country-code {
    padding: 18px 28px 18px 14px !important;
    font-size: 1rem !important;
  }
  .phone-input-wrapper #f-whatsapp {
    padding: 18px 18px !important;
    font-size: 16px !important;
  }

  /* ── Ações ── */
  .wizard-footer { padding-top: 20px !important; }
  .wizard-urgency {
    font-size: 0.875rem !important;     /* 14px */
    gap: 12px 18px !important;
    margin: 20px 0 16px !important;
    flex-wrap: wrap !important;
  }
  .wizard-btn-main {
    padding: 20px !important;
    font-size: 1.2rem !important;        /* 19.2px — botão primário grande */
    border-radius: 14px !important;
    min-height: 60px !important;         /* > 48px Material */
    font-weight: 700 !important;
  }
  .wizard-btn-main svg { width: 22px !important; height: 22px !important; }
  .wizard-btn-main:disabled { opacity: 0.85; }
  .wizard-btn-back {
    font-size: 1rem !important;
    padding: 14px !important;
    min-height: 48px !important;         /* alvo de toque mínimo */
  }
  .wizard-secure {
    font-size: 0.875rem !important;
    margin-top: 14px !important;
    gap: 8px !important;
  }
  .wizard-secure svg { width: 16px !important; height: 16px !important; }
}

/* ── Refinamentos para telas pequenas (≤500px) ── */
@media (max-width: 500px) {
  /* ── ≤500px — celular (mantém escala confortável, só ajusta margens) ── */
  .modal-backdrop { padding: 12px !important; }
  .modal--wizard { border-radius: 16px !important; }

  .wizard-header,
  .v2-wizard-header { padding: 18px 18px 14px !important; }
  .wizard-brand { font-size: 0.92rem !important; margin-bottom: 14px !important; }

  .v2-tab-label { display: none; }
  .v2-tab-num { width: 24px; height: 24px; font-size: 0.78rem; }
  .v2-wizard-tabs { padding-bottom: 10px; }

  .wizard-meta { font-size: 0.78rem; margin-top: 10px; }

  .wizard-body { padding: 26px 20px 22px !important; }
  .wizard-step-title { font-size: 1.35rem !important; margin-bottom: 12px !important; }
  .wizard-step-desc { font-size: 1rem !important; margin-bottom: 20px !important; }

  .radio-card {
    padding: 18px 18px !important;
    font-size: 1rem !important;
    min-height: 56px !important;
    border-radius: 12px !important;
  }
  .radio-grid { gap: 12px !important; margin-bottom: 18px !important; }
  .radio-list { gap: 12px !important; margin-bottom: 10px !important; }
  .radio-circle { width: 24px !important; height: 24px !important; }
  .radio-circle::after { width: 12px !important; height: 12px !important; }
  .wizard-info-box { padding: 16px 18px !important; }

  .form-field input,
  .form-field select {
    padding: 16px !important;
    min-height: 52px !important;
  }
  .wizard-btn-main {
    padding: 18px !important;
    font-size: 1.12rem !important;
    min-height: 56px !important;
  }
  .wizard-urgency { font-size: 0.82rem !important; }
}

/* ── BUTTONS — refinements & hover ─────────────────────────────────── */
.btn--red {
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s, color 0.2s !important;
}
.btn--red:active {
  transform: translateY(0) !important;
}

/* ── REVEAL — make it less aggressive on mount ─────────────────────────────── */
.reveal {
  transition: opacity 0.6s ease, transform 0.6s ease !important;
}

/* ── Hide old static red banner that was above hero ─────────────────────── */
.hero-title-wrap { display: none !important; }

/* ── Logos clientes: card branco uniforme (PNGs do repo são mistura de fundo
   transparente + fundo branco; usar card branco normaliza a aparência) ── */
.logo-box {
  height: 56px !important;
  padding: 8px 18px !important;
  min-width: 130px;
  background: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 10px !important;
}
.logo-box:hover {
  background: #fff !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
}
.logo-box img {
  filter: none !important;
  opacity: 1 !important;
  max-width: 140px;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.logos-label {
  color: rgba(255, 255, 255, 0.75) !important;
  margin-bottom: 30px !important;
}

/* ── Spacing for fixed elements ─────────────────────────────────── */
body {
  padding-bottom: 120px;
}
@media (max-width: 600px) {
  body { padding-bottom: 110px; }
}

/* ── Bottom bar: aparece só a partir da seção Pain ─────────────
   Hidden por padrão. Quando a Pain section entra no viewport,
   o v2.js adiciona body.v2-show-bar e a barra desliza pra cima.
   Também neutraliza o auto-hide do app.js (que escondia em
   qualquer CTA vermelho visível).
*/
.fixed-bottom-bar {
  transform: translateY(110%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
body.v2-show-bar .fixed-bottom-bar,
body.v2-show-bar .fixed-bottom-bar.hidden {
  transform: translateY(0) !important;
  opacity: 1 !important;
  pointer-events: all !important;
}

/* ══════════════════════════════════════════════════════════════
   FIXED BOTTOM BAR v2 — playbook-style (tag flutuante + pill + white CTA)
   ══════════════════════════════════════════════════════════════ */
.v2-fixed-bar {
  background: transparent !important;
  backdrop-filter: none !important;
  border-top: none !important;
  box-shadow: none !important;
  padding: 0 16px 14px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  pointer-events: none;
}
.v2-fixed-bar > * {
  pointer-events: all;
}
.v2-fixed-bar__tag {
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #fff;
  background: var(--red);
  padding: 10px 28px;
  border-radius: 16px 16px 0 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 -8px 32px rgba(254, 6, 59, 0.35);
  margin-bottom: -2px;
}
.v2-fixed-bar__pill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--red);
  padding: 8px 8px 8px 24px;
  border-radius: 100px;
  box-shadow: 0 10px 36px rgba(254, 6, 59, 0.5), 0 0 0 1px rgba(254, 6, 59, 0.3), 0 0 60px rgba(254, 6, 59, 0.18);
  width: 100%;
  max-width: 580px;
  position: relative;
  z-index: 1;
}
.v2-fixed-bar__text {
  flex: 1;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.v2-fixed-bar__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--red);
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  padding: 14px 22px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}
.v2-fixed-bar__cta:hover {
  transform: scale(1.04);
  color: var(--red);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}
.v2-fixed-bar__cta-short { display: none; }

@media (max-width: 560px) {
  .v2-fixed-bar { padding: 0 10px 10px !important; }
  .v2-fixed-bar__tag {
    font-size: 0.68rem;
    padding: 7px 18px;
    letter-spacing: 0.15em;
  }
  .v2-fixed-bar__pill {
    padding: 6px 6px 6px 18px;
    gap: 8px;
  }
  .v2-fixed-bar__text {
    font-size: 0.82rem;
    font-weight: 600;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.2;
  }
  .v2-fixed-bar__cta {
    padding: 11px 16px;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    gap: 6px;
  }
  .v2-fixed-bar__cta-full { display: none; }
  .v2-fixed-bar__cta-short { display: inline; }
}
@media (max-width: 380px) {
  .v2-fixed-bar__text {
    font-size: 0.76rem;
    line-height: 1.2;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }
}

/* ── Exit popup: esconde X de fechar (mantém ESC + click fora pra fechar) ── */
#exit-popup-close {
  display: none !important;
}

/* ══════════════════════════════════════════════════════════════
   GRANDE MENTIRA — quebra de objeções inline
   ══════════════════════════════════════════════════════════════ */
.v2-myth-section {
  background: var(--bg-deep);
  padding: 96px 0 !important;
}
.v2-myth-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.v2-myth-eyebrow {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.v2-myths-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .v2-myths-grid { grid-template-columns: 1fr; gap: 16px; }
}
.v2-myth-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.v2-myth-card:hover {
  border-color: var(--border-red);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}
.v2-myth-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: 'Sora', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(254, 6, 59, 0.08);
  border: 1px solid rgba(254, 6, 59, 0.2);
  padding: 5px 12px;
  border-radius: 100px;
}
.v2-myth-belief {
  font-family: 'Sora', sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text-primary);
  padding: 14px 16px 14px 18px;
  background: rgba(0, 0, 0, 0.03);
  border-left: 3px solid #aaa;
  border-radius: 0 8px 8px 0;
  position: relative;
}
.v2-myth-belief em {
  color: var(--red);
  font-style: normal;
  font-weight: 700;
}
.v2-myth-truth {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
}
.v2-myth-truth strong {
  color: var(--text-primary);
}
.v2-myth-truth strong:first-child {
  color: var(--red);
  font-weight: 800;
  letter-spacing: 0.01em;
}

/* ══════════════════════════════════════════════════════════════
   A VIRADA — pivot pra o mecanismo único
   ══════════════════════════════════════════════════════════════ */
.v2-pivot-section {
  background:
    radial-gradient(ellipse 50% 70% at 50% 50%, rgba(254, 6, 59, 0.06) 0%, transparent 70%),
    var(--bg-dark);
  padding: 88px 0 !important;
  position: relative;
}
.v2-pivot-section::before,
.v2-pivot-section::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, transparent, var(--red));
  transform: translateX(-50%);
}
.v2-pivot-section::before { top: 0; }
.v2-pivot-section::after {
  bottom: 0;
  background: linear-gradient(0deg, transparent, var(--red));
}
.v2-pivot-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.v2-pivot-tag {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(254, 6, 59, 0.1);
  border: 1px solid rgba(254, 6, 59, 0.25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.v2-pivot-title {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem) !important;
  margin-bottom: 22px;
  text-wrap: balance;
}
.v2-pivot-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-primary);
  max-width: 660px;
  margin: 0 auto 16px;
}
.v2-pivot-text strong {
  color: var(--red);
  font-weight: 700;
}
.v2-pivot-arrow {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
  color: var(--red);
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce-down 2s ease-in-out infinite;
}
@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
@media (prefers-reduced-motion: reduce) {
  .v2-pivot-arrow { animation: none; }
}

/* ── Mechanism badge dentro do System ─────────────────────────── */
.v2-mechanism-badge {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}

/* ══════════════════════════════════════════════════════════════
   POLARIZAÇÃO — quem É e quem NÃO É o lead
   ══════════════════════════════════════════════════════════════ */
.v2-polarize-section {
  background: var(--bg-dark);
  padding: 96px 0 !important;
}
.v2-polarize-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.v2-polarize-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 780px) {
  .v2-polarize-grid { grid-template-columns: 1fr; }
}
.v2-polarize-col {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 28px 28px 30px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.v2-polarize-col--yes {
  border-color: rgba(34, 197, 94, 0.35);
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.03), var(--bg-card));
}
.v2-polarize-col--yes:hover {
  border-color: rgba(34, 197, 94, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(34, 197, 94, 0.1);
}
.v2-polarize-col--no {
  border-color: rgba(254, 6, 59, 0.3);
  background: linear-gradient(180deg, rgba(254, 6, 59, 0.03), var(--bg-card));
}
.v2-polarize-col--no:hover {
  border-color: rgba(254, 6, 59, 0.55);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(254, 6, 59, 0.1);
}
.v2-polarize-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 16px 8px 12px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.v2-polarize-tag--yes {
  color: #14803a;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.v2-polarize-tag--no {
  color: var(--red);
  background: rgba(254, 6, 59, 0.08);
  border: 1px solid rgba(254, 6, 59, 0.25);
}
.v2-polarize-tag svg {
  flex-shrink: 0;
}
.v2-polarize-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.v2-polarize-list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text-primary);
}
.v2-polarize-col--yes .v2-polarize-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  color: var(--v2-green);
  font-size: 1.05rem;
  line-height: 1.55;
}
.v2-polarize-col--no .v2-polarize-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  color: var(--red);
  font-size: 1.05rem;
  line-height: 1.55;
}
.v2-polarize-list strong {
  color: var(--text-primary);
  font-weight: 700;
}
.v2-polarize-cta {
  text-align: center;
  margin-top: 48px;
}
.v2-polarize-cta-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}
