@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --navy: #0d1f3c;
  --navy-mid: #172d50;
  --blue: #1e4fa0;
  --blue-bright: #2563d8;
  --gold: #e8a020;
  --gold-light: #f5c55a;
  --white: #ffffff;
  --off-white: #f5f7fa;
  --gray-light: #e4e9f2;
  --gray: #7a8499;
  --text: #1a2340;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%; height: 64px;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo {
  font-family: 'Manrope', sans-serif;
  font-weight: 800; font-size: 16px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.3px;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-mark {
  width: 30px; height: 30px; border-radius: 7px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900; color: var(--navy);
}

.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,0.55);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: white; }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 9px 20px; border-radius: 7px;
  font-size: 13.5px !important; font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* HERO */
.hero {
  background: var(--navy);
  padding: 120px 6% 90px;
}
.hero-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 380px; gap: 80px; align-items: center;
}

.hero-tag {
  display: inline-block;
  font-size: 11.5px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--gold);
  background: rgba(232,160,32,0.12);
  padding: 5px 12px; border-radius: 4px;
  margin-bottom: 28px;
  border: 1px solid rgba(232,160,32,0.2);
}

.hero h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 900; line-height: 1.06;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: -1.5px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-desc {
  font-size: 16.5px; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 28px; border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 14.5px; font-weight: 800;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-ghost {
  color: rgba(255,255,255,0.5);
  font-size: 14px; font-weight: 500;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.2s;
  padding: 14px 4px;
}
.btn-ghost:hover { color: rgba(255,255,255,0.85); }

.hero-stats {
  display: flex; gap: 48px;
  margin-top: 56px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-n {
  font-family: 'Manrope', sans-serif;
  font-size: 38px; font-weight: 900;
  color: var(--white); letter-spacing: -1.5px;
  line-height: 1;
}
.stat-n sup { font-size: 18px; letter-spacing: 0; }
.stat-label {
  font-size: 12px; font-weight: 400;
  color: rgba(255,255,255,0.35);
  margin-top: 7px; line-height: 1.4;
}

/* Hero panel */
.hero-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 28px;
}
.hp-label {
  font-size: 10.5px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.hp-metric-val {
  font-family: 'Manrope', sans-serif;
  font-size: 36px; font-weight: 900;
  color: white; line-height: 1; letter-spacing: -1px;
  margin-bottom: 6px;
}
.hp-metric-sub {
  font-size: 12px; color: var(--gold); font-weight: 600;
  margin-bottom: 22px;
}
.hp-bars {
  display: flex; gap: 5px; align-items: flex-end;
  height: 64px; margin-bottom: 22px;
}
.hp-bar {
  flex: 1; border-radius: 3px 3px 0 0;
  background: rgba(255,255,255,0.08);
}
.hp-bar:nth-child(1){height:35%}
.hp-bar:nth-child(2){height:52%}
.hp-bar:nth-child(3){height:40%}
.hp-bar:nth-child(4){height:70%}
.hp-bar:nth-child(5){height:48%}
.hp-bar:nth-child(6){height:90%;background:var(--gold)}
.hp-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12.5px;
}
.hp-row-label { color: rgba(255,255,255,0.38); }
.hp-row-val { font-weight: 700; color: white; }
.hp-row-val.up { color: #4ade80; }

/* LOGOS */
.logos {
  background: var(--off-white);
  padding: 32px 6%;
  border-bottom: 1px solid var(--gray-light);
}
.logos-inner { max-width: 1100px; margin: 0 auto; }
.logos-label {
  text-align: center; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: #6b7490; margin-bottom: 20px;
}
.logos-row {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}
.logo-pill {
  font-family: 'Manrope', sans-serif;
  font-size: 13px; font-weight: 700;
  color: #6b7490;
  background: white;
  border: 1.5px solid var(--gold);
  padding: 8px 18px; border-radius: 100px;
}

/* SECTIONS — base */
section { padding: 88px 6%; }
.s-inner { max-width: 1100px; margin: 0 auto; }

.s-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--blue-bright);
  margin-bottom: 14px; display: block;
}
.s-label.gold { color: var(--gold); }

