:root {
  --black: #0a0a0a;
  --black-soft: #111111;
  --gold: #d4af37;
  --gold-light: #f0d77b;
  --gold-deep: #a8862a;
  --text: #f5f3ee;
  --text-muted: #aaa498;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(212, 175, 55, 0.22);
  --radius: 22px;
}

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

html { scroll-behavior: smooth; background: var(--black); }

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

h1, h2, h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gold-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* GLASS EFFECT (estilo iPhone) */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: #1a1405;
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.35);
}
.btn-ghost { color: var(--text); }

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 92px; }
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.brand-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: #1a1405;
  font-weight: 800;
  font-size: 1.3rem;
}
/* Use esta classe ao trocar o "P" pela imagem da logo */
.brand-logo { height: 72px; width: auto; display: block; }
.brand-name { color: var(--text); font-weight: 700; letter-spacing: 2px; font-size: 1.05rem; }
.nav-links { display: flex; gap: 1.8rem; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta { padding: 0.6rem 1.3rem; }

/* HERO */
.hero { position: relative; padding: 6rem 0 5rem; overflow: hidden; }
.hero-glow {
  position: absolute;
  top: -20%; left: 50%;
  width: 800px; height: 800px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18), transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; text-align: center; display: flex; flex-direction: column; align-items: center; }
.badge {
  display: inline-block;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--gold-light);
  margin-bottom: 1.8rem;
}
.hero-title { font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 800; max-width: 900px; margin-bottom: 1.4rem; }
.hero-sub { color: var(--text-muted); font-size: 1.1rem; max-width: 660px; margin-bottom: 2.2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-bottom: 3rem; }
.stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem 2rem;
  border-radius: var(--radius);
  flex-wrap: wrap;
  justify-content: center;
}
.stat { display: flex; flex-direction: column; align-items: center; min-width: 110px; }
.stat strong { font-size: 2rem; font-weight: 800; }
.stat span { color: var(--text-muted); font-size: 0.85rem; }
.stat-divider { width: 1px; height: 40px; background: rgba(212, 175, 55, 0.25); }

/* SECTIONS */
.section { padding: 5rem 0; }
.section-alt { background: var(--black-soft); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin: 0.6rem 0; }
.section-desc { color: var(--text-muted); font-size: 1.05rem; }

/* GRIDS */
.grid { display: grid; gap: 1.3rem; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* CARDS METODO */
.card {
  padding: 1.8rem 1.5rem;
  border-radius: var(--radius);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.card:hover { transform: translateY(-6px); border-color: rgba(212, 175, 55, 0.5); }
.card-tag {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: #1a1405;
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--gold-light); }
.card p { color: var(--text-muted); font-size: 0.95rem; }

/* STEPS / COMO FUNCIONA */
.step {
  padding: 1.8rem 1.5rem;
  border-radius: var(--radius);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.step:hover { transform: translateY(-6px); border-color: rgba(212, 175, 55, 0.5); }
.step-num {
  display: inline-block;
  font-size: 2rem;
  font-weight: 800;
  color: rgba(212, 175, 55, 0.45);
  margin-bottom: 0.6rem;
}
.step h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--text); }
.step p { color: var(--text-muted); font-size: 0.95rem; }

/* REASONS */
.reason { padding: 1.6rem; border-radius: var(--radius); transition: transform 0.25s ease, border-color 0.25s ease; }
.reason:hover { transform: translateY(-4px); border-color: rgba(212, 175, 55, 0.4); }
.reason h3 { font-size: 1.15rem; color: var(--gold-light); margin-bottom: 0.5rem; }
.reason p { color: var(--text-muted); font-size: 0.95rem; }

