/* ==========================================================================
   SOLLUÇÃO — Design System
   Paleta oficial: navy #061F35 · gold #DBA958 · blue #4268C1
   ========================================================================== */

:root {
  --navy: #061F35;
  --navy-2: #0C1F33;
  --navy-3: #203D5A;
  --gold: #DBA958;
  --gold-light: #ECC98A;
  --blue: #4268C1;
  --blue-light: #6E8FD8;
  --ice: #E1E5EB;
  --bg: #FFFFFF;
  --bg-soft: #F6F8FB;
  --text: #20232B;
  --text-soft: #5A6372;
  --white: #FFFFFF;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px -18px rgba(6, 31, 53, .25);
  --shadow-soft: 0 10px 30px -12px rgba(6, 31, 53, .15);
  --transition: .45s cubic-bezier(.22, .8, .3, 1);
  --container: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(var(--container), 92%);
  margin-inline: auto;
}

::selection { background: var(--gold); color: var(--navy); }

/* ------------------------------------------------------------------ */
/* Tipografia                                                          */
/* ------------------------------------------------------------------ */
h1, h2, h3, h4 { line-height: 1.18; color: var(--navy); font-weight: 800; }
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); letter-spacing: -.01em; }
h3 { font-size: 1.25rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  width: 34px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.lead { font-size: 1.08rem; color: var(--text-soft); max-width: 60ch; }

.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.text-center .lead { margin-inline: auto; }

/* ------------------------------------------------------------------ */
/* Botões                                                              */
/* ------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .95rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn svg { transition: transform .35s ease; }
.btn:hover svg { transform: translateX(5px); }

.btn-gold {
  background: linear-gradient(120deg, var(--gold), #C9923D);
  color: var(--navy);
  box-shadow: 0 12px 30px -10px rgba(219, 169, 88, .6);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 38px -10px rgba(219, 169, 88, .75); }

.btn-outline {
  border-color: rgba(255, 255, 255, .4);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-navy:hover { background: var(--navy-3); transform: translateY(-3px); }

/* brilho deslizante */
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.5) 50%, transparent 65%);
  transform: translateX(-110%);
  transition: transform .7s ease;
}
.btn-gold:hover::after { transform: translateX(110%); }

/* ------------------------------------------------------------------ */
/* Header                                                              */
/* ------------------------------------------------------------------ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: var(--transition);
}
/* o blur fica num pseudo-elemento: backdrop-filter no próprio header
   tornaria ele o containing block do menu mobile (position:fixed) */
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(6, 31, 53, .92);
  backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity .45s ease;
}
.site-header.scrolled {
  padding: .55rem 0;
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, .5);
}
.site-header.scrolled::before { opacity: 1; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo img { height: 44px; width: auto; transition: var(--transition); }
.site-header.scrolled .logo img { height: 36px; }

.main-nav { display: flex; align-items: center; gap: 1.6rem; }
.main-nav > li { position: relative; }
.main-nav a {
  color: rgba(255, 255, 255, .85);
  font-size: .86rem;
  font-weight: 600;
  padding: .5rem 0;
  position: relative;
}
.main-nav > li > a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.main-nav > li > a:hover::after,
.main-nav > li.active > a::after { transform: scaleX(1); }

.has-dropdown > a span { font-size: .6rem; margin-left: .3rem; display: inline-block; transition: transform .3s; }
.has-dropdown:hover > a span { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  translate: -50% 0;
  min-width: 230px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: .6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -14px; left: 0; right: 0; height: 14px;
}
.has-dropdown:hover .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: block;
  color: var(--navy);
  padding: .65rem .9rem;
  border-radius: 8px;
  font-weight: 600;
}
.dropdown a:hover { background: var(--bg-soft); color: var(--blue); padding-left: 1.15rem; }
.dropdown a small { display: block; font-weight: 500; color: var(--text-soft); font-size: .74rem; }

.header-cta { display: flex; align-items: center; gap: .9rem; }
.header-cta-mobile { display: none; }
.header-cta .login {
  color: rgba(255,255,255,.85);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .06em;
}
.header-cta .login:hover { color: var(--gold); }
.header-cta .btn { padding: .65rem 1.4rem; font-size: .8rem; }

