/* ==========================================================================
   VSA Investimentos — Design System
   ========================================================================== */

@font-face { font-family: 'Ezra'; src: url('../fonts/Ezra-Light.ttf') format('truetype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Ezra'; src: url('../fonts/Ezra-LightItalic.ttf') format('truetype'); font-weight: 300; font-style: italic; font-display: swap; }
@font-face { font-family: 'Ezra'; src: url('../fonts/Ezra-Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Ezra'; src: url('../fonts/Ezra-Italic.ttf') format('truetype'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Ezra'; src: url('../fonts/Ezra-Medium.ttf') format('truetype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Ezra'; src: url('../fonts/Ezra-MediumItalic.ttf') format('truetype'); font-weight: 500; font-style: italic; font-display: swap; }
@font-face { font-family: 'Ezra'; src: url('../fonts/Ezra-SemiBold.ttf') format('truetype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Ezra'; src: url('../fonts/Ezra-SemiBoldItalic.ttf') format('truetype'); font-weight: 600; font-style: italic; font-display: swap; }
@font-face { font-family: 'Ezra'; src: url('../fonts/Ezra-Bold.ttf') format('truetype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Ezra'; src: url('../fonts/Ezra-BoldItalic.ttf') format('truetype'); font-weight: 700; font-style: italic; font-display: swap; }
@font-face { font-family: 'Ezra'; src: url('../fonts/Ezra-ExtraBold.ttf') format('truetype'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'Ezra'; src: url('../fonts/Ezra-ExtraBoldItalic.ttf') format('truetype'); font-weight: 800; font-style: italic; font-display: swap; }
@font-face { font-family: 'Ezra'; src: url('../fonts/Ezra-Black.ttf') format('truetype'); font-weight: 900; font-style: normal; font-display: swap; }
@font-face { font-family: 'Ezra'; src: url('../fonts/Ezra-BlackItalic.ttf') format('truetype'); font-weight: 900; font-style: italic; font-display: swap; }

:root {
  /* Cores oficiais da identidade VSA Investimentos */
  --navy: #0E2E5B;
  --navy-deep: #0A2245;
  --navy-soft: #173D71;
  --teal: #27C3A9;
  --teal-deep: #1DA086;
  --blue-mid: #2E78D6;
  --off-white: #F1F4F3;
  --white: #FFFFFF;
  --ink: #1A2430;
  --ink-soft: #5B6B7C;
  --line: #E5E9EE;

  /* Cores acessórias da identidade */
  --accent-slate: #7189A6;
  --accent-sage: #8FAFA8;
  --accent-sand: #D9D0C2;
  --accent-mist: #F1F4F3;

  --font-display: 'Ezra', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1180px;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow-soft: 0 20px 45px -20px rgba(14,46,91,0.25);
  --shadow-card: 0 12px 30px -14px rgba(14,46,91,0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-deep);
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--teal);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--teal); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
  color: var(--navy);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }

.on-dark, .on-dark h1, .on-dark h2, .on-dark h3, .on-dark p { color: var(--white); }

p { line-height: 1.7; color: var(--ink-soft); margin: 0; }
.lede { font-size: 1.15rem; line-height: 1.65; }

em.accent {
  font-style: italic;
  color: var(--teal-deep);
}
.on-dark em.accent { color: var(--teal); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--teal);
  color: var(--navy-deep);
  box-shadow: 0 14px 30px -12px rgba(39,195,169,0.55);
}
.btn-primary:hover { background: var(--teal-deep); color: var(--white); }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-outline-navy {
  background: transparent;
  border-color: rgba(14,46,91,0.25);
  color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 18px 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
.site-header.is-scrolled {
  background: rgba(14,46,91,0.92);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 10px 30px -18px rgba(0,0,0,0.4);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo img { height: 44px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--white);
  opacity: 0.85;
  position: relative;
  padding: 4px 0;
  transition: opacity 0.25s ease;
}
.nav-links a:hover { opacity: 1; }
.nav-links a.active { opacity: 1; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%; height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.header-actions { display: flex; align-items: center; gap: 18px; }
.header-actions .btn { padding: 12px 22px; font-size: 0.88rem; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.05);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span { width: 18px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s ease; }

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--navy-deep);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    z-index: 400;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { font-size: 1.3rem; }
  .header-actions .btn-outline-navy-mobile { display: none; }
  .nav-toggle { display: flex; z-index: 600; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-soft) 100%);
  padding: 168px 0 96px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(39,195,169,0.16) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-copy .eyebrow { margin-bottom: 22px; }
.hero-copy h1 { margin-bottom: 18px; }
.hero-copy .lede { color: rgba(255,255,255,0.78); margin-bottom: 34px; max-width: 520px; }
.hero-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

.hero-photo {
  position: relative;
}
.hero-photo-frame {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
}
.hero-photo-frame img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
  transition: transform 6s var(--ease);
}
.hero.is-loaded .hero-photo-frame img,
.hero-photo-frame:hover img { transform: scale(1); }
.hero-photo-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(200deg, transparent 55%, rgba(10,34,69,0.55) 100%);
}
.hero-photo-badge {
  position: absolute;
  left: -26px; bottom: 34px;
  background: rgba(14,46,91,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  max-width: 250px;
}
.hero-photo-badge p { color: var(--white); font-size: 0.92rem; font-style: italic; font-family: var(--font-display); line-height: 1.4; }

/* ==========================================================================
   Hero — full-bleed
   ========================================================================== */
.hero-full {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero-full-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-full-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 62% 7%;
  filter: grayscale(1) contrast(1.05);
  transform: scale(1.12) translateY(0px);
  transition: transform 1.4s var(--ease);
}
.hero-full.is-loaded .hero-full-bg img { transform: scale(1.08) translateY(0px); }
.hero-full-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,34,69,0.35) 0%, rgba(10,34,69,0.25) 40%, rgba(10,34,69,0.96) 96%),
    linear-gradient(100deg, rgba(8,24,50,0.92) 0%, rgba(10,34,69,0.55) 45%, rgba(10,34,69,0.18) 78%);
}
.hero-full-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.5;
  animation: hero-drift 12s ease-in-out infinite;
}
.hero-full-blob.b1 { width: 340px; height: 340px; background: rgba(39,195,169,0.35); top: 8%; right: 10%; animation-delay: 0s; }
.hero-full-blob.b2 { width: 220px; height: 220px; background: rgba(46,120,214,0.3); bottom: 18%; right: 28%; animation-delay: -4s; }
@keyframes hero-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-24px, 26px) scale(1.08); }
}
.hero-full-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 176px 0 88px;
}
.hero-full-content .eyebrow { margin-bottom: 22px; }
.hero-full-content h1 { max-width: 760px; margin-bottom: 20px; }
.hero-full-content .lede { color: rgba(255,255,255,0.82); max-width: 540px; margin-bottom: 34px; }
.hero-scroll-cue {
  position: absolute;
  left: 50%; bottom: 34px; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.hero-scroll-cue .line { width: 1px; height: 34px; background: linear-gradient(rgba(255,255,255,0.7), transparent); animation: cue-move 2s ease-in-out infinite; }
@keyframes cue-move { 0%,100% { opacity:0.3; transform: scaleY(0.6); transform-origin: top; } 50% { opacity:1; transform: scaleY(1); transform-origin: top; } }

.trajetoria-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 56px;
}