/* ===== CARROSSEL DE CLIENTES (MARQUEE) ===== */
.marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0.6rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee + .marquee { margin-top: 1.2rem; }
.marquee-track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: scroll-left 40s linear infinite;
}
.marquee-reverse .marquee-track { animation: scroll-right 46s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes scroll-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.client-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.3rem;
  border-radius: 18px;
  min-width: 280px;
  flex-shrink: 0;
}
.client-logo {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--glass-border);
  flex-shrink: 0;
  overflow: hidden;
}
.client-logo-text {
  color: var(--gold-light);
  font-weight: 700;
  font-size: 1.1rem;
}
/* Logo real do cliente: ocupa o quadrado sem cortar (contain) */
.client-logo-img { width: 100%; height: 100%; object-fit: contain; padding: 6px; display: block; }
/* Quando há logo, o fundo do quadrado fica branco; quando é texto, fica dourado translúcido */
.client-logo.is-text { background: rgba(212, 175, 55, 0.12); }
.client-info { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.client-info h3 { font-size: 1.05rem; font-weight: 600; white-space: nowrap; }
.client-seg { color: var(--text-muted); font-size: 0.82rem; }
.units {
  display: inline-flex;
  align-items: baseline;
  gap: 0.15rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}
.units small { font-size: 0.7rem; font-weight: 500; opacity: 0.85; }

/* ===== MÉTODO BOSS (estilo site original) ===== */
.boss-section { padding: 5.5rem 0; }
.boss-head { text-align: center; margin-bottom: 3rem; }
.boss-word {
  font-size: clamp(4rem, 18vw, 11rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-top: 0.4rem;
  display: flex;
  justify-content: center;
  gap: 0.05em;
}
.boss-letter {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.boss-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}
.boss-item {
  padding: 2rem 1.6rem;
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.boss-item:hover { transform: translateY(-6px); border-color: rgba(212, 175, 55, 0.5); }
.boss-tag {
  display: grid; place-items: center;
  width: 56px; height: 56px;
  margin: 0 auto 1.1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: #1a1405;
  font-weight: 800;
  font-size: 1.7rem;
}
.boss-item h3 { font-size: 1.35rem; margin-bottom: 0.5rem; color: var(--gold-light); }
.boss-item p { color: var(--text-muted); font-size: 0.95rem; }

/* QUOTES */
.quote {
  position: relative;
  padding: 2.2rem 1.8rem 1.8rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  /* estado inicial do efeito reveal */
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s ease;
}
.quote.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.quote:hover { transform: translateY(-6px); border-color: rgba(212, 175, 55, 0.5); }
.quote-mark {
  font-family: Georgia, 'Times New Roman', serif;
  position: absolute;
  top: 0.4rem; left: 1.2rem;
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(212, 175, 55, 0.25);
  pointer-events: none;
}
.quote blockquote { color: var(--text); font-size: 0.98rem; margin-bottom: 1.4rem; position: relative; z-index: 1; }
.quote figcaption { display: flex; align-items: center; gap: 0.9rem; border-top: 1px solid rgba(212, 175, 55, 0.2); padding-top: 1rem; }
.quote-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.quote-person { display: flex; flex-direction: column; }
.quote-person strong { color: var(--gold-light); font-size: 1.05rem; }
.quote-person span { color: var(--text-muted); font-size: 0.85rem; }

/* CONTATO CTA */
.contact-cta {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  padding: 2.8rem;
  border-radius: var(--radius);
  align-items: center;
}
.contact-cta-text .section-title { margin-top: 0.4rem; }
.contact-cta-text .section-desc { margin-bottom: 1.6rem; }
.info-list { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; }
.info-list li { display: flex; flex-direction: column; gap: 0.2rem; }
.info-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); font-weight: 600; }
.info-list a, .info-list span:not(.info-label) { color: var(--text); text-decoration: none; font-size: 1rem; }
.info-list a:hover { color: var(--gold-light); }

/* FOOTER */
.footer { background: var(--black-soft); border-top: 1px solid rgba(212, 175, 55, 0.15); padding: 3rem 0 1.5rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; flex-wrap: wrap; }
.footer-brand { display: flex; flex-direction: column; gap: 0.8rem; max-width: 340px; align-items: flex-start; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.06); text-align: center; }
.footer-copy p { color: var(--text-muted); font-size: 0.85rem; }

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.45);
  z-index: 60;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* LEGAL PAGES */