.nav-close { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 42px; height: 42px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  align-items: center;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ------------------------------------------------------------------ */
/* Hero                                                                */
/* ------------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 9rem 0 6rem;
  background: radial-gradient(1100px 600px at 80% -10%, #16395C 0%, var(--navy) 55%, #04111E 100%);
  color: var(--white);
  overflow: hidden;
}
.hero.hero-sub { min-height: 72vh; }

.hero h1 { color: var(--white); }
.hero .lead { color: rgba(255, 255, 255, .75); }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

.hero-media { position: relative; }
.hero-media img {
  border-radius: var(--radius);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .6);
  animation: float 7s ease-in-out infinite;
}
.hero-media::before {
  content: '';
  position: absolute;
  inset: -8%;
  background: radial-gradient(closest-side, rgba(219,169,88,.22), transparent 70%);
  z-index: -1;
  animation: pulseGlow 5s ease-in-out infinite;
}

/* blobs animados */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .5;
  pointer-events: none;
  z-index: 1;
}
.blob-gold { width: 420px; height: 420px; background: rgba(219,169,88,.28); top: -120px; right: -100px; animation: drift 16s ease-in-out infinite; }
.blob-blue { width: 520px; height: 520px; background: rgba(66,104,193,.3); bottom: -200px; left: -160px; animation: drift 20s ease-in-out infinite reverse; }

/* grade tecnológica sutil */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(900px 500px at 70% 30%, #000 0%, transparent 75%);
  pointer-events: none;
}

/* palavra rotativa */
.word-rotate {
  display: inline-grid;
  vertical-align: top;
  overflow: hidden;
  color: var(--gold);
}
.word-rotate span {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(110%);
  transition: opacity .5s ease, transform .55s cubic-bezier(.22,.8,.3,1);
  white-space: nowrap;
}
.word-rotate span.on { opacity: 1; transform: translateY(0); }
.word-rotate span.off { opacity: 0; transform: translateY(-110%); }

/* Ecossistema animado (SVG) */
.ecosystem-wrap { position: relative; }
.ecosystem-wrap::before {
  content: '';
  position: absolute;
  inset: -6%;
  background: radial-gradient(closest-side, rgba(219,169,88,.18), transparent 70%);
  animation: pulseGlow 5s ease-in-out infinite;
}
.ecosystem-wrap svg { width: 100%; height: auto; display: block; }
.eco-orbit {
  transform-origin: 250px 250px;
  animation: spin 40s linear infinite;
}
.eco-center { transform-origin: 250px 250px; animation: ecoBreath 5s ease-in-out infinite; }
@keyframes ecoBreath { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.035); } }
.eco-seg { transition: filter .4s ease, opacity .4s ease; }
.eco-seg:hover { filter: brightness(1.35); }

/* Figuras animadas (dashboard, app, rede) */
.fig-wrap svg { width: 100%; height: auto; display: block; }
.fig-wrap.split-media::after { display: none; }
.fig-float {
  animation: figFloat 6s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes figFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.fig-spin {
  animation: spin 26s linear infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.net-line { animation: figFlow 1.1s linear infinite; stroke-dasharray: 5 9; }
@keyframes figFlow { to { stroke-dashoffset: -14; } }
.fig-bar {
  animation: figBar 3.2s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: bottom;
}
@keyframes figBar { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(.55); } }
.fig-kpi {
  animation: figKpi 3s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: left;
}
@keyframes figKpi { 0%, 100% { transform: scaleX(1); } 50% { transform: scaleX(.55); } }
.fig-line {
  stroke-dasharray: 420;
  animation: figDraw 7s ease-in-out infinite;
}
@keyframes figDraw {
  0% { stroke-dashoffset: 420; }
  45%, 85% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}
.fig-blink { animation: figBlink 1.6s ease-in-out infinite; }
@keyframes figBlink { 0%, 100% { opacity: 1; r: 5; } 50% { opacity: .3; r: 7; } }
.fig-ring { animation: figRing 2.4s ease-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes figRing {
  0% { transform: scale(.82); opacity: 1; }
  70%, 100% { transform: scale(1.18); opacity: 0; }
}
.fig-row { animation: figRow 5.4s ease-in-out infinite; opacity: .85; }
@keyframes figRow { 0%, 100% { opacity: .65; } 25% { opacity: 1; } }
.mini-led { animation: miniLed 2.6s ease-in-out infinite; }
@keyframes miniLed { 0%, 100% { opacity: .15; } 35% { opacity: 1; } }
.mini-draw {
  stroke-dasharray: 34;
  animation: miniDraw 2.8s ease-in-out infinite;
}
@keyframes miniDraw {
  0% { stroke-dashoffset: 34; opacity: 1; }
  45%, 80% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}

/* Destaque de produtos com a Sollion no centro */
.orbit-grid {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 400px) 1fr;
  gap: 2.6rem;
  align-items: center;
  margin-top: 3.4rem;
}
.orbit-col { display: grid; gap: 2.2rem; }
.orbit-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: visible;
}
.section-navy .card .card-link { color: var(--gold-light); }
.section-navy .card .card-link:hover { color: var(--white); }
.orbit-card h3 { margin-bottom: .6rem; }
.orbit-card::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 2.6rem;
  height: 1px;
}
.orbit-col-left .orbit-card::after {
  right: -2.6rem;
  background: linear-gradient(90deg, rgba(219, 169, 88, .65), transparent);
}
.orbit-col-right .orbit-card::after {
  left: -2.6rem;
  background: linear-gradient(270deg, rgba(219, 169, 88, .65), transparent);
}
.orbit-center { max-width: 400px; margin-inline: auto; }