/* Trust bar */
.trust-bar {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 30px 0;
}
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 22px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  font-weight: 500;
}
.trust-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.trust-item:nth-child(2) .dot { background: var(--accent-slate); }
.trust-item:nth-child(3) .dot { background: var(--accent-sage); }
.trust-item:nth-child(4) .dot { background: var(--accent-sand); }

/* ==========================================================================
   Sections
   ========================================================================== */
section { padding: 100px 0; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head p { margin-top: 18px; }

.bg-soft { background: var(--off-white); }
.bg-navy { background: var(--navy); }

/* Reveal on scroll — visible by default; JS "arms" elements only once it can
   guarantee the reveal will fire, so content never gets stuck invisible. */
.reveal { opacity: 1; transform: none; }
.reveal.reveal-armed {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.reveal-armed.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1.is-visible { transition-delay: 0.1s; }
.reveal-delay-2.is-visible { transition-delay: 0.2s; }
.reveal-delay-3.is-visible { transition-delay: 0.3s; }

/* Lateral reveal variants — same fail-safe system, sliding in from the side
   instead of up. Visible by default; only animates once armed by JS. */
.reveal-left.reveal-armed { transform: translateX(-36px); }
.reveal-left.reveal-armed.is-visible { transform: translateX(0); }
.reveal-right.reveal-armed { transform: translateX(36px); }
.reveal-right.reveal-armed.is-visible { transform: translateX(0); }

/* Button / link micro-interactions */
.btn { position: relative; overflow: hidden; }
.btn-primary::after {
  content: '';
  position: absolute; top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
  pointer-events: none;
}
.btn-primary:hover::after { left: 130%; }

/* Growth chart section */
.growth-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.growth-copy p { margin: 18px 0 30px; }
.growth-chart {
  position: relative;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 40px 40px 52px;
  overflow: hidden;
  min-height: 300px;
}
.growth-chart-label {
  position: relative; z-index: 2;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase;
}
.growth-bars {
  position: relative; z-index: 2;
  display: flex; align-items: flex-end; gap: 14px;
  height: 200px;
}
.growth-bar {
  flex: 1;
  border-radius: 7px 7px 2px 2px;
  background: linear-gradient(180deg, var(--teal) 0%, var(--teal-deep) 100%);
  transform: scaleY(1);
  transform-origin: bottom;
  position: relative;
  box-shadow: 0 10px 24px -12px rgba(39,195,169,0.55);
}
.growth-bar span {
  position: absolute; bottom: -26px; left: 0; right: 0; text-align: center;
  font-size: 0.68rem; color: rgba(255,255,255,0.45);
}
.growth-bar.bar-armed {
  transform: scaleY(0);
  transition: transform 1.1s var(--ease);
}
.growth-bar.bar-armed.is-visible { transform: scaleY(1); }
.growth-bar:nth-child(1).is-visible { transition-delay: 0s; }
.growth-bar:nth-child(2).is-visible { transition-delay: 0.08s; }
.growth-bar:nth-child(3).is-visible { transition-delay: 0.16s; }
.growth-bar:nth-child(4).is-visible { transition-delay: 0.24s; }
.growth-bar:nth-child(5).is-visible { transition-delay: 0.32s; }
.growth-bar:nth-child(6).is-visible { transition-delay: 0.4s; }
@media (max-width: 860px) {
  .growth-grid { grid-template-columns: 1fr; }
  .growth-chart { margin-top: 32px; }
}

/* Solutions grid */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.solution-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 32px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s ease;
}
.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}
.solution-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.solution-icon svg { width: 24px; height: 24px; stroke: var(--teal); }
.solution-card:nth-child(2) .solution-icon { background: linear-gradient(135deg, var(--accent-slate) 0%, #5C7691 100%); }
.solution-card:nth-child(2) .solution-icon svg { stroke: var(--white); }
.solution-card:nth-child(3) .solution-icon { background: linear-gradient(135deg, var(--accent-sage) 0%, #729189 100%); }
.solution-card:nth-child(3) .solution-icon svg { stroke: var(--white); }
.solution-card h3 { margin-bottom: 12px; }
.solution-card p { margin-bottom: 22px; font-size: 0.95rem; }
.solution-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.9rem; color: var(--teal-deep);
}
.solution-link svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.solution-card:hover .solution-link svg { transform: translateX(4px); }

/* Content teaser split */
.content-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.content-teaser-copy {
  background: var(--navy);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content-teaser-copy p { color: rgba(255,255,255,0.75); margin: 18px 0 28px; }
.content-teaser-visual {
  position: relative;
  background: linear-gradient(150deg, var(--navy-soft), var(--navy-deep));
  min-height: 340px;
  overflow: hidden;
}
.content-teaser-visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.85;
}
.content-teaser-visual.is-mock {
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(39,195,169,0.16), transparent 55%),
    radial-gradient(circle at 80% 75%, rgba(46,120,214,0.18), transparent 55%),
    linear-gradient(150deg, var(--navy-soft), var(--navy-deep));
}
.content-teaser-visual.is-mock::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 75%);
          mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 75%);
}
.mock-cards { position: relative; width: 100%; max-width: 320px; height: 220px; }
.mock-card {
  position: absolute;
  width: 220px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 20px 40px -18px rgba(0,0,0,0.5);
  animation: mock-float 6s ease-in-out infinite;
}
.mock-card .mock-icon {
  width: 30px; height: 30px; border-radius: 8px;
  background: rgba(39,195,169,0.22);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.mock-card .mock-icon svg { width: 15px; height: 15px; stroke: var(--teal); }
.mock-card .mock-line { height: 7px; border-radius: 4px; background: rgba(255,255,255,0.22); margin-bottom: 7px; }
.mock-card .mock-line.w-70 { width: 70%; }
.mock-card .mock-line.w-45 { width: 45%; }
.mock-card.card-1 { top: 4px; left: 6px; transform: rotate(-6deg); z-index: 2; animation-delay: 0s; }
.mock-card.card-2 { bottom: 6px; right: 0; transform: rotate(5deg); z-index: 1; animation-delay: -3s; opacity: 0.85; }
@keyframes mock-float {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-14px) rotate(var(--r, 0deg)); }
}
.mock-card.card-1 { --r: -6deg; }
.mock-card.card-2 { --r: 5deg; }