.legal { padding: 4rem 0; }
.legal .container { max-width: 820px; }
.legal-card { padding: 2.5rem; border-radius: var(--radius); }
.legal h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 1.5rem; }
.legal h2 { font-size: 1.3rem; color: var(--gold-light); margin: 2rem 0 0.8rem; }
.legal h3 { font-size: 1.1rem; color: var(--text); margin: 1.5rem 0 0.6rem; }
.legal p { color: var(--text-muted); margin-bottom: 1rem; }
.legal ul, .legal ol { color: var(--text-muted); margin: 0 0 1rem 1.4rem; }
.legal li { margin-bottom: 0.5rem; }
.back-link { display: inline-block; margin-bottom: 1.5rem; color: var(--gold); text-decoration: none; font-weight: 600; }
.back-link:hover { color: var(--gold-light); }

/* FAQ (SEO) */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.faq-item {
  position: relative;
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-deep));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}
.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(255, 255, 255, 0.05);
}
.faq-item[open] {
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.06);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}
.faq-item[open]::before { transform: scaleY(1); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 1.6rem;
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  transition: color 0.25s ease;
}
.faq-item summary:hover { color: var(--gold-light); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background:
    linear-gradient(var(--gold), var(--gold)) center / 12px 1.5px no-repeat,
    linear-gradient(var(--gold), var(--gold)) center / 1.5px 12px no-repeat;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.faq-item[open] summary { color: var(--gold-light); }
.faq-item[open] summary::after {
  transform: rotate(135deg);
  background:
    linear-gradient(var(--black), var(--black)) center / 12px 1.5px no-repeat,
    linear-gradient(var(--black), var(--black)) center / 1.5px 12px no-repeat,
    linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: transparent;
}
.faq-item p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.7;
  margin: 0 1.6rem;
  padding: 1.1rem 0 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.14);
}

/* ========================================================================== */
/* BLOCO DE COMPARAÇÃO (HERO) FOCADO EM CONVERSÃO - CORRIGIDO                 */
/* ========================================================================== */

.comparison-wrapper {
  margin: 3rem auto;
  width: 100%;
  max-width: 850px;
}

.comparison-grid {
  display: flex;
  flex-direction: row; /* Força ficar lado a lado */
  gap: 0; /* Tira o espaço para ficarem colados como no seu design */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-card {
  flex: 1;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: none !important; /* Remove as bordas finas que apareceram na imagem */
  backdrop-filter: none !important; /* Remove o efeito de vidro para deixar a cor sólida */
}

/* Cores sólidas originais do seu design */
.card-propria {
  background-color: #173331 !important; /* Verde escuro Poleniza */
}

.card-franquia {
  background-color: #0b0f10 !important; /* Fundo quase preto */
}

.comparison-card h3 {
  text-align: center;
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  color: #fff;
  line-height: 1.3;
}

.comparison-card hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto 1.5rem;
  width: 60%;
}

.card-franquia hr {
  border-top: 1px solid var(--gold);
}

.comp-label {
  font-size: 0.85rem;
  color: #a1a1aa;
  text-align: center;
  margin-bottom: 0.2rem;
}

.comp-value {
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.8rem;
}

.comp-value:last-child {
  margin-bottom: 0;
}

.highlight-white {
  color: #ffffff;
}

.highlight-gold {
  color: var(--gold-light);
}

.comp-small {
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.8;
}

/* Mobile: empilha os cards apenas em telas pequenas */
@media (max-width: 768px) {
  .comparison-grid {
    flex-direction: column;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .boss-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cta { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
  .boss-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
}

/* ACESSIBILIDADE: respeita preferência de menos animação */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .quote { opacity: 1; transform: none; transition: none; }
}

/* ========================================================================== */
/* BOTÕES GRANDES DE CONVERSÃO E CALCULADORA ANIMADA                          */
/* ========================================================================== */

.hero-actions-conversion {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 3rem;
}

.btn-large {
  font-size: 1.25rem !important;
  font-weight: 800;
  padding: 1.3rem 2.8rem !important;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
  display: inline-block;
  margin-bottom: 2rem !important; 
}

.btn-large:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.6);
}

