/* =========================================
   Sol Future — Design system (sans-serif, solar)
   ========================================= */

:root {
  --azul:        #1431D1;
  --azul-dark:   #0D1B8C;
  --azul-soft:   #EEF1FF;
  --sol:         #FFB02E;   /* amarelo sol */
  --sol-dark:    #F49314;
  --sol-soft:    #FFF6E5;
  --ink:         #0A1230;   /* azul-marinho profundo (não preto puro) */
  --ink-2:       #2A3454;
  --paper:       #FFFFFF;
  --paper-2:     #F6F7FB;
  --paper-3:     #ECEEF6;
  --line:        rgba(10, 18, 48, 0.10);
  --line-2:      rgba(10, 18, 48, 0.05);
  --muted:       rgba(10, 18, 48, 0.58);

  --font: 'Albert Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --container: 1280px;
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 2px 12px rgba(10,18,48,0.06);
  --shadow-md: 0 12px 36px rgba(10,18,48,0.10);
  --shadow-lg: 0 24px 60px rgba(10,18,48,0.18);
  --shadow-blue: 0 12px 36px rgba(20,49,209,0.28);
}

/* ----- Reset ----- */
* { box-sizing: border-box; margin: 0; padding: 0; }
*, *::before, *::after { -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--azul); color: #fff; }

.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ----- Tipografia (só sans, com peso 300 e 800) ----- */
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
}

.section-title {
  font-size: clamp(34px, 4.8vw, 64px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.section-title .accent      { color: var(--azul); }
.section-title .accent-sol  { color: var(--sol); }
.section-title-light        { color: #fff; }
.section-title-light .accent { color: var(--sol); }
.section-title-light .accent-sol { color: var(--sol); }

.section-lede {
  font-size: clamp(15px, 1.05vw, 17px);
  color: var(--muted);
  line-height: 1.6;
  max-width: 44ch;
}
.section-lede-light { color: rgba(255,255,255,0.72); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 28px;
}
.eyebrow .ey-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sol);
  box-shadow: 0 0 0 4px rgba(255,176,46,0.18);
}
.eyebrow-light { color: #fff; }

.section-head { margin-bottom: 64px; }
.section-head.two {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: end;
}

/* ----- Reveal ----- */
.reveal-base { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-base.in { opacity: 1; transform: none; }

/* ----- Botões ----- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 24px;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.005em;
  border: 1.5px solid transparent;
  transition: background 0.3s var(--ease), color 0.3s var(--ease),
              transform 0.2s var(--ease), border-color 0.3s var(--ease),
              box-shadow 0.3s var(--ease);
  white-space: nowrap;
}
.btn svg { transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--azul);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover { background: var(--azul-dark); transform: translateY(-2px); box-shadow: 0 16px 44px rgba(20,49,209,0.4); }

.btn-ghost-light {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn-ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--sol); color: var(--ink); }

.btn-sol { background: var(--sol); color: var(--ink); }
.btn-sol:hover { background: #fff; color: var(--ink); }

.btn-inline { align-self: flex-start; margin-top: 12px; }
.btn-form { width: 100%; justify-content: center; padding: 18px 28px; }

/* ----- Navbar ----- */
.nav {
  position: fixed; top: 16px; left: 0; right: 0;
  z-index: 100;
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 32px;
  padding: 14px 22px 14px 36px;   /* preenchimento interno: + esq, + dir */
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.scrolled .nav-inner {
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow-sm);
}

.nav-brand {
  display: inline-flex; align-items: center;
  padding: 4px 0;
}
.nav-logo {
  height: 38px;
  width: auto;
  display: block;
  transition: transform 0.3s var(--ease);
}
.nav-brand:hover .nav-logo { transform: scale(1.03); }

.nav-links { display: flex; gap: 8px; justify-content: center; }
.nav-links a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.25s, color 0.25s;
}
.nav-links a:hover { background: var(--azul-soft); color: var(--azul); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 18px;
  background: var(--azul);
  color: #fff;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  transition: background 0.3s var(--ease), transform 0.2s var(--ease);
}
.nav-cta:hover { background: var(--azul-dark); transform: translateY(-1px); }
.nav-cta svg { transition: transform 0.3s var(--ease); }
.nav-cta:hover svg { transform: translateX(3px); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--azul);
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 16px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* ===========================================
   DRAWER LATERAL (mobile)
   =========================================== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 18, 48, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  z-index: 200;
  transition: opacity 0.4s var(--ease);
}
.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(86vw, 380px);
  background: #fff;
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: -20px 0 60px rgba(10, 18, 48, 0.25);
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
}
.drawer.open { transform: translateX(0); }