/* Contact */
.contact-section { position: relative; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
}
.contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-card + .contact-card { margin-top: 22px; }
.contact-row { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 18px; }
.contact-row:last-child { margin-bottom: 0; }
.contact-row .ic {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(39,195,169,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-row .ic svg { width: 18px; height: 18px; stroke: var(--teal); }
.contact-row strong { display: block; color: var(--white); margin-bottom: 3px; font-size: 0.95rem; }
.contact-row span, .contact-row a { color: rgba(255,255,255,0.7); font-size: 0.92rem; line-height: 1.6; }

/* Footer */
.site-footer {
  background: var(--navy-deep);
  padding: 64px 0 26px;
  color: rgba(255,255,255,0.65);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 40px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; max-width: 280px; }
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--teal);
  margin-bottom: 14px !important;
  max-width: 280px;
}
.footer-col h4 { color: var(--white); font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; }
.footer-col a, .footer-col li, .footer-col > span { display: block; font-size: 0.9rem; margin-bottom: 12px; color: rgba(255,255,255,0.65); transition: color 0.25s ease; }
.footer-col a:hover { color: var(--teal); }
.footer-affiliate { display: flex; align-items: center; gap: 10px; margin-top: 6px; }
.footer-affiliate img { height: 22px; }
.footer-social { display: flex; gap: 12px; margin-top: 4px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0;
}
.footer-social svg { width: 16px; height: 16px; stroke: var(--white); }
.footer-social a:hover { background: var(--teal); border-color: var(--teal); }
.footer-social a:hover svg { stroke: var(--navy-deep); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  font-size: 0.82rem;
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--teal); }
.footer-legal { max-width: 780px; font-size: 0.78rem; line-height: 1.6; color: rgba(255,255,255,0.4); margin-top: 18px; }
.footer-credit { color: rgba(255,255,255,0.5); }
.footer-credit a { color: rgba(255,255,255,0.75); font-weight: 600; }