@media (max-width: 1024px) {
  .orbit-grid { grid-template-columns: 1fr; }
  .orbit-center { order: -1; max-width: 320px; }
  .orbit-card::after { display: none; }
}

/* destaque de produtos com ecossistema ao centro (home) */
.orbit-grid {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 400px) 1fr;
  gap: 2.4rem;
  align-items: center;
}
.orbit-col { display: grid; gap: 1.8rem; position: relative; z-index: 2; }
.orbit-center { position: relative; }
.orbit-card { position: relative; }
/* conectores em direção ao centro */
.orbit-card::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 2.2rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(219,169,88,.55), transparent);
  pointer-events: none;
}
.orbit-col-left .orbit-card::after { left: 100%; }
.orbit-col-right .orbit-card::after {
  right: 100%;
  background: linear-gradient(270deg, rgba(219,169,88,.55), transparent);
}

@media (max-width: 1024px) {
  .orbit-grid { grid-template-columns: 1fr; }
  .orbit-center { order: -1; max-width: 380px; margin-inline: auto; }
  .orbit-card::after { display: none; }
}

/* ponte Company (seção exclusiva da home) */
.bridge-card { cursor: pointer; transition: filter .35s ease; }
.bridge-card:hover { filter: url(#figShadow) brightness(1.35); }

/* Plataforma Sollução — slideshow com telas reais */
.plat-show {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #0A1F33;
  box-shadow: 0 40px 80px -28px rgba(0, 0, 0, .65);
  border: 1px solid rgba(219, 169, 88, .35);
}
.plat-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 16px;
  background: #061F35;
}
.plat-bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.plat-bar span:nth-child(1) { background: var(--gold); }
.plat-bar span:nth-child(2) { background: var(--blue); }
.plat-bar span:nth-child(3) { background: rgba(255, 255, 255, .3); }
.plat-bar em {
  margin-inline: auto;
  font-style: normal;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
  letter-spacing: .04em;
}
.plat-bar em strong { color: var(--gold); font-style: italic; }
.plat-frames {
  position: relative;
  aspect-ratio: 1400 / 770;
}
.plat-frames img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  opacity: 0;
  animation: platFade 20s infinite;
}
.plat-frames img:nth-child(1) { animation-delay: 0s; }
.plat-frames img:nth-child(2) { animation-delay: 5s; }
.plat-frames img:nth-child(3) { animation-delay: 10s; }
.plat-frames img:nth-child(4) { animation-delay: 15s; }
@keyframes platFade {
  0% { opacity: 0; }
  3%, 25% { opacity: 1; }
  31%, 100% { opacity: 0; }
}
.plat-captions {
  position: absolute;
  left: 14px;
  bottom: 12px;
  height: 30px;
  pointer-events: none;
}
.plat-captions span {
  position: absolute;
  left: 0;
  bottom: 0;
  white-space: nowrap;
  background: rgba(6, 31, 53, .88);
  border: 1px solid rgba(219, 169, 88, .5);
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 700;
  padding: .38rem .85rem;
  border-radius: 999px;
  opacity: 0;
  animation: platFade 20s infinite;
}
.plat-captions span:nth-child(1) { animation-delay: 0s; }
.plat-captions span:nth-child(2) { animation-delay: 5s; }
.plat-captions span:nth-child(3) { animation-delay: 10s; }
.plat-captions span:nth-child(4) { animation-delay: 15s; }