/* Decoração — círculo amarelo desbotado no canto */
.drawer::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,176,46,0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.drawer-head {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--line);
}
.drawer-brand img { height: 32px; width: auto; display: block; }

.drawer-close {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--paper-2);
  color: var(--ink);
  display: inline-flex;
  align-items: center; justify-content: center;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.3s var(--ease);
}
.drawer-close:hover { background: var(--azul); color: #fff; transform: rotate(90deg); }

.drawer-nav {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  padding: 12px 16px;
  flex: 1;
}
.drawer-nav a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 20px 16px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), padding-left 0.25s var(--ease);
  min-height: 56px;
}
.drawer-nav a .dn-idx {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.12em;
  font-variant-numeric: tabular-nums;
}
.drawer-nav a .dn-arrow {
  font-size: 18px;
  color: var(--azul);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.drawer-nav a:hover,
.drawer-nav a:active,
.drawer-nav a:focus-visible {
  background: var(--azul-soft);
  color: var(--azul);
  padding-left: 22px;
  outline: none;
}
.drawer-nav a:hover .dn-arrow,
.drawer-nav a:active .dn-arrow,
.drawer-nav a:focus-visible .dn-arrow { opacity: 1; transform: translateX(0); }
.drawer-nav a:hover .dn-idx { color: var(--azul); }

.drawer-cta {
  position: relative; z-index: 1;
  padding: 8px 24px 24px;
}
.drawer-btn {
  width: 100%;
  justify-content: center;
  padding: 18px 22px;
  font-size: 15px;
}

.drawer-foot {
  position: relative; z-index: 1;
  background: var(--paper-2);
  padding: 24px;
  display: flex; flex-direction: column;
  gap: 18px;
  border-top: 1px solid var(--line);
}
.drawer-foot-block {
  display: flex; flex-direction: column;
  gap: 4px;
}
.dfb-label {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
}
.drawer-foot-block a,
.drawer-foot-block span {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.drawer-foot-block a {
  transition: color 0.2s var(--ease);
}
.drawer-foot-block a:hover { color: var(--azul); }

/* Trava scroll do body quando drawer aberto */
body.drawer-open {
  overflow: hidden;
  touch-action: none;
}

/* ===========================================
   HERO — foto fullscreen com overlay azul
   =========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 110px 0 56px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #0A1230;
}
.hero-bg img,
.hero-bg .hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 1.2s var(--ease);
  display: block;
}
.hero-video { pointer-events: none; }
.hero-overlay {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,18,48,0.55) 0%, rgba(10,18,48,0.30) 40%, rgba(10,18,48,0.75) 100%),
    linear-gradient(120deg, rgba(20,49,209,0.55) 0%, rgba(20,49,209,0) 60%);
}

.hero-inner { position: relative; z-index: 2; }

.hero-meta {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-meta .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sol);
  box-shadow: 0 0 0 4px rgba(255,176,46,0.25);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.3); } }

.hero-title {
  font-size: clamp(40px, 5.4vw, 82px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  max-width: 18ch;
  color: #fff;
}
.hero-title .accent-sol   { color: var(--sol); }
.hero-title .accent-light { color: rgba(255,255,255,0.55); font-weight: 300; }

.hero-lede {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.55;
  max-width: 56ch;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}
.hero-lede strong { color: var(--sol); font-weight: 700; }

.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.18);
  max-width: 680px;
}
.hero-stats li {
  display: flex; flex-direction: column; gap: 6px;
  padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,0.18);
}
.hero-stats li:last-child { border-right: none; }
.hero-stats li:not(:first-child) { padding-left: 24px; }
.hero-stats strong {
  font-size: clamp(28px, 2.8vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
  display: inline-flex;
  align-items: baseline;
}
.hero-stats strong span {
  font-size: 0.5em;
  margin-left: 3px;
  color: var(--sol);
  font-weight: 700;
}
.hero-stats .lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
  line-height: 1.35;
  font-weight: 500;
}

.hero-scroll {
  position: absolute;
  bottom: 28px; right: 32px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero-scroll svg { transform: rotate(180deg); }

/* ===========================================
   Ticker strip (entre seções)
   =========================================== */
.ticker-strip {
  background: var(--azul);
  color: #fff;
  padding: 18px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ticker-track {
  display: flex; align-items: center;
  gap: 28px;
  width: max-content;
  white-space: nowrap;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 600;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  animation: ticker-scroll 40s linear infinite;
}
.ticker-track i {
  font-style: normal;
  color: var(--sol);
  font-size: 0.9em;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===========================================
   Números
   =========================================== */
.numbers {
  background: var(--paper);
  padding: 120px 0;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.num-item {
  padding: 48px 28px 36px 0;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column;
  gap: 14px;
}
.num-item:last-child { border-right: none; padding-right: 0; }
.num-item:not(:first-child) { padding-left: 28px; }

.num-value {
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--azul);
  display: flex; align-items: baseline; gap: 8px;
}
.num-value sup {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  vertical-align: baseline;
}
.num-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.num-item p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 30ch;
}

/* ===========================================
   Sobre — duas imagens + badge
   =========================================== */
.about {
  background: var(--paper);
  padding: 120px 0;
  border-top: 1px solid var(--line);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}

.about-media {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  height: 580px;
}
.about-main {
  grid-column: 1 / -1;
  grid-row: 1;
  width: 100%; height: 380px;
  object-fit: cover;
  border-radius: var(--r-lg);
}
.about-sub {
  grid-column: 1;
  grid-row: 2;
  width: 100%; height: 180px;
  object-fit: cover;
  border-radius: var(--r-md);
}
.about-badge {
  grid-column: 2;
  grid-row: 2;
  background: var(--azul);
  color: #fff;
  border-radius: var(--r-md);
  padding: 22px 24px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.about-badge::after {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: var(--sol);
  border-radius: 50%;
  opacity: 0.3;
}
.bdg-num {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
  position: relative;
  z-index: 1;
}
.bdg-lbl {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: rgba(255,255,255,0.85);
  position: relative;
  z-index: 1;
}

.about-text { display: flex; flex-direction: column; gap: 22px; }
.about-text p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 52ch;
}
.about-meta {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-meta > div { display: flex; flex-direction: column; gap: 6px; }
.meta-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}
.meta-val {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}

/* ===========================================
   MVV — 3 cards com foto + número
   =========================================== */
.mvv {
  background: var(--paper-2);
  padding: 120px 0;
}
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.mvv-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.mvv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.mvv-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px 0;
}
.mvv-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--azul);
  letter-spacing: 0.08em;
}
.mvv-tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  background: var(--paper-3);
  padding: 5px 12px;
  border-radius: 999px;
}
.mvv-card > img {
  width: 100%; height: 200px;
  object-fit: cover;
  margin-top: 20px;
}
.mvv-body { padding: 28px 24px 32px; }
.mvv-body h3 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.mvv-body p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