.s-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800; line-height: 1.12;
  color: var(--navy); letter-spacing: -0.8px;
  margin-bottom: 14px;
}
.s-title.white { color: white; }

.s-sub {
  font-size: 15.5px; font-weight: 300; color: var(--gray);
  line-height: 1.8; max-width: 100x; margin-bottom: 52px;
}
.s-sub.white { color: rgba(255,255,255,0.45); }

/* PROBLEM */
.problem { background: var(--white); }

.problem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--gray-light);
  border: 1px solid var(--gray-light);
  border-radius: 12px; overflow: hidden;
}
.problem-item {
  background: white; padding: 32px 28px;
}
.pi-icon { font-size: 22px; margin-bottom: 14px; display: block; }
.pi-title {
  font-family: 'Manrope', sans-serif;
  font-size: 15px; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.pi-desc { font-size: 13px; color: var(--gray); line-height: 1.72; }

/* SERVICES */
.services { background: var(--navy); }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.service-card {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; padding: 28px;
  background: rgba(255,255,255,0.025);
  transition: background 0.2s, border-color 0.2s;
}
.service-card:hover {
  background: rgba(255,255,255,0.055);
  border-color: rgba(255,255,255,0.14);
}
.sc-num {
  font-family: 'Manrope', sans-serif;
  font-size: 12px; font-weight: 800; color: var(--gold);
  margin-bottom: 18px; letter-spacing: 0.5px;
}
.sc-title {
  font-family: 'Manrope', sans-serif;
  font-size: 17px; font-weight: 700; color: white; margin-bottom: 8px;
}
.sc-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.72; }

/* HOW */
.how { background: var(--off-white); }
.how-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.how-steps { display: flex; flex-direction: column; }
.how-step {
  display: flex; gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--gray-light);
}
.how-step:last-child { border-bottom: none; }
.hs-num {
  font-family: 'Manrope', sans-serif;
  font-size: 13px; font-weight: 800; color: var(--blue-bright);
  min-width: 26px; padding-top: 2px;
}
.hs-title {
  font-family: 'Manrope', sans-serif;
  font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 5px;
}
.hs-desc { font-size: 13px; color: var(--gray); line-height: 1.7; }

.how-visual {
  background: var(--navy); border-radius: 14px; padding: 36px;
  position: sticky; top: 80px;
}
.hv-label {
  font-size: 10.5px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: rgba(255,255,255,0.28);
  margin-bottom: 28px;
}
.hv-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hv-item:last-child { border-bottom: none; }
.hv-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.15); flex-shrink: 0;
}
.hv-dot.done { background: #4ade80; }
.hv-dot.active { background: var(--gold); }
.hv-text { font-size: 13.5px; color: rgba(255,255,255,0.45); flex: 1; }
.hv-text.done { color: rgba(255,255,255,0.88); }
.hv-badge {
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
  background: rgba(232,160,32,0.15); color: var(--gold);
}
.hv-badge.done { background: rgba(74,222,128,0.1); color: #4ade80; }

/* RESULTS */
.results { background: white; }
.results-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--gray-light);
  border: 1px solid var(--gray-light);
  border-radius: 12px; overflow: hidden;
  margin-top: 52px;
}
.result-card {
  background: white; padding: 36px 28px;
}
.result-num {
  font-family: 'Manrope', sans-serif;
  font-size: 46px; font-weight: 900;
  color: var(--navy); line-height: 1;
  letter-spacing: -2px; margin-bottom: 10px;
}
.result-num span { color: var(--blue-bright); }
.result-desc { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* DIFF */
.diff { background: var(--navy); }
.diff-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; overflow: hidden;
}
.diff-item {
  background: rgba(255,255,255,0.02); padding: 32px 28px;
  transition: background 0.2s;
}
.diff-item:hover { background: rgba(255,255,255,0.05); }
.di-num {
  font-family: 'Manrope', sans-serif;
  font-size: 36px; font-weight: 900;
  color: rgba(255,255,255,0.06); line-height: 1;
  letter-spacing: -2px; margin-bottom: 12px;
}
.diff-item:hover .di-num { color: var(--gold); }
.di-title {
  font-family: 'Manrope', sans-serif;
  font-size: 14px; font-weight: 700; color: white;
  margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.4px;
}
.di-desc { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.72; }