/* modelo de negócio — núcleos interativos */
.pod { cursor: pointer; transition: filter .35s ease, opacity .35s ease; }
.pod:hover { filter: brightness(1.22); }
.pod-active { filter: drop-shadow(0 0 16px rgba(219, 169, 88, .55)); }
.model-detail {
  margin-top: 2.2rem;
  background:
    radial-gradient(600px 260px at 12% 0%, rgba(219, 169, 88, .16), transparent 65%),
    linear-gradient(140deg, var(--navy) 0%, #0E3050 100%);
  border: 1.5px solid rgba(219, 169, 88, .55);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.6rem 2.8rem;
  max-width: 920px;
  margin-inline: auto;
  min-height: 170px;
  position: relative;
  overflow: hidden;
}
.model-detail::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
}
.model-detail h3 {
  margin-bottom: .8rem;
  color: var(--gold);
  font-size: 1.35rem;
}
.model-detail p { color: rgba(255, 255, 255, .82); font-size: 1.02rem; }
.model-links { display: flex; gap: 1.8rem; flex-wrap: wrap; margin-top: 1.3rem; }
.model-detail .card-link { color: var(--gold-light); }
.model-detail .card-link:hover { color: var(--white); }

/* mini-cenas nos cards (verticais da home) */
.card-fig { margin-bottom: 1.4rem; }
.card-fig svg { width: 100%; height: auto; border-radius: 14px; display: block; }

/* ícones animados dos módulos */
.card .icon[data-anim] { color: var(--navy); }
.section-navy .card .icon[data-anim] { color: var(--gold); }
.card .icon[data-anim] svg { width: 32px; height: 32px; stroke: none; }
.card:hover .icon[data-anim] {
  background: linear-gradient(135deg, rgba(219,169,88,.16), rgba(66,104,193,.14));
}

/* scroll hint */
.scroll-hint {
  position: absolute;
  left: 50%; bottom: 26px;
  translate: -50% 0;
  z-index: 3;
  width: 26px; height: 44px;
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 14px;
}
.scroll-hint::before {
  content: '';
  position: absolute;
  top: 8px; left: 50%;
  translate: -50% 0;
  width: 4px; height: 9px;
  border-radius: 4px;
  background: var(--gold);
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot { 0%,100% { transform: translateY(0); opacity: 1; } 60% { transform: translateY(14px); opacity: 0; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes drift { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(60px, 40px) scale(1.12); } }
@keyframes pulseGlow { 0%, 100% { opacity: .7; } 50% { opacity: 1; } }

/* ------------------------------------------------------------------ */
/* Seções                                                              */
/* ------------------------------------------------------------------ */
section { padding: 5.5rem 0; position: relative; }
.section-soft { background: var(--bg-soft); }
.section-navy {
  background: linear-gradient(160deg, var(--navy) 0%, #0A2A47 100%);
  color: var(--white);
}
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy .lead { color: rgba(255,255,255,.72); }

.section-head { max-width: 720px; margin-bottom: 3.2rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }

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

.card {
  background: var(--white);
  border: 1px solid rgba(6,31,53,.07);
  border-radius: var(--radius);
  padding: 2.1rem 1.8rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }

.card .icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(219,169,88,.16), rgba(66,104,193,.14));
  font-size: 1.5rem;
  margin-bottom: 1.3rem;
  transition: var(--transition);
}
.card:hover .icon { transform: scale(1.1) rotate(-6deg); background: linear-gradient(135deg, var(--gold), #C9923D); }
.card .icon svg {
  width: 26px; height: 26px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .35s ease;
}
.section-navy .card .icon svg { stroke: var(--gold); }
.card:hover .icon svg { stroke: var(--navy); }
.card h3 { margin-bottom: .7rem; }
.card p { color: var(--text-soft); font-size: .95rem; }
.card .card-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1.2rem;
  font-weight: 700;
  font-size: .88rem;
  color: var(--blue);
}
.card .card-link:hover { gap: .7rem; color: var(--navy); }

.section-navy .card {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.1);
  backdrop-filter: blur(6px);
}
.section-navy .card h3 { color: var(--white); }
.section-navy .card p { color: rgba(255,255,255,.7); }
.section-navy .card:hover { background: rgba(255,255,255,.09); }

/* ------------------------------------------------------------------ */
/* Split (texto + mídia)                                               */
/* ------------------------------------------------------------------ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.split.reverse > .split-media { order: -1; }
.split-media { position: relative; }
.split-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.split-media::after {
  content: '';
  position: absolute;
  inset: 14% -22px -22px 14%;
  border: 2px solid rgba(219,169,88,.4);
  border-radius: var(--radius);
  z-index: -1;
  transition: var(--transition);
}
.split-media:hover::after { inset: 10% -14px -14px 10%; }

.check-list { margin-top: 1.6rem; display: grid; gap: .85rem; }
.check-list li {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  font-weight: 600;
  font-size: .96rem;
}
.check-list li::before {
  content: '✓';
  flex: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #C9923D);
  color: var(--navy);
  font-size: .8rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-top: .1rem;
}
.section-navy .check-list li { color: rgba(255,255,255,.88); }

/* ------------------------------------------------------------------ */
/* Contadores                                                          */
/* ------------------------------------------------------------------ */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat { padding: 1.2rem; }
.stat-number {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--gold);
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: .2rem;
  line-height: 1;
}
.stat-number small { font-size: .45em; font-weight: 700; }
.stat p { margin-top: .8rem; font-size: .92rem; color: rgba(255,255,255,.7); max-width: 26ch; margin-inline: auto; }
.stats-light .stat p { color: var(--text-soft); }