/* ===========================================
   Serviços — fundo azul + grid cards
   =========================================== */
.services {
  background: var(--azul);
  color: #fff;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.services::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,176,46,0.18) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.services-head { margin-bottom: 64px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex; flex-direction: column;
  gap: 16px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.service-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,176,46,0.4);
  transform: translateY(-4px);
}
.srv-num {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 13px;
  font-weight: 700;
  color: var(--sol);
  letter-spacing: 0.08em;
}
.srv-img {
  width: 100%; height: 180px;
  overflow: hidden;
  border-radius: var(--r-md);
}
.srv-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-card:hover .srv-img img { transform: scale(1.08); }

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.service-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
  flex: 1;
}
.srv-tag {
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 12px;
  border-radius: 999px;
}

.service-card-cta {
  background: var(--sol);
  border-color: var(--sol);
  color: var(--ink);
  align-items: stretch;
}
.service-card-cta:hover {
  background: #fff;
  border-color: #fff;
  transform: translateY(-4px);
}
.srv-cta {
  display: flex; flex-direction: column; gap: 14px;
  justify-content: center;
  height: 100%;
  padding: 12px;
}
.srv-cta h3 { color: var(--ink); font-size: 26px; }
.srv-cta p { color: var(--ink-2); font-size: 15px; }