/* WhatsApp floating button */
.wa-float {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 600;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(37,211,102,0.6);
  animation: wa-pulse 2.8s ease-in-out infinite;
  transition: transform 0.3s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: var(--white); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 14px 30px -10px rgba(37,211,102,0.6), 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 14px 30px -10px rgba(37,211,102,0.6), 0 0 0 14px rgba(37,211,102,0); }
}

/* ==========================================================================
   Inner solution pages
   ========================================================================== */
.page-hero {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 168px 0 90px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -30%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(39,195,169,0.14), transparent 70%);
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(circle at 75% 30%, black 0%, transparent 60%);
          mask-image: radial-gradient(circle at 75% 30%, black 0%, transparent 60%);
}
.page-hero-blob { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; opacity: 0.55; animation: hero-drift 12s ease-in-out infinite; }
.page-hero-blob.b1 { width: 300px; height: 300px; background: rgba(39,195,169,0.3); top: -8%; right: 6%; animation-delay: 0s; }
.page-hero-blob.b2 { width: 200px; height: 200px; background: rgba(46,120,214,0.28); bottom: -12%; right: 26%; animation-delay: -4s; }
.page-hero-icon {
  position: absolute; z-index: 1; top: 50%; right: 6%; transform: translateY(-50%);
  width: 260px; height: 260px;
  opacity: 0.08;
}
.page-hero-icon svg { width: 100%; height: 100%; stroke: var(--white); fill: none; stroke-width: 1.2; }
.page-hero .container { position: relative; z-index: 2; max-width: 820px; }
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero .lede { color: rgba(255,255,255,0.78); max-width: 640px; }
@media (max-width: 860px) { .page-hero-icon { display: none; } }