/* ------------------------------------------------------------------ */
/* Marquee de logos                                                    */
/* ------------------------------------------------------------------ */
.logos-strip { padding: 3.2rem 0; overflow: hidden; }
.logos-strip h4 {
  text-align: center;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 2.2rem;
}
.marquee {
  display: flex;
  gap: 4.5rem;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee:hover { animation-play-state: paused; }
.marquee img {
  height: 46px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(.55);
  transition: filter .4s ease, transform .4s ease;
}
.marquee img:hover { filter: grayscale(0) opacity(1); transform: scale(1.08); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ------------------------------------------------------------------ */
/* Timeline                                                            */
/* ------------------------------------------------------------------ */
.timeline { position: relative; max-width: 820px; margin-inline: auto; padding-left: 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--blue));
  translate: -50% 0;
}
.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 2.6rem 2.8rem;
}
.timeline-item:nth-child(odd) { left: 0; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; }
.timeline-item::before {
  content: '';
  position: absolute;
  top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 4px solid var(--navy);
  box-shadow: 0 0 0 3px rgba(219,169,88,.35);
}
.timeline-item:nth-child(odd)::before { right: -8px; }
.timeline-item:nth-child(even)::before { left: -8px; }
.timeline-year { font-size: 1.6rem; font-weight: 800; color: var(--gold); }
.timeline-item p { color: rgba(255,255,255,.75); font-size: .95rem; margin-top: .3rem; }