.micro-copy {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 450px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ========================================================================== */
/* CALCULADORA DE ESCALA ANIMADA ("EFEITO GIF")                               */
/* ========================================================================== */
.animated-calculator {
  max-width: 700px;
  margin: 0 auto 2rem;
  padding: 2.5rem;
  border-radius: 16px;
  background: rgba(15, 21, 22, 0.85);
  border: 1px solid var(--gold);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.calc-label {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 500;
}

.calc-value {
  font-size: 2.5rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums; /* Mantém os números alinhados enquanto rodam */
}

.calc-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0.5rem 0;
}

.highlight-green {
  color: #25D366; /* Verde dinheiro/crescimento */
}

.calc-footer {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

@media (max-width: 600px) {
  .calc-row {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  .calc-label { font-size: 1rem; }
  .calc-value { font-size: 2rem; }
}



.lead-form-text {
    flex: 1; /* Ocupa 50% */
}

.lead-form-box {
    flex: 1; /* Ocupa 50% */
}

.qualify-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.input-group label {
  font-size: 0.9rem;
  color: var(--gold-light);
  font-weight: 600;
}

.input-group input, .input-group select {
  padding: 1.2rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 1rem;
  transition: border 0.3s;
}

.input-group input:focus, .input-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}

.btn-submit {
  width: 100%;
  font-size: 1.1rem;
  padding: 1.2rem;
  margin-top: 1rem;
}

/* Correção do Carrossel (Removendo o buraco) */
.marquee-track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: scroll-left 40s linear infinite;
  will-change: transform;
}

/* Ajuste dos Cards de Clientes */
.client-card {
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: rgba(255,255,255,0.03);
}

/* Simulador e Formulário */
.simulador-box {
  max-width: 750px; margin: 0 auto 2rem;
  background: linear-gradient(145deg, #111516 0%, #0a0a0a 100%);
  border-radius: 24px; padding: 3.5rem;
  border: 1px solid var(--gold);
}

.btn-large {
  font-size: 1.25rem; font-weight: 800; padding: 1.4rem 3rem;
  border-radius: 999px; text-transform: uppercase;
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}
.impact-board {
    max-width: 700px;
    margin: 2rem auto;
    padding: 3rem;
    border-radius: 24px;
    background: #0d1112;
    border: 1px solid var(--gold);
    text-align: center;
}

.impact-header {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.impact-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.impact-value {
    font-size: 2.2rem;
    font-weight: 800;
}

.impact-footer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
}

.impact-total-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.impact-total-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-top: 0.5rem;
}
.simulador-footer {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center; /* Garante a centralização */
  max-width: 600px;
  margin: 2rem auto 0 auto; /* Adicionei margem superior para espaçar */
  display: block;
}
/* Correção do Select e Alinhamento */
.input-modern {
    color: #fff !important; /* Força o texto ser branco */
    background: #1a1a1a !important; /* Cor de fundo escura sólida */
}

/* Garante que o select tenha opções visíveis */
select.input-modern {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5em;
}

select.input-modern option {
    background: #1a1a1a;
    color: #fff;
    padding: 10px;
}

/* Garantir o layout lado a lado */


.lead-form-text, .lead-form-box {
    flex: 1;
}
/* ========================================================================== */
/* FORMULÁRIO DE QUALIFICAÇÃO - CORRIGIDO                                      */
/* ========================================================================== */
.lead-form-wrapper {
    display: flex !important;
    flex-direction: row !important;
    gap: 4rem;
    padding: 4rem;
    border-radius: 28px;
    background: rgba(15, 21, 22, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.25);
    align-items: center;
}

.lead-form-text { flex: 1; }
.lead-form-box { flex: 1; width: 100%; }

@media (max-width: 900px) {
    .lead-form-wrapper { 
        flex-direction: column !important; 
        gap: 2rem;
        padding: 2rem;
    }
}

/* ========================================================================== */
/* REVEAL GROUP (DEPOIMENTOS) - CORRIGIDO                                     */
/* ========================================================================== */
.reveal-group .quote {
    opacity: 0;
    transform: translateY(20px);
    /* Transição rápida e fluida */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.reveal-group .quote.is-visible {
    opacity: 1;
    transform: translateY(0);
}