.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 26px; }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--teal); }

.who-for {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.who-for .lede { margin-bottom: 0; }

.steps-list { display: flex; flex-direction: column; gap: 0; }
.step-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.step-item:last-child { border-bottom: 1px solid var(--line); }
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.step-item h3 { margin-bottom: 8px; font-size: 1.15rem; }
.step-item p { font-size: 0.95rem; }

.diff-list { display: grid; gap: 16px; }
.diff-item { display: flex; gap: 14px; align-items: flex-start; }
.diff-item svg { width: 20px; height: 20px; stroke: var(--teal-deep); flex-shrink: 0; margin-top: 2px; }
.diff-item span { font-size: 0.95rem; color: var(--ink-soft); }

.identify-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.identify-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.identify-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.identify-icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.identify-icon svg { width: 22px; height: 22px; stroke: var(--teal); }
.identify-card h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.35; }
.identify-card p { font-size: 0.9rem; color: var(--ink-soft); margin: 0; }
.identify-card:nth-child(2) .identify-icon { background: linear-gradient(135deg, var(--accent-slate) 0%, #5C7691 100%); }
.identify-card:nth-child(2) .identify-icon svg { stroke: var(--white); }
.identify-card:nth-child(4) .identify-icon { background: linear-gradient(135deg, var(--accent-sage) 0%, #729189 100%); }
.identify-card:nth-child(4) .identify-icon svg { stroke: var(--white); }
.identify-card:nth-child(6) .identify-icon { background: linear-gradient(135deg, var(--blue-mid) 0%, #1E5FA8 100%); }
@media (max-width: 980px) { .identify-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .identify-grid { grid-template-columns: 1fr; } }

.outcome-banner {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
}
.outcome-banner h3 { color: var(--white); margin-bottom: 8px; }
.outcome-banner p { color: rgba(255,255,255,0.72); }

.final-cta {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: var(--radius);
  padding: 64px 48px;
  text-align: center;
}
.final-cta h2 { color: var(--white); margin-bottom: 14px; }
.final-cta p { color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto 30px; }

/* Proof stat bar reused on inner pages */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.stat-item {
  text-align: center;
  padding: 26px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
}
.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--teal);
  margin-bottom: 6px;
}
.stat-item span { font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.4; display: block; }
.stat-item:nth-child(2) strong { color: var(--blue-mid); }
.stat-item:nth-child(3) strong { color: var(--accent-slate); }
.stat-item:nth-child(4) strong { color: var(--accent-sage); }
.stat-item:nth-child(5) strong { color: var(--accent-sand); }

/* ==========================================================================
   Content (blog) pages
   ========================================================================== */
.content-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 44px; }
.content-filters a {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all 0.25s ease;
}
.content-filters a:hover, .content-filters a.active {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}
.content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.content-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.content-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.content-card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--off-white); }
.content-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.content-card:hover .content-card-img img { transform: scale(1.06); }
.content-card-body { padding: 24px; }
.content-tag { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal-deep); margin-bottom: 10px; display: block; }
.content-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.content-card p { font-size: 0.88rem; }
.content-card-date { font-size: 0.78rem; color: #9aa7b4; margin-top: 14px; display: block; }

.empty-state { text-align: center; padding: 80px 20px; color: var(--ink-soft); }

.article-body { max-width: 720px; margin: 0 auto; }
.article-body img { border-radius: var(--radius-sm); margin: 30px 0; }
.article-body p { margin-bottom: 20px; font-size: 1.02rem; }
.article-body h2, .article-body h3 { margin: 40px 0 18px; }

/* ==========================================================================
   Quiz — Teste de Maturidade
   ========================================================================== */
.quiz-shell {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  overflow: hidden;
}
.quiz-progress { height: 5px; background: var(--line); }
.quiz-progress-bar { height: 100%; background: var(--teal); width: 0%; transition: width 0.5s var(--ease); }
.quiz-body { padding: 52px; min-height: 340px; }
.quiz-step-label { font-size: 0.82rem; color: var(--ink-soft); font-weight: 600; letter-spacing: 0.04em; margin-bottom: 14px; }
.quiz-question { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); margin-bottom: 30px; line-height: 1.3; }
.quiz-options { display: grid; gap: 14px; }
.quiz-option {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.98rem;
  transition: all 0.25s ease;
  text-align: left;
}
.quiz-option:hover { border-color: var(--teal); background: rgba(39,195,169,0.05); }
.quiz-option.selected { border-color: var(--teal); background: rgba(39,195,169,0.1); }
.quiz-option .radio { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--line); flex-shrink: 0; position: relative; }
.quiz-option.selected .radio { border-color: var(--teal); }
.quiz-option.selected .radio::after { content: ''; position: absolute; inset: 3px; border-radius: 50%; background: var(--teal); }