/* ------------------------------------------------------------------ */
/* CTA final                                                           */
/* ------------------------------------------------------------------ */
.cta-banner {
  background:
    radial-gradient(700px 320px at 15% 0%, rgba(219,169,88,.18), transparent 65%),
    linear-gradient(140deg, var(--navy) 0%, #0E3050 100%);
  border-radius: calc(var(--radius) + 8px);
  padding: 4.2rem 3.4rem;
  color: var(--white);
  display: grid;
  grid-template-columns: 1.4fr auto;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: var(--white); margin-bottom: .8rem; }
.cta-banner p { color: rgba(255,255,255,.75); max-width: 52ch; }
.cta-banner::after {
  content: '';
  position: absolute;
  right: -90px; top: -90px;
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 2px dashed rgba(219,169,88,.35);
  animation: spin 30s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ------------------------------------------------------------------ */
/* Formulários                                                         */
/* ------------------------------------------------------------------ */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.6rem;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: .4rem;
  color: var(--navy);
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: inherit;
  font-size: .94rem;
  padding: .85rem 1rem;
  border: 1.5px solid var(--ice);
  border-radius: 10px;
  background: var(--bg-soft);
  transition: var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(219,169,88,.15);
}
.field textarea { min-height: 130px; resize: vertical; }

/* ------------------------------------------------------------------ */
/* Conteúdo / blog                                                     */
/* ------------------------------------------------------------------ */
.post-card { padding: 0; display: flex; flex-direction: column; }
.post-card .thumb { display: block; overflow: hidden; aspect-ratio: 16 / 9; }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.post-card:hover .thumb img { transform: scale(1.07); }
.post-card .body { padding: 1.6rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.post-meta { display: flex; gap: .8rem; align-items: center; font-size: .76rem; color: var(--text-soft); font-weight: 600; }
.post-meta .tag {
  background: rgba(66,104,193,.1);
  color: var(--blue);
  padding: .25rem .7rem;
  border-radius: 999px;
  font-weight: 700;
}
.post-card h3 { font-size: 1.06rem; }

/* ------------------------------------------------------------------ */
/* Footer                                                              */
/* ------------------------------------------------------------------ */
.site-footer {
  background: #04111E;
  color: rgba(255,255,255,.7);
  padding: 4.5rem 0 0;
  font-size: .9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-grid h5 {
  color: var(--white);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 1.2rem;
}
.footer-grid ul { display: grid; gap: .6rem; }
.footer-grid a { transition: var(--transition); }
.footer-grid a:hover { color: var(--gold); padding-left: 4px; }
.footer-logo img { height: 42px; width: auto; margin-bottom: 1.2rem; }
.footer-units p { margin-bottom: 1rem; line-height: 1.55; }
.footer-units strong { color: var(--white); }

.social { display: flex; gap: .8rem; margin-top: 1.4rem; }
.social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: grid;
  place-items: center;
  transition: var(--transition);
}
.social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: translateY(-4px); }
.social svg { width: 17px; height: 17px; fill: currentColor; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .8rem;
}
.footer-bottom a:hover { color: var(--gold); }

/* WhatsApp flutuante */
.whats-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px -8px rgba(37,211,102,.6);
  animation: whatsPulse 2.6s ease-in-out infinite;
  transition: var(--transition);
}
.whats-float:hover { transform: scale(1.12); }
.whats-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes whatsPulse {
  0%, 100% { box-shadow: 0 14px 30px -8px rgba(37,211,102,.6), 0 0 0 0 rgba(37,211,102,.45); }
  60% { box-shadow: 0 14px 30px -8px rgba(37,211,102,.6), 0 0 0 18px rgba(37,211,102,0); }
}

/* ------------------------------------------------------------------ */
/* Animações de scroll (reveal)                                        */
/* ------------------------------------------------------------------ */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s cubic-bezier(.22,.8,.3,1), transform .8s cubic-bezier(.22,.8,.3,1);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
[data-reveal="left"]  { transform: translateX(-48px); }
[data-reveal="right"] { transform: translateX(48px); }
[data-reveal="zoom"]  { transform: scale(.88); }
[data-reveal].revealed { opacity: 1; transform: none; }

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

/* barra de progresso de leitura */
.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  z-index: 200;
}

/* ------------------------------------------------------------------ */
/* Responsivo                                                          */
/* ------------------------------------------------------------------ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hero-grid, .split { grid-template-columns: 1fr; gap: 3rem; }
  .split.reverse > .split-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { grid-template-columns: 1fr; padding: 3rem 2.2rem; }
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 2.4rem; }
  .form-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 7.5rem; }

  .nav-toggle { display: flex; }
  .nav-wrap {
    position: fixed;
    inset: 0;
    background: rgba(4, 17, 30, .98);
    backdrop-filter: blur(12px);
    display: grid;
    place-content: center;
    text-align: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
  }
  body.nav-open .nav-wrap { opacity: 1; visibility: visible; }
  .nav-wrap .nav-close {
    display: grid;
    place-items: center;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .35);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
  }
  .nav-wrap .nav-close:hover { border-color: var(--gold); color: var(--gold); transform: rotate(90deg); }
  .main-nav { flex-direction: column; gap: 1.2rem; }
  .main-nav a { font-size: 1.15rem; }
  .dropdown {
    position: static;
    translate: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    box-shadow: none;
    padding: .4rem 0 0;
  }
  .dropdown a { color: rgba(255,255,255,.65); font-size: .95rem !important; padding: .35rem; }
  .dropdown a small { display: none; }
  .header-cta-desktop { display: none; }
  .header-cta-mobile { display: flex; flex-direction: column; gap: 1rem; align-items: center; }

  .timeline::before { left: 10px; }
  .timeline-item { width: 100%; left: 0 !important; text-align: left !important; padding: 0 0 2.4rem 2.6rem; }
  .timeline-item::before { left: 2px !important; right: auto !important; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
}