/* CLIENTES */
.clientes-track-wrap {
  width: 100%;
  margin-top: 48px;
}
.clientes-track {
  display: flex; gap: 32px; align-items: center;
  justify-content: center; flex-wrap: wrap;
}
.cliente-logo {
  width: 110px; height: 110px; border-radius: 50%;
  background: white;
  border: 1px solid var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.cliente-logo img {
  width: 80px; height: 80px;
  object-fit: contain;
}

/* FAQ */
.faq { background: white; }
.faq-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 340px 1fr; gap: 80px;
}
.faq-item {
  border-bottom: 1px solid var(--gray-light); padding: 18px 0;
}
.faq-item:first-child { padding-top: 0; }
.faq-q {
  font-family: 'Manrope', sans-serif;
  font-size: 14.5px; font-weight: 700; color: var(--navy);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--blue-bright); }
.faq-q-icon {
  font-size: 18px; color: var(--gray); flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-a {
  font-size: 13.5px; color: var(--gray); line-height: 1.72;
  margin-top: 12px; max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-item.open .faq-q-icon { transform: rotate(45deg); }

/* CTA */
.cta {
  background: var(--navy); padding: 96px 6%;
  text-align: center; position: relative; overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 350px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(232,160,32,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner { max-width: 580px; margin: 0 auto; position: relative; }
.cta-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900; line-height: 1.08;
  color: white; letter-spacing: -1.2px; margin-bottom: 16px;
}
.cta-sub {
  font-size: 15.5px; color: rgba(255,255,255,0.45);
  line-height: 1.75; margin-bottom: 38px;
}
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-outline {
  background: transparent; color: rgba(255,255,255,0.55);
  border: 1.5px solid rgba(255,255,255,0.18);
  padding: 14px 26px; border-radius: 8px;
  font-family: 'Manrope', sans-serif; font-size: 14.5px; font-weight: 600;
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.42); color: white; }
.cta-fine { margin-top: 22px; font-size: 12px; color: rgba(255,255,255,0.25); }

/* FOOTER */
footer { background: #060f1e; padding: 60px 6% 0; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px; padding-bottom: 48px;
}
.footer-brand-name {
  font-family: 'Manrope', sans-serif;
  font-size: 16px; font-weight: 800; color: white;
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.footer-brand-desc {
  font-size: 13px; color: rgba(255,255,255,0.3); line-height: 1.72; max-width: 240px;
}
.footer-col-h {
  font-family: 'Manrope', sans-serif;
  font-size: 11px; font-weight: 800; color: white;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blue);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: 13px; color: rgba(255,255,255,0.35);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: white; }
.fcr { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.fcr-icon { font-size: 13px; margin-top: 2px; flex-shrink: 0; }
.fcr-text { font-size: 12.5px; color: rgba(255,255,255,0.35); line-height: 1.5; }
.fcr-text strong { color: rgba(255,255,255,0.7); font-weight: 500; display: block; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.18); }
.footer-tag  { font-size: 12px; color: rgba(255,255,255,0.14); }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fu { opacity: 0; animation: fadeUp 0.6s ease-out forwards; }
.fu-1 { animation-delay: 0.05s; }
.fu-2 { animation-delay: 0.18s; }
.fu-3 { animation-delay: 0.32s; }
.fu-4 { animation-delay: 0.46s; }
.fu-5 { animation-delay: 0.60s; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .how-layout { grid-template-columns: 1fr; }
  .how-visual { display: none; }
  .problem-grid, .services-grid, .diff-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .faq-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