.quiz-nav { display: flex; justify-content: space-between; align-items: center; padding: 26px 52px; border-top: 1px solid var(--line); }
.quiz-nav-back { font-size: 0.9rem; color: var(--ink-soft); font-weight: 500; opacity: 0.6; pointer-events: none; }
.quiz-nav-back.active { opacity: 1; pointer-events: auto; cursor: pointer; }
.quiz-nav-back.active:hover { color: var(--navy); }

.quiz-field { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.quiz-field label { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.quiz-field input {
  padding: 15px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}
.quiz-field input:focus { outline: none; border-color: var(--teal); }

.quiz-result-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(39,195,169,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.quiz-result-icon svg { width: 30px; height: 30px; stroke: var(--teal-deep); }
.quiz-result-tag { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal-deep); margin-bottom: 10px; display: block; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .hero-grid, .who-for, .contact-grid, .trajetoria-grid { grid-template-columns: 1fr; }
  .hero-photo { order: -1; max-width: 380px; margin: 0 auto; }
  .solutions-grid { grid-template-columns: 1fr; }
  .content-teaser { grid-template-columns: 1fr; }
  .content-teaser-visual { min-height: 220px; order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-bar { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: repeat(2, 1fr); }
  .outcome-banner { grid-template-columns: 1fr; text-align: center; }
}
@media (max-width: 640px) {
  .hero { padding: 140px 0 70px; }
  .hero-full { min-height: unset; align-items: flex-start; }
  .hero-full-content { padding: 108px 0 44px; }
  .hero-full-content .eyebrow { margin-bottom: 14px; }
  .hero-full-content h1 { margin-bottom: 14px; }
  .hero-full-content .lede { margin-bottom: 22px; }
  .hero-actions { gap: 12px; }
  .hero-scroll-cue { display: none; }
}
@media (max-width: 400px) {
  .hero-full-content { padding: 100px 0 40px; }
  .hero-full-content h1 { font-size: 2.05rem; }
  .hero-full-content .lede { font-size: 0.95rem; margin-bottom: 18px; }
  section { padding: 70px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .content-grid { grid-template-columns: 1fr; }
  .quiz-body { padding: 32px 24px; }
  .quiz-nav { padding: 20px 24px; }
  .trust-grid { justify-content: center; text-align: center; }
  .stat-bar { grid-template-columns: 1fr 1fr; }
}
