:root {
  --navy: #071731;
  --navy-light: #0f2247;
  --navy-lighter: #16305e;
  --teal: #00c3c3;
  --teal-dark: #00a3a3;
  --off-white: #f9fafb;
  --text-muted: #9fb0c9;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1180px;
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--navy);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 .6em;
}

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  color: var(--teal-dark);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .8rem;
  margin-bottom: .8em;
}

.section { padding: 88px 0; }
.section-alt { background: #eef1f6; }
.section-sub { color: #4a5872; max-width: 620px; font-size: 1.05rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--teal);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(0,195,195,.35);
}
.btn-primary:hover { background: var(--teal-dark); box-shadow: 0 10px 28px rgba(0,195,195,.45); }
.btn-ghost {
  background: transparent;
  border-color: rgba(249,250,251,.35);
  color: var(--off-white);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn-lg { padding: 17px 32px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-nav { padding: 11px 20px; font-size: .85rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,23,49,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo-link { display: flex; align-items: center; }
.logo-img { height: 42px; width: auto; border-radius: 8px; }
.main-nav { display: flex; gap: 24px; margin-left: auto; }
.main-nav a { color: var(--off-white); font-size: .93rem; font-weight: 500; opacity: .85; }
.main-nav a:hover { opacity: 1; color: var(--teal); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--off-white); margin: 5px 0; border-radius: 2px;
}

/* Hero */
.hero {
  background: radial-gradient(1200px 600px at 15% -10%, #10305e 0%, transparent 60%), var(--navy);
  color: var(--off-white);
  padding: 72px 0 96px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
}
.badge {
  display: inline-block;
  background: rgba(0,195,195,.12);
  border: 1px solid rgba(0,195,195,.4);
  color: var(--teal);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  color: var(--off-white);
  max-width: 640px;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.trust-badges {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 28px;
}
.trust-badges li { display: flex; flex-direction: column; }
.trust-badges strong { font-family: var(--font-heading); font-size: 1.4rem; color: var(--teal); }
.trust-badges span { font-size: .8rem; color: var(--text-muted); }
.hero-card {
  background: linear-gradient(160deg, var(--navy-light) 0%, #0b2c56 100%);
  border: 1px solid rgba(0,195,195,.3);
  border-radius: var(--radius);
  padding: 28px 26px 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,.45);
}
.hero-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.hero-card-tags { color: var(--teal); font-weight: 600; }
.hero-card-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--off-white);
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 22px;
}
.hero-card-badge {
  background: rgba(0,195,195,.15);
  color: var(--teal);
  font-size: .8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}
.hero-card-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
  margin-bottom: 14px;
}
.hero-card-bars span {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--teal) 0%, rgba(0,195,195,.35) 100%);
  border-radius: 4px 4px 0 0;
}
.hero-card-bars span:last-child { background: linear-gradient(180deg, #4ee, var(--teal)); }
.hero-card-caption { font-size: .78rem; color: var(--text-muted); }

/* Results — growth cards (antes/depois) */
.growth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.growth-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 28px 24px;
  color: var(--off-white);
}
.growth-highlight { background: linear-gradient(160deg, var(--navy) 0%, #0b2c56 100%); border: 1px solid rgba(0,195,195,.35); }
.growth-label { display: block; font-size: .85rem; color: var(--text-muted); margin-bottom: 18px; font-weight: 500; }
.growth-values { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.growth-value { display: flex; flex-direction: column; }
.growth-tag { font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); margin-bottom: 4px; }
.growth-value strong { font-family: var(--font-heading); font-size: 1.35rem; }
.growth-before strong { color: #b7c0cf; }
.growth-after strong { color: var(--teal); }
.growth-arrow { color: var(--teal); font-size: 1.2rem; }
.growth-badge {
  display: inline-block;
  background: rgba(0,195,195,.15);
  color: var(--teal);
  font-size: .8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
}

/* Depoimentos em texto */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 0 40px;
}
.quote-card {
  margin: 0;
  background: var(--off-white);
  border: 1px solid #dde3ee;
  border-radius: var(--radius);
  padding: 30px 24px 24px;
  position: relative;
}
.quote-mark {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: rgba(0,195,195,.35);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.quote-card p { color: #33415c; font-size: .95rem; margin: 0; }
.quote-card strong { color: var(--navy); }

/* Carrossel de prints reais */
.proof-carousel { margin: 48px 0; }
.proof-carousel h3 { margin-bottom: 6px; }
.pc-viewport {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
  margin-top: 24px;
  box-shadow: 0 20px 50px rgba(7,23,49,.18);
}
.pc-track {
  display: flex;
  transition: transform .5s cubic-bezier(.22,.7,.2,1);
  touch-action: pan-y;
  cursor: grab;
}
.pc-track:active { cursor: grabbing; }
.pc-slide { flex: 0 0 100%; margin: 0; }
.pc-slide img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top;
  display: block;
  pointer-events: none;
  user-select: none;
}
.pc-slide figcaption {
  padding: 16px 22px;
  color: var(--off-white);
  font-size: .92rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pc-badge {
  background: rgba(0,195,195,.15);
  color: var(--teal);
  font-weight: 700;
  font-size: .68rem;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
}
.pc-badge-ml { background: rgba(255,224,63,.18); color: #ffe03f; }
.pc-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 20px;
}
.pc-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid #dde3ee;
  background: var(--off-white);
  color: var(--navy);
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .15s ease, color .15s ease, transform .15s ease;
}
.pc-arrow:hover { border-color: var(--teal); color: var(--teal-dark); transform: translateY(-1px); }
.pc-dots { display: flex; gap: 8px; }
.pc-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: #c7cedb;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width .25s ease, background .25s ease;
}
.pc-dot.active { background: var(--teal); width: 24px; }

@media (max-width: 720px) {
  .pc-slide img { height: 220px; }
}

.video-testimonials { margin-top: 56px; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; }
.video-real {
  aspect-ratio: 9/16;
  width: 100%;
  background: var(--navy);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(7,23,49,.25);
}
.video-placeholder {
  aspect-ratio: 9/16;
  background: var(--navy-light);
  border: 2px dashed rgba(0,195,195,.35);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  gap: 14px;
}
.play-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(0,195,195,.15);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}

/* Quem somos */
.quem-somos-inner {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.brand-panel {
  aspect-ratio: 1;
  background: radial-gradient(circle at 50% 35%, #10305e 0%, var(--navy) 70%);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 48px;
  text-align: center;
}
.brand-panel-icon { width: 75%; max-width: 320px; }
.brand-panel p {
  color: var(--text-muted);
  font-size: .95rem;
  font-weight: 500;
  max-width: 280px;
  margin: 0;
}
.stats-row {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px 24px;
  padding: 0;
  margin-top: 28px;
}
.stats-row li { display: flex; flex-direction: column; }
.stats-row strong { font-family: var(--font-heading); font-size: 1.3rem; color: var(--navy); }
.stats-row span { font-size: .78rem; color: #5b6b85; }

/* Metodo */
.metodo-pipeline {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-top: 40px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.metodo-card {
  background: var(--navy);
  color: var(--off-white);
  border-radius: var(--radius);
  padding: 28px 22px;
  min-width: 200px;
  flex: 1;
}
.metodo-card h3 { color: var(--teal); }
.metodo-card p { color: var(--text-muted); font-size: .9rem; margin: 0; }
.metodo-highlight { background: var(--teal); color: var(--navy); }
.metodo-highlight h3 { color: var(--navy); }
.metodo-highlight p { color: rgba(7,23,49,.75); }
.metodo-num {
  display: inline-flex;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(0,195,195,.15);
  color: var(--teal);
  align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: .85rem;
  margin-bottom: 14px;
}
.metodo-highlight .metodo-num { background: rgba(7,23,49,.15); color: var(--navy); }
.metodo-arrow { display: flex; align-items: center; color: #b7c0cf; font-size: 1.4rem; }

/* Carousel */
.carousel { margin-top: 32px; }
.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
}
.carousel-card {
  scroll-snap-align: start;
  min-width: 280px;
  background: var(--off-white);
  border: 1px solid #dde3ee;
  border-radius: var(--radius);
  padding: 28px 24px;
}
.carousel-num { font-family: var(--font-heading); font-weight: 800; font-size: 1.6rem; color: rgba(0,195,195,.5); }
.carousel-card h3 { margin-top: 8px; }
.carousel-card p { color: #4a5872; font-size: .92rem; margin: 0; }

/* Form */
.form-section { background: var(--navy); color: var(--off-white); }
.form-container { max-width: 720px; }
.form-intro { text-align: center; margin-bottom: 36px; }
.form-intro p { color: var(--text-muted); }
.lead-form {
  background: var(--navy-light);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid rgba(255,255,255,.08);
}
.form-row { margin-bottom: 20px; }
.form-row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.lead-form label { display: block; margin-bottom: 8px; font-size: .9rem; font-weight: 500; color: var(--off-white); }
.lead-form input, .lead-form select {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.04);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: .95rem;
}
.lead-form select option { background: var(--navy-light); color: var(--off-white); }
.lead-form input:focus, .lead-form select:focus { outline: 2px solid var(--teal); border-color: transparent; }
.form-disclaimer { font-size: .78rem; color: var(--text-muted); text-align: center; margin: 14px 0 0; }
.form-success {
  background: var(--navy-light);
  border: 1px solid rgba(0,195,195,.4);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
}
.form-success h3 { color: var(--teal); }

/* FAQ */
.faq-list { margin-top: 32px; max-width: 760px; }
.faq-item { border-bottom: 1px solid #dde3ee; }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-icon { color: var(--teal-dark); font-size: 1.3rem; transition: transform .2s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.faq-answer p { color: #4a5872; padding-bottom: 18px; margin: 0; }
.faq-item.open .faq-answer { max-height: 200px; }

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, var(--teal) 0%, #00e0d0 100%);
  color: var(--navy);
  text-align: center;
  padding: 80px 0;
}
.final-cta h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); max-width: 720px; margin-left: auto; margin-right: auto; }
.final-cta p { max-width: 560px; margin: 0 auto 32px; font-weight: 500; }
.final-cta .btn-primary { background: var(--navy); color: var(--off-white); }
.final-cta .btn-primary:hover { background: #0d2547; }

/* Footer */
.site-footer { background: var(--navy); color: var(--text-muted); padding: 40px 0; }
.footer-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-logo { height: 34px; border-radius: 6px; }
.footer-links { display: flex; gap: 20px; margin-left: auto; }
.footer-links a:hover { color: var(--teal); }
.footer-copy { width: 100%; font-size: .8rem; margin: 16px 0 0; color: #64749a; }

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 54px;
  height: 54px;
  background: #25D366;
  color: #fff;
  border: 3px solid var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(0,0,0,.3);
  z-index: 90;
  animation: pulse 2.4s infinite;
}
@media (max-width: 720px) {
  .whatsapp-float { width: 48px; height: 48px; bottom: 14px; right: 14px; }
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5), 0 10px 28px rgba(0,0,0,.3); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0), 0 10px 28px rgba(0,0,0,.3); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 10px 28px rgba(0,0,0,.3); }
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .quem-somos-inner { grid-template-columns: 1fr; }
  .growth-grid, .quote-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-badges { grid-template-columns: repeat(2, auto); }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .btn-nav { display: none; }
  .section { padding: 60px 0; }
  .form-row-split { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .lead-form { padding: 24px; }
  .hero { padding: 48px 0 64px; }
}

@media (max-width: 460px) {
  .trust-badges { grid-template-columns: repeat(2, 1fr); }
}

/* Reveal ao rolar */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