/* ===========================================
   Story — timeline horizontal cards
   =========================================== */
.story {
  background: var(--paper);
  padding: 140px 0;
}
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.story-card {
  display: flex; flex-direction: column;
  gap: 18px;
}
.sc-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--r-lg);
  position: relative;
}
.sc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.story-card:hover .sc-img img { transform: scale(1.05); }

.sc-year {
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--azul);
  background: var(--azul-soft);
  padding: 6px 14px;
  border-radius: 999px;
  align-self: flex-start;
}
.story-card h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.story-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

/* ===========================================
   Banner CTA com foto
   =========================================== */
.banner-cta {
  position: relative;
  padding: 140px 0;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.banner-bg { position: absolute; inset: 0; z-index: -2; }
.banner-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}
.banner-overlay {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,18,48,0.7) 0%, rgba(20,49,209,0.7) 100%);
}
.banner-inner {
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.banner-title {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #fff;
  max-width: 16ch;
}
.banner-title .accent-sol { color: var(--sol); }

/* ===========================================
   Marcas
   =========================================== */
.brands {
  background: var(--paper);
  padding: 120px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.brands-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 72px;
}

.marquee {
  width: 100%;
  overflow: hidden;
  padding: 16px 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.marquee-track {
  display: flex; align-items: center; gap: 80px;
  width: max-content;
  animation: marquee-scroll 50s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img {
  height: 42px; width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.3s var(--ease);
}
.marquee-track img:hover { filter: grayscale(0) opacity(1); }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===========================================
   CTA + Formulário
   =========================================== */
.cta {
  background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
  padding: 120px 0;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.cta-text { display: flex; flex-direction: column; gap: 22px; }
.cta-text p {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 46ch;
}
.cta-text p strong { color: var(--ink); font-weight: 700; }

.cta-bullets {
  display: flex; flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.cta-bullets li {
  display: flex; gap: 14px; align-items: center;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.cta-bullets li::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sol);
  flex-shrink: 0;
}
.cta-bullets li strong { font-weight: 700; color: var(--azul); }

.cta-image {
  margin-top: 24px;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.cta-image img { width: 100%; height: 100%; object-fit: cover; }

.cta-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 40px;
  display: flex; flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}
.form-title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.form-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.field input {
  background: var(--paper-2);
  border: 1.5px solid transparent;
  border-radius: 10px;
  padding: 14px 16px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.25s var(--ease), background 0.25s;
}
.field input::placeholder { color: rgba(10,18,48,0.35); }
.field input:focus {
  outline: none;
  background: #fff;
  border-color: var(--azul);
}
.field input.invalid { border-color: #e25;  }

.form-feedback {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  min-height: 20px;
  color: var(--muted);
}
.form-feedback.success { color: #1f9d55; }
.form-feedback.error   { color: #e25; }
.form-note {
  font-size: 12px;
  text-align: center;
  color: var(--muted);
  margin-top: -4px;
}

/* ===========================================
   Footer
   =========================================== */
.foot {
  background: var(--ink);
  color: #fff;
  padding: 100px 0 28px;
}
.foot-tagline {
  font-size: clamp(40px, 6.5vw, 96px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 56px;
  display: flex; flex-direction: column;
}
.foot-tagline .accent { color: var(--sol); }

.foot-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
.foot-col-brand .foot-brand {
  display: inline-block;
  margin-bottom: 22px;
}
.foot-logo {
  height: 72px;
  width: auto;
  /* logo azul vira branca no footer escuro */
  filter: brightness(0) invert(1);
  opacity: 0.95;
  transition: opacity 0.3s var(--ease);
}
.foot-brand:hover .foot-logo { opacity: 1; }
.foot-col p {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
}
.foot-col h4 {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sol);
  margin-bottom: 14px;
}
.foot-list li { padding: 8px 0; font-size: 15px; }
.foot-list li a {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  transition: color 0.2s;
}
.foot-list li a:hover { color: var(--sol); }
.foot-map {
  width: 100%;
  height: 160px;
  border: 0;
  border-radius: 12px;
  filter: grayscale(0.4) brightness(0.9);
}
.foot-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.foot-credit {
  color: var(--sol);
  font-weight: 600;
  transition: color 0.2s var(--ease), letter-spacing 0.2s var(--ease);
}
.foot-credit:hover { color: #fff; letter-spacing: 0.08em; }

/* ===========================================
   Float WhatsApp
   =========================================== */
.float-whats {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 36px rgba(37,211,102,0.45);
  z-index: 90;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.float-whats:hover { transform: scale(1.1); box-shadow: 0 20px 50px rgba(37,211,102,0.6); }

/* ===========================================
   Focus
   =========================================== */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--azul);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===========================================
   Responsive
   =========================================== */
/* =========================================
   RESPONSIVE — Tablet (<= 1100px)
   ========================================= */
@media (max-width: 1100px) {
  .about-grid, .cta-grid, .brands-head, .section-head.two {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .section-title { max-width: none; }
  .about-media { height: 460px; }
  .services-grid, .story-grid, .mvv-grid { grid-template-columns: 1fr 1fr; }
  .service-card-cta { grid-column: span 2; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .num-item:nth-child(2) { border-right: none; padding-right: 0; }
  .num-item:nth-child(3) { padding-left: 0; }
  .num-item:nth-child(3), .num-item:nth-child(4) { border-top: 1px solid var(--line); padding-top: 36px; margin-top: 16px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .cta-form { position: static; }
}

/* =========================================
   RESPONSIVE — Mobile (<= 768px)
   ========================================= */
@media (max-width: 768px) {
  /* ---- Globais ---- */
  body { font-size: 15.5px; -webkit-text-size-adjust: 100%; }
  .wrap { padding: 0 20px; }

  /* ============ NAVBAR MOBILE — refeita ============ */
  .nav {
    top: 14px;
    left: 14px;
    right: 14px;
  }
  .nav .wrap {
    padding: 0;
    max-width: none;
  }
  .nav-links,
  .nav-cta { display: none; }

  .nav-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    grid-template-columns: none !important;
    gap: 0 !important;
    width: 100% !important;
    height: 72px !important;
    padding: 0 36px 0 56px !important;   /* top right bottom left — esq >> raio (36px) */
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(10, 18, 48, 0.06);
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(10, 18, 48, 0.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  .nav.scrolled .nav-inner {
    background: #fff;
    box-shadow: 0 12px 36px rgba(10, 18, 48, 0.22);
  }

  .nav-brand {
    display: inline-flex;
    align-items: center;
    height: 100%;
    flex: 0 0 auto;
  }
  .nav-logo {
    height: 44px;
    width: auto;
    display: block;
  }

  .nav-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 50%;
    background: var(--azul);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    margin: 0;
  }
  .nav-toggle span { width: 18px; height: 2px; }

  /* ---- Tipografia escalonada ---- */
  .section-title       { font-size: clamp(28px, 7.5vw, 38px); letter-spacing: -0.03em; }
  .section-head        { margin-bottom: 40px; }
  .section-head.two    { gap: 32px; }
  .section-lede        { font-size: 15px; }
  .eyebrow             { font-size: 11px; margin-bottom: 20px; }

  /* ---- Hero ---- */
  .hero {
    padding: 100px 0 50px;
    min-height: 100vh;
    min-height: 100dvh; /* iOS Safari URL bar */
  }
  .hero-meta {
    margin-bottom: 24px;
    padding: 7px 12px;
    font-size: 10.5px;
    letter-spacing: 0.14em;
  }
  .hero-title {
    font-size: clamp(38px, 11vw, 60px);
    line-height: 1;
    letter-spacing: -0.035em;
    margin-bottom: 22px;
  }
  .hero-lede {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 28px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-bottom: 48px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 17px 22px;
    font-size: 15px;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding-top: 22px;
  }
  .hero-stats li {
    padding: 14px 12px !important;
    border-right: none !important;
  }
  .hero-stats li:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.18) !important; }
  .hero-stats li:nth-child(1),
  .hero-stats li:nth-child(2)    { border-bottom: 1px solid rgba(255,255,255,0.18); }
  .hero-stats strong { font-size: 28px; }
  .hero-stats .lbl   { font-size: 11.5px; line-height: 1.35; }
  .hero-scroll { display: none; }

  /* ---- Ticker strip ---- */
  .ticker-strip { padding: 14px 0; }
  .ticker-track { font-size: 15px; gap: 20px; }

  /* ---- Padding seções ---- */
  .numbers, .mvv, .about, .services, .story, .brands, .cta, .banner-cta {
    padding: 72px 0;
  }

  /* ---- Números ---- */
  .num-value { font-size: 56px; }
  .num-value sup { font-size: 11px; }
  .num-item h3 { font-size: 14.5px; }
  .num-item p  { font-size: 13.5px; }

  /* ---- Sobre ---- */
  .about-grid { gap: 36px; }
  .about-media {
    height: auto;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .about-main {
    grid-column: 1 / -1;
    height: 240px;
  }
  .about-sub  { height: 140px; }
  .about-badge { padding: 16px 18px; }
  .bdg-num { font-size: 30px; }
  .bdg-lbl { font-size: 11.5px; }
  .about-text p { font-size: 15px; }
  .about-meta { grid-template-columns: 1fr 1fr; gap: 18px 20px; padding: 18px 0; }

  /* ---- MVV ---- */
  .mvv-grid { grid-template-columns: 1fr; gap: 18px; }
  .mvv-head { padding: 16px 18px 0; }
  .mvv-card > img { height: 180px; margin-top: 14px; }
  .mvv-body { padding: 20px 18px 24px; }
  .mvv-body h3 { font-size: 22px; }
  .mvv-body p  { font-size: 14.5px; }

  /* ---- Serviços ---- */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card-cta { grid-column: span 1; }
  .service-card { padding: 20px; }
  .srv-num { top: 20px; right: 20px; font-size: 12px; }
  .srv-img { height: 160px; }
  .service-card h3 { font-size: 20px; }
  .service-card p  { font-size: 14px; }
  .srv-cta h3 { font-size: 22px; }

  /* ---- Trajetória ---- */
  .story-grid { grid-template-columns: 1fr; gap: 28px; }
  .story-card h3 { font-size: 22px; }
  .sc-img { aspect-ratio: 16 / 10; }

  /* ---- Banner CTA ---- */
  .banner-cta { padding: 90px 0; }
  .banner-title {
    font-size: clamp(28px, 8vw, 40px);
    max-width: none;
  }
  .banner-inner .btn { padding: 17px 26px; }

  /* ---- Marcas ---- */
  .brands { padding: 64px 0 56px; }
  .marquee-track { gap: 56px; }
  .marquee-track img { height: 32px; }

  /* ---- CTA + Form ---- */
  .cta-grid { gap: 40px; }
  .cta-text p { font-size: 15px; }
  .cta-bullets { gap: 10px; }
  .cta-bullets li {
    padding: 13px 16px;
    font-size: 14px;
    border-radius: 14px;
  }
  .cta-image { aspect-ratio: 16 / 10; }
  .cta-form {
    padding: 26px 22px;
    border-radius: 22px;
  }
  .form-title { font-size: 22px; }
  .form-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .field input { font-size: 16px; padding: 13px 14px; }  /* 16px evita zoom no iOS */
  .btn-form { padding: 16px 22px; }

  /* ---- Footer ---- */
  .foot { padding: 72px 0 24px; padding-bottom: max(24px, env(safe-area-inset-bottom)); }
  .foot-tagline {
    font-size: clamp(34px, 9vw, 52px);
    padding-bottom: 36px;
    margin-bottom: 36px;
  }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 36px; }
  .foot-logo { height: 56px; }
  .foot-col h4 { font-size: 11.5px; margin-bottom: 12px; }
  .foot-col p  { font-size: 14px; }
  .foot-map { height: 180px; }
  .foot-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 10.5px;
  }

  /* ---- Float WhatsApp ---- */
  .float-whats {
    width: 54px; height: 54px;
    bottom: max(18px, env(safe-area-inset-bottom));
    right: 18px;
  }
}

/* =========================================
   RESPONSIVE — Mobile pequeno (<= 480px)
   ========================================= */
@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .nav { top: 10px; left: 10px; right: 10px; }
  .nav .wrap { padding: 0; max-width: none; }
  .nav-inner {
    height: 64px !important;
    padding: 0 28px 0 48px !important;  /* esq >> raio (32px) — descola bem do canto */
    border-radius: 999px !important;
  }
  .nav-logo { height: 38px; }
  .nav-toggle {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 50%;
  }

  .hero { padding: 90px 0 40px; }
  .hero-title { font-size: clamp(34px, 11.5vw, 44px); }
  .hero-stats strong { font-size: 24px; }
  .hero-stats .lbl { font-size: 11px; }

  .ticker-track { font-size: 14px; gap: 16px; }
  .ticker-strip { padding: 12px 0; }

  .section-title { font-size: clamp(26px, 8.5vw, 32px); }

  .numbers, .mvv, .about, .services, .story, .brands, .cta { padding: 56px 0; }
  .banner-cta { padding: 72px 0; }

  .numbers-grid { grid-template-columns: 1fr; }
  .num-item { border-right: none !important; padding: 24px 0 !important; border-bottom: 1px solid var(--line); margin-top: 0 !important; border-top: none !important; }
  .num-item:last-child { border-bottom: none; }
  .num-value { font-size: 48px; }

  .about-media { grid-template-columns: 1fr; }
  .about-main, .about-sub { height: 220px; }
  .about-badge {
    grid-column: 1;
    padding: 18px 20px;
    flex-direction: row;
    gap: 18px;
    align-items: center;
  }
  .bdg-num { font-size: 32px; }
  .about-meta { grid-template-columns: 1fr; gap: 14px; }

  .mvv-card > img { height: 160px; }
  .mvv-body { padding: 18px 16px 22px; }

  .service-card { padding: 18px; }
  .srv-img { height: 150px; }

  .banner-title { font-size: clamp(26px, 8.5vw, 34px); line-height: 1.1; }

  .form-grid { grid-template-columns: 1fr; gap: 14px; }
  .cta-form { padding: 22px 18px; }

  .foot-tagline { font-size: clamp(30px, 10vw, 40px); }

  .float-whats { width: 52px; height: 52px; right: 16px; }
}

/* =========================================
   RESPONSIVE — Ultra pequeno (<= 360px)
   ========================================= */
@media (max-width: 360px) {
  .wrap { padding: 0 14px; }
  .hero-title    { font-size: 30px; }
  .hero-stats    { grid-template-columns: 1fr; }
  .hero-stats li { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.18) !important; padding: 12px 0 !important; }
  .hero-stats li:last-child { border-bottom: none !important; }
  .section-title { font-size: 26px; }
  .banner-title  { font-size: 26px; }
}

/* =========================================
   RESPONSIVE — Landscape mobile (altura baixa)
   ========================================= */
@media (max-height: 540px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 90px 0 40px; }
  .hero-title { font-size: clamp(32px, 5vw, 48px); margin-bottom: 16px; }
  .hero-lede { margin-bottom: 20px; }
  .hero-actions { margin-bottom: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal-base { opacity: 1 !important; transform: none !important; }
}
