/* ==========================================================================
   GERAÇÃO C3 — Consultoria de R&S no AGRO
   Design system: azul #00b3ff · azul-escuro #01315e · preto · #f3f3f3 · branco
   ========================================================================== */

:root {
  --blue: #00b3ff;
  --navy: #01315e;
  --navy-deep: #021f3c;
  --black: #000000;
  --gray: #f3f3f3;
  --white: #ffffff;
  --text: #1a2733;
  --text-soft: #4c5a68;
  --radius: 20px;
  --shadow: 0 18px 45px rgba(1, 49, 94, 0.12);
  --shadow-soft: 0 8px 24px rgba(1, 49, 94, 0.08);
  --font-display: "Montserrat", sans-serif;
  --font-body: "Inter", sans-serif;
  --header-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* ---------- Tipografia ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; color: var(--navy); }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }

.section { padding: clamp(4rem, 8vw, 6.5rem) 0; position: relative; }
.section--gray { background: var(--gray); }
.section--navy { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%); overflow: hidden; }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: rgba(255, 255, 255, 0.78); }

.section-head { max-width: 720px; margin-bottom: clamp(2.2rem, 5vw, 3.5rem); }
.section-head--center { margin-inline: auto; text-align: center; }

.tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue);
  margin-bottom: 1rem;
}
.tag::before { content: ""; width: 26px; height: 3px; border-radius: 2px; background: var(--blue); }

.lead { font-size: 1.08rem; color: var(--text-soft); margin-top: 1rem; }
.section--navy .lead { color: rgba(255, 255, 255, 0.75); }

.text-blue { color: var(--blue); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  padding: 0.95rem 1.9rem; border-radius: 999px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s, color 0.3s;
  will-change: transform;
}
.btn svg { transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary { background: var(--blue); color: var(--navy-deep); box-shadow: 0 10px 26px rgba(0, 179, 255, 0.35); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(0, 179, 255, 0.45); }

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

.btn--ghost { border: 2px solid rgba(255, 255, 255, 0.35); color: var(--white); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-3px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  transition: background 0.4s, box-shadow 0.4s, height 0.4s;
}
.site-header.scrolled { background: var(--white); box-shadow: 0 6px 24px rgba(1, 49, 94, 0.1); height: 70px; }

.header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

.logo { display: inline-flex; align-items: center; position: relative; height: 38px; }
.logo__img {
  height: 100%; width: auto; display: block;
  transition: opacity 0.4s var(--ease), transform 0.5s var(--ease);
}
.logo:hover .logo__img { transform: scale(1.03); }

/* Header: logo branca sobre o hero navy, troca para a colorida com o header branco no scroll */
.logo__img--color { position: absolute; left: 0; top: 0; opacity: 0; }
.logo__img--white { opacity: 1; }
.site-header.scrolled .logo__img--white { opacity: 0; }
.site-header.scrolled .logo__img--color { opacity: 1; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav__list { display: flex; align-items: center; gap: 1.6rem; }
.nav__list > li { position: relative; }
.nav__list > li > a {
  font-weight: 600; font-size: 0.95rem; color: rgba(255, 255, 255, 0.85);
  padding: 0.5rem 0.2rem; display: inline-flex; align-items: center; gap: 0.35rem;
  transition: color 0.3s; position: relative;
}
.nav__list > li > a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--blue); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav__list > li > a:hover, .nav__list > li > a.active { color: var(--blue); }
.nav__list > li > a:hover::after, .nav__list > li > a.active::after { transform: scaleX(1); }
.site-header.scrolled .nav__list > li > a { color: var(--navy); }
.site-header.scrolled .nav__list > li > a:hover,
.site-header.scrolled .nav__list > li > a.active { color: var(--blue); }

.caret { transition: transform 0.3s; }
.has-sub:hover .caret { transform: rotate(180deg); }

.subnav {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translate(-50%, 12px);
  min-width: 270px; background: var(--white); border-radius: 16px; padding: 0.6rem;
  box-shadow: var(--shadow); opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}
.subnav::before { content: ""; position: absolute; inset: -14px 0 auto 0; height: 14px; }
.has-sub:hover .subnav, .has-sub:focus-within .subnav {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0);
}
.subnav a {
  display: block; padding: 0.75rem 1rem; border-radius: 10px;
  font-weight: 600; font-size: 0.92rem; color: var(--navy);
  transition: background 0.25s, color 0.25s, padding-left 0.25s;
}
.subnav a:hover { background: var(--gray); color: var(--blue); padding-left: 1.25rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 110; }
.nav-toggle span {
  width: 26px; height: 3px; border-radius: 2px; background: var(--white);
  transition: transform 0.35s var(--ease), opacity 0.3s, background 0.4s;
}
.site-header.scrolled .nav-toggle span { background: var(--navy); }
body.nav-open .nav-toggle span { background: var(--white); }
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; overflow: hidden;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 70%);
  color: var(--white);
  padding: calc(var(--header-h) + clamp(3.5rem, 8vw, 6rem)) 0 clamp(4rem, 8vw, 6.5rem);
}
.hero h1 { color: var(--white); }
.hero h1 .text-blue { display: inline-block; }
.hero p { color: rgba(255, 255, 255, 0.8); max-width: 640px; }

.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; position: relative; z-index: 2; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(0, 179, 255, 0.12); border: 1px solid rgba(0, 179, 255, 0.4);
  color: var(--blue); font-weight: 600; font-size: 0.85rem;
  padding: 0.45rem 1.1rem; border-radius: 999px; margin-bottom: 1.4rem;
}
.hero__badge .pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); animation: pulse-dot 2s infinite; }

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 179, 255, 0.6); }
  60% { box-shadow: 0 0 0 9px rgba(0, 179, 255, 0); }
}

/* arcos decorativos animados (motivo do logo C3) */
.deco-arc { position: absolute; border-radius: 50%; border-style: solid; pointer-events: none; }
.deco-arc--1 {
  width: 560px; height: 560px; right: -180px; top: -160px;
  border-width: 30px; border-color: rgba(0, 179, 255, 0.14) transparent transparent rgba(0, 179, 255, 0.14);
  animation: spin-slow 34s linear infinite;
}
.deco-arc--2 {
  width: 380px; height: 380px; left: -160px; bottom: -140px;
  border-width: 22px; border-color: transparent rgba(255, 255, 255, 0.07) rgba(255, 255, 255, 0.07) transparent;
  animation: spin-slow 46s linear infinite reverse;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

.float-dots { position: absolute; inset: 0; pointer-events: none; }
.float-dots span {
  position: absolute; width: 7px; height: 7px; border-radius: 50%;
  background: rgba(0, 179, 255, 0.5); animation: floaty 7s ease-in-out infinite;
}
.float-dots span:nth-child(1) { left: 8%; top: 24%; animation-delay: 0s; }
.float-dots span:nth-child(2) { left: 46%; top: 12%; animation-delay: 1.4s; width: 5px; height: 5px; }
.float-dots span:nth-child(3) { left: 70%; top: 70%; animation-delay: 2.2s; }
.float-dots span:nth-child(4) { left: 28%; top: 82%; animation-delay: 3s; width: 10px; height: 10px; opacity: 0.5; }
.float-dots span:nth-child(5) { left: 88%; top: 38%; animation-delay: 4.1s; width: 5px; height: 5px; }
.float-dots span:nth-child(6) { left: 14%; top: 56%; animation-delay: 5s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50% { transform: translateY(-22px); opacity: 1; }
}

/* moldura de mídia (fotos) */
.media-frame {
  position: relative; border-radius: calc(var(--radius) + 6px); overflow: hidden;
  background: linear-gradient(140deg, #023362 0%, var(--navy-deep) 55%, rgba(0, 179, 255, 0.35) 130%);
  min-height: 340px; box-shadow: var(--shadow);
}
.media-frame::before {
  content: ""; position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%;
  border: 26px solid rgba(0, 179, 255, 0.16); border-right-color: transparent;
  right: -20%; bottom: -24%; z-index: 0;
}
.media-frame img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; }
.media-frame img.img-missing { display: none; }
.media-frame--wide img { aspect-ratio: 4 / 3; }

.hero .media-frame { transform: rotate(2deg); transition: transform 0.6s var(--ease); }
.hero .media-frame:hover { transform: rotate(0deg) scale(1.015); }

/* ---------- Faixa de estatísticas ---------- */
.stats-band { position: relative; z-index: 3; margin-top: clamp(-3rem, -4vw, -2rem); }
.stats-band .container {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden;
}
.stat { padding: 1.9rem 1.4rem; text-align: center; position: relative; }
.stat + .stat::before {
  content: ""; position: absolute; left: 0; top: 22%; height: 56%; width: 1px; background: #e2e8ee;
}
.stat__num {
  font-family: var(--font-display); font-weight: 800; color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1.1;
}
.stat__num .text-blue { font-size: 0.72em; vertical-align: 0.12em; }
.stat__label { font-size: 0.88rem; color: var(--text-soft); margin-top: 0.35rem; }

/* estatísticas em fundo navy */
.stats-inline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.stats-inline .stat { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius); }
.stats-inline .stat__num { color: var(--white); }
.stats-inline .stat__label { color: rgba(255, 255, 255, 0.7); }
.stats-inline .stat + .stat::before { display: none; }

/* ---------- Marquee de segmentos ---------- */
.marquee {
  overflow: hidden; padding: 1.4rem 0; background: var(--navy-deep);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track { display: flex; gap: 1rem; width: max-content; animation: marquee 36s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.chip {
  flex: none; display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1.3rem; border-radius: 999px; white-space: nowrap;
  border: 1px solid rgba(0, 179, 255, 0.35); color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-display); font-weight: 600; font-size: 0.85rem;
}
.chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }

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

.card {
  background: var(--white); border-radius: var(--radius); padding: 2.1rem 1.8rem;
  box-shadow: var(--shadow-soft); border: 1px solid #e8edf2;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.3s;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(0, 179, 255, 0.4); }
.card::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--navy));
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease);
}
.card:hover::after { transform: scaleX(1); }
.card h3 { margin: 1.1rem 0 0.6rem; }
.card p { color: var(--text-soft); font-size: 0.97rem; }

.card__icon {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(0, 179, 255, 0.14), rgba(1, 49, 94, 0.08));
  color: var(--navy); transition: transform 0.45s var(--ease), background 0.3s;
}
.card__icon svg { width: 28px; height: 28px; }
.card:hover .card__icon { transform: scale(1.08) rotate(-4deg); background: var(--blue); color: var(--white); }

.card--link { display: block; }
.card__more {
  display: inline-flex; align-items: center; gap: 0.45rem; margin-top: 1.1rem;
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; color: var(--blue);
}
.card__more svg { transition: transform 0.35s var(--ease); }
.card--link:hover .card__more svg { transform: translateX(5px); }

/* cards escuros (motivos de contratação) */
.card--dark {
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}
.card--dark h3 { color: var(--white); font-size: 1.08rem; }
.card--dark p { color: rgba(255, 255, 255, 0.7); }
.card--dark:hover { border-color: var(--blue); transform: translateY(-6px); }
.card--dark .card__icon { background: rgba(0, 179, 255, 0.16); color: var(--blue); }
.card--dark:hover .card__icon { background: var(--blue); color: var(--navy-deep); }

/* ---------- Seções split (texto + mídia) ---------- */
.split { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { position: relative; }

.check-list { margin-top: 1.6rem; display: grid; gap: 0.9rem; }
.check-list li { display: flex; gap: 0.8rem; align-items: flex-start; color: var(--text-soft); }
.section--navy .check-list li { color: rgba(255, 255, 255, 0.78); }
.check-list li strong { color: var(--navy); }
.section--navy .check-list li strong { color: var(--white); }
.check-list .check {
  flex: none; width: 24px; height: 24px; margin-top: 2px; border-radius: 50%;
  display: grid; place-items: center; background: rgba(0, 179, 255, 0.14); color: var(--blue);
}
.check-list .check svg { width: 13px; height: 13px; }

/* ---------- Timeline / metodologia ---------- */
.timeline { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.2rem; margin-top: 3.4rem; counter-reset: step; }
.timeline::before {
  content: ""; position: absolute; top: 27px; left: 4%; right: 4%; height: 3px;
  background: rgba(255, 255, 255, 0.12); border-radius: 2px;
}
.timeline__bar {
  position: absolute; top: 27px; left: 4%; width: 92%; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), rgba(0, 179, 255, 0.35));
  transform: scaleX(0); transform-origin: left; transition: transform 2.2s var(--ease) 0.3s;
}
.timeline.in-view .timeline__bar { transform: scaleX(1); }

.step { text-align: center; position: relative; padding-top: 0.4rem; }
.step__dot {
  counter-increment: step; width: 54px; height: 54px; margin: 0 auto 1.1rem; border-radius: 50%;
  display: grid; place-items: center; position: relative; z-index: 1;
  background: var(--navy-deep); border: 2px solid rgba(0, 179, 255, 0.5);
  font-family: var(--font-display); font-weight: 800; color: var(--blue);
  transition: background 0.4s, color 0.4s, transform 0.4s var(--ease), box-shadow 0.4s;
}
.step__dot::before { content: counter(step, decimal-leading-zero); }
.step:hover .step__dot { background: var(--blue); color: var(--navy-deep); transform: scale(1.12); box-shadow: 0 0 0 10px rgba(0, 179, 255, 0.12); }
.step h3 { color: var(--white); font-size: 0.98rem; }
.step p { font-size: 0.85rem; color: rgba(255, 255, 255, 0.65); margin-top: 0.4rem; }

/* ---------- RADAR (Recrutamento & Seleção) ---------- */
.radar-section { overflow: hidden; }
.radar-wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; }

.radar {
  position: relative; width: min(100%, 520px); aspect-ratio: 1;
  margin-inline: auto; margin-bottom: 4rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(0, 179, 255, 0.1) 0%, rgba(2, 31, 60, 0.2) 55%, rgba(2, 31, 60, 0.65) 100%);
  border: 1px solid rgba(0, 179, 255, 0.25);
  box-shadow: 0 0 90px rgba(0, 179, 255, 0.14), inset 0 0 60px rgba(0, 179, 255, 0.06);
}
.radar__grid { position: absolute; inset: 0; width: 100%; height: 100%; }
.radar__grid circle, .radar__grid line { stroke: rgba(0, 179, 255, 0.22); stroke-width: 1; fill: none; }
.radar__grid .radar__ring-strong { stroke: rgba(0, 179, 255, 0.4); }

.radar__sweep {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg,
    transparent 0deg,
    transparent 275deg,
    rgba(0, 179, 255, 0.04) 300deg,
    rgba(0, 179, 255, 0.18) 330deg,
    rgba(0, 179, 255, 0.5) 360deg);
  will-change: transform;
}
.radar__beam-line {
  position: absolute; left: 50%; top: 0; width: 2px; height: 50%;
  transform-origin: bottom center; margin-left: -1px;
  background: linear-gradient(to top, rgba(0, 179, 255, 0.9), rgba(0, 179, 255, 0.1));
}

.radar__center {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 14px; height: 14px; border-radius: 50%; background: var(--blue);
  box-shadow: 0 0 18px rgba(0, 179, 255, 0.9); z-index: 3;
}
.radar__center::after {
  content: ""; position: absolute; inset: -8px; border-radius: 50%;
  border: 1px solid rgba(0, 179, 255, 0.5); animation: ping 2.4s ease-out infinite;
}

.blip { position: absolute; width: 12px; height: 12px; margin: -6px 0 0 -6px; z-index: 2; }
.blip__dot {
  width: 100%; height: 100%; border-radius: 50%;
  background: rgba(0, 179, 255, 0.35); transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
}
.blip.blip--active .blip__dot {
  background: var(--blue); box-shadow: 0 0 16px rgba(0, 179, 255, 1); transform: scale(1.25);
}
.blip__ping { position: absolute; inset: -10px; border-radius: 50%; border: 2px solid var(--blue); opacity: 0; }
.blip.blip--active .blip__ping { animation: ping 1.4s ease-out; }
@keyframes ping {
  0% { transform: scale(0.4); opacity: 0.9; }
  100% { transform: scale(1.9); opacity: 0; }
}
.blip__label {
  position: absolute; left: 16px; top: -8px; white-space: nowrap;
  font-family: var(--font-display); font-size: 0.68rem; font-weight: 700;
  color: var(--white); background: rgba(1, 49, 94, 0.92); border: 1px solid rgba(0, 179, 255, 0.5);
  padding: 0.25rem 0.6rem; border-radius: 8px;
  opacity: 0; transform: translateY(6px); transition: opacity 0.35s, transform 0.35s var(--ease);
  pointer-events: none;
}
.blip--flip .blip__label { left: auto; right: 16px; }
.blip.blip--active .blip__label { opacity: 1; transform: translateY(0); }

.radar__status {
  position: absolute; bottom: -3.2rem; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 0.6rem; white-space: nowrap;
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 600; color: var(--blue);
}
.radar__status .pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); animation: pulse-dot 1.6s infinite; }

/* Painel shortlist ao lado do radar */
.shortlist {
  background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius); padding: 1.6rem; margin-top: 2rem; min-height: 300px;
}
.shortlist__head {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding-bottom: 1rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); margin-bottom: 1rem;
}
.shortlist__head h3 { color: var(--white); font-size: 1rem; }
.shortlist__count { font-family: var(--font-display); font-weight: 700; font-size: 0.8rem; color: var(--blue); }
.shortlist__list { display: grid; gap: 0.6rem; }
.shortlist__item {
  display: flex; align-items: center; gap: 0.8rem;
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(0, 179, 255, 0.25);
  border-radius: 12px; padding: 0.65rem 0.9rem;
  animation: slide-in 0.5s var(--ease) both;
}
@keyframes slide-in {
  from { opacity: 0; transform: translateX(26px); }
  to { opacity: 1; transform: translateX(0); }
}
.shortlist__avatar {
  width: 34px; height: 34px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  font-family: var(--font-display); font-weight: 800; font-size: 0.75rem; color: var(--white);
}
.shortlist__item strong { display: block; color: var(--white); font-size: 0.88rem; line-height: 1.3; }
.shortlist__item small { color: rgba(255, 255, 255, 0.55); font-size: 0.75rem; }
.shortlist__check { margin-left: auto; color: var(--blue); flex: none; }
.shortlist__done {
  margin-top: 1rem; text-align: center; font-family: var(--font-display); font-weight: 700;
  color: var(--blue); font-size: 0.92rem; opacity: 0; transition: opacity 0.5s;
}
.shortlist__done.show { opacity: 1; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin-inline: auto; display: grid; gap: 0.9rem; }
.faq details {
  background: var(--white); border: 1px solid #e6ebf0; border-radius: 16px;
  overflow: hidden; transition: box-shadow 0.3s, border-color 0.3s;
}
.faq details[open] { box-shadow: var(--shadow-soft); border-color: rgba(0, 179, 255, 0.45); }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.15rem 1.4rem; font-family: var(--font-display); font-weight: 700; color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .faq__icon {
  flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: var(--gray); color: var(--navy); transition: transform 0.4s var(--ease), background 0.3s, color 0.3s;
}
.faq details[open] summary .faq__icon { transform: rotate(45deg); background: var(--blue); color: var(--white); }
.faq .faq__body { padding: 0 1.4rem 1.3rem; color: var(--text-soft); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band .container { position: relative; z-index: 2; text-align: center; max-width: 800px; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255, 255, 255, 0.78); margin: 1rem auto 2rem; max-width: 620px; }

/* ---------- Página hero interna ---------- */
.page-hero {
  position: relative; overflow: hidden; color: var(--white);
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 70%);
  padding: calc(var(--header-h) + clamp(2.5rem, 6vw, 4.5rem)) 0 clamp(3rem, 6vw, 4.5rem);
}
.page-hero h1 { color: var(--white); max-width: 820px; }
.page-hero p { color: rgba(255, 255, 255, 0.8); max-width: 680px; margin-top: 1.2rem; }
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center;
  font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); margin-bottom: 1.4rem;
}
.breadcrumb a { color: rgba(255, 255, 255, 0.75); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb .current { color: var(--blue); font-weight: 600; }

/* ---------- MVV (missão/visão/valores) ---------- */
.mvv { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.mvv .card { text-align: left; }
.values-list { margin-top: 0.8rem; display: grid; gap: 0.55rem; }
.values-list li { display: flex; align-items: flex-start; gap: 0.6rem; color: var(--text-soft); font-size: 0.95rem; }
.values-list li::before { content: "‣"; color: var(--blue); font-weight: 800; }

/* ---------- Fundadores ---------- */
.founders { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
.founder-card { border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: var(--shadow-soft); transition: transform 0.45s var(--ease), box-shadow 0.45s; }
.founder-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.founder-card .media-frame { border-radius: 0; box-shadow: none; min-height: 300px; }
.founder-card__body { padding: 1.6rem 1.8rem; }
.founder-card__body p { color: var(--text-soft); font-size: 0.95rem; margin-top: 0.5rem; }

/* ---------- Formulário de contato ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 5vw, 4rem); align-items: start; }

.contact-info { display: grid; gap: 1.2rem; }
.contact-info .card { display: flex; gap: 1.1rem; align-items: flex-start; padding: 1.5rem 1.6rem; }
.contact-info .card h3 { margin: 0 0 0.25rem; font-size: 1rem; }
.contact-info .card p, .contact-info .card a { color: var(--text-soft); font-size: 0.95rem; }
.contact-info .card a:hover { color: var(--blue); }

.form-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: clamp(1.8rem, 4vw, 2.8rem); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { display: grid; gap: 0.4rem; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-weight: 600; font-size: 0.88rem; color: var(--navy); }
.form-field input, .form-field select, .form-field textarea {
  font: inherit; width: 100%; padding: 0.85rem 1rem; border-radius: 12px;
  border: 1.5px solid #dfe6ec; background: #fbfcfd; color: var(--text);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0, 179, 255, 0.14);
}
.form-note { font-size: 0.8rem; color: var(--text-soft); margin-top: 1rem; }
.form-feedback { margin-top: 1rem; font-weight: 600; color: var(--navy); display: none; }
.form-feedback.show { display: block; }
.form-feedback.error { color: #c0392b; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: rgba(255, 255, 255, 0.7); }
.footer__main {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem;
  padding: clamp(3rem, 6vw, 4.5rem) 0 2.5rem;
}
.footer__brand p { margin-top: 1.1rem; font-size: 0.92rem; max-width: 300px; }
.site-footer h4 {
  color: var(--white); font-family: var(--font-display); font-size: 0.95rem;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.1rem;
}
.footer__links { display: grid; gap: 0.6rem; }
.footer__links a { font-size: 0.92rem; transition: color 0.3s, padding-left 0.3s; }
.footer__links a:hover { color: var(--blue); padding-left: 5px; }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12); padding: 1.4rem 0;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: 0.82rem; color: rgba(255, 255, 255, 0.45);
}
.site-footer .logo { height: 34px; }

/* ---------- Animações de scroll (reveal) ---------- */
.reveal, .reveal-left, .reveal-right, .reveal-zoom {
  opacity: 0; transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s); will-change: transform, opacity;
}
.reveal { transform: translateY(36px); }
.reveal-left { transform: translateX(-46px); }
.reveal-right { transform: translateX(46px); }
.reveal-zoom { transform: scale(0.92); }
.in-view.reveal, .in-view.reveal-left, .in-view.reveal-right, .in-view.reveal-zoom,
.reveal.in-view, .reveal-left.in-view, .reveal-right.in-view, .reveal-zoom.in-view {
  opacity: 1; transform: none;
}

/* ---------- Mapa LATAM (Home, Sobre e Contato) ---------- */
.latam-map { position: relative; width: 100%; max-width: 480px; margin-inline: auto; }
.latam-map__img {
  display: block; width: 100%; height: auto;
  filter: drop-shadow(0 20px 34px rgba(1, 49, 94, 0.12));
  animation: map-float 7s ease-in-out infinite;
}
.latam-map__img.img-missing { display: none; }
.latam-map__ph { display: none; }
.latam-map__img.img-missing + .latam-map__ph {
  display: grid; place-items: center; aspect-ratio: 3 / 4; border-radius: var(--radius);
  background: linear-gradient(150deg, #e8edf2, #f3f6f9); border: 1px dashed #c4d0dc;
  color: var(--text-soft); font-family: var(--font-display); font-weight: 600;
  font-size: 0.9rem; text-align: center; padding: 2rem; line-height: 1.5;
}
@keyframes map-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.map-caption {
  position: absolute; right: 4%; bottom: 6%;
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--white); border: 1px solid #e8edf2; border-radius: 999px;
  padding: 0.5rem 1.05rem; box-shadow: var(--shadow-soft);
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; color: var(--navy);
}
.map-caption svg { color: var(--blue); flex: none; width: 14px; height: 14px; }

@media (prefers-reduced-motion: reduce) {
  .latam-map__img { animation: none; }
}

/* ---------- Texto longo (prose) ---------- */
.prose { max-width: 780px; }
.prose--wide { max-width: 920px; }
.prose-cols { max-width: 1020px; column-count: 2; column-gap: 3.5rem; margin-top: 3rem; }
.prose-cols p { break-inside: avoid; }

/* ---------- Painel de match (intro R&S) ---------- */
.match-panel {
  position: relative; background: var(--white); border: 1px solid #e8edf2;
  border-radius: calc(var(--radius) + 4px); padding: 1.6rem; box-shadow: var(--shadow);
  max-width: 440px; margin-inline: auto;
}
.match-panel__head {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 0.95rem;
  padding-bottom: 1rem; border-bottom: 1px solid #eef2f6; margin-bottom: 1rem;
}
.match-live {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue);
}
.match-card {
  display: flex; align-items: center; gap: 0.9rem;
  background: #fbfcfd; border: 1px solid #eef2f6; border-radius: 14px;
  padding: 0.85rem 1rem; margin-bottom: 0.7rem; opacity: 0;
}
.match-panel.in-view .match-card { animation: slide-in 0.55s var(--ease) forwards; animation-delay: var(--d, 0s); }
.match-card > div { flex: 1; min-width: 0; }
.match-card strong { display: block; color: var(--navy); font-size: 0.92rem; line-height: 1.3; }
.match-card small { color: var(--text-soft); font-size: 0.76rem; }
.match-bar { height: 6px; border-radius: 4px; background: #e8edf2; margin-top: 0.45rem; overflow: hidden; }
.match-bar span { display: block; height: 100%; width: 0; border-radius: 4px; background: linear-gradient(90deg, var(--blue), #34c4ff); }
.match-panel.in-view .match-bar span { animation: match-fill 1.1s var(--ease) forwards; animation-delay: calc(var(--d, 0s) + 0.45s); }
.match-score { font-family: var(--font-display); font-weight: 800; color: var(--blue); font-size: 1.05rem; flex: none; }
.match-panel__foot {
  text-align: center; font-family: var(--font-display); font-weight: 700; font-size: 0.88rem;
  color: var(--navy); padding-top: 0.9rem; border-top: 1px solid #eef2f6; margin-top: 1rem;
}
.match-panel__foot svg { vertical-align: -2px; margin-right: 0.35rem; color: var(--blue); }

@keyframes match-fill { from { width: 0; } to { width: var(--score, 80%); } }

.match-badge {
  position: absolute; z-index: 2; --rot: 4deg;
  background: var(--blue); color: var(--navy-deep);
  font-family: var(--font-display); font-weight: 800; font-size: 0.8rem; line-height: 1.25;
  padding: 0.6rem 1rem; border-radius: 14px; box-shadow: 0 12px 26px rgba(0, 179, 255, 0.4);
  transform: rotate(var(--rot));
  animation: badge-float 6s ease-in-out infinite;
}
.match-badge small { display: block; font-weight: 600; font-size: 0.66rem; opacity: 0.8; }
.match-badge--tr { top: -1.2rem; right: -0.9rem; }
.match-badge--bl { bottom: -1.2rem; left: -0.9rem; --rot: -4deg; background: var(--navy); color: var(--white); box-shadow: 0 12px 26px rgba(1, 49, 94, 0.35); animation-delay: 1.6s; }

@keyframes badge-float {
  0%, 100% { transform: translateY(0) rotate(var(--rot)); }
  50% { transform: translateY(-9px) rotate(var(--rot)); }
}

@media (max-width: 860px) {
  .prose-cols { column-count: 1; }
  .match-badge--tr { right: 0; }
  .match-badge--bl { left: 0; }
}
.prose p { color: var(--text-soft); margin-bottom: 1.15rem; font-size: 1.02rem; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--navy); font-weight: 600; }
.prose h3 { color: var(--navy); margin: 2.2rem 0 0.9rem; font-size: 1.25rem; }
.section--navy .prose p { color: rgba(255, 255, 255, 0.8); }
.section--navy .prose strong, .section--navy .prose h3 { color: var(--white); }
.card__num {
  font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color: var(--navy);
}
.card:hover .card__num { color: var(--white); }

/* ---------- Programas de treinamento (In Company) ---------- */
.program__head { display: flex; gap: 1.2rem; align-items: flex-start; margin-bottom: 2.4rem; }
.program__num {
  flex: none; width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.55rem; color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--navy)); box-shadow: 0 12px 26px rgba(0, 179, 255, 0.3);
}
.program__kicker { font-family: var(--font-display); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); }
.program__head h2 { margin-top: 0.15rem; }
.program__tagline { color: var(--text-soft); font-style: italic; margin-top: 0.6rem; max-width: 620px; }
.section--gray .program__tagline { color: var(--text-soft); }

.module-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.module {
  background: var(--white); border: 1px solid #e8edf2; border-radius: 16px; padding: 1.3rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.3s;
}
.section--gray .module { background: var(--white); }
.module:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: rgba(0, 179, 255, 0.45); }
.module__n {
  display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 10px;
  background: rgba(0, 179, 255, 0.12); color: var(--navy);
  font-family: var(--font-display); font-weight: 800; font-size: 0.95rem; transition: background 0.3s, color 0.3s;
}
.module:hover .module__n { background: var(--blue); color: var(--white); }
.module h4 { font-family: var(--font-display); color: var(--navy); font-size: 1rem; margin: 0.85rem 0 0.4rem; }
.module p { font-size: 0.85rem; color: var(--text-soft); line-height: 1.55; }

/* intro do programa: texto + moldura de animação */
.program-intro { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(1.8rem, 4vw, 3rem); align-items: center; margin-bottom: 2.6rem; }
.program-intro .program__head { margin-bottom: 0; }

.anim-frame {
  position: relative; overflow: hidden; padding: 2.4rem 1.2rem 1.2rem;
  background: linear-gradient(150deg, var(--navy), var(--navy-deep));
  border: 1px solid rgba(0, 179, 255, 0.25); border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.anim-frame svg { display: block; width: 100%; height: auto; }
.anim-frame text { font-family: var(--font-display); font-weight: 700; fill: rgba(255, 255, 255, 0.65); letter-spacing: 0.08em; }
.anim-frame__label {
  position: absolute; top: 0.85rem; left: 1.1rem; display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--font-display); font-weight: 700; font-size: 0.68rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue);
}

/* — Animação 1: rede do líder (Academia de Liderança) — */
.net-link { stroke: rgba(0, 179, 255, 0.22); stroke-width: 2; }
.net-flow {
  stroke: var(--blue); stroke-width: 2; stroke-linecap: round;
  stroke-dasharray: 5 12; opacity: 0.85;
  animation: dash-flow 1.5s linear infinite; animation-delay: var(--d, 0s);
}
@keyframes dash-flow { to { stroke-dashoffset: -34; } }
.net-node { fill: #0d3a66; stroke: var(--blue); stroke-width: 2; }
.net-leader { fill: var(--blue); }
.net-pulse {
  fill: none; stroke: var(--blue); stroke-width: 2; opacity: 0;
  transform-box: fill-box; transform-origin: center;
  animation: ping 2.6s ease-out infinite; animation-delay: var(--d, 0s);
}

/* — Animação 2: funil de conversão (Academia de Vendas) — */
.fun-wall { stroke: rgba(0, 179, 255, 0.45); stroke-width: 2.5; fill: none; stroke-linecap: round; }
.fun-top { stroke: rgba(0, 179, 255, 0.3); stroke-width: 2; stroke-dasharray: 4 7; }
.fun-dot { fill: var(--blue); opacity: 0; animation: funnel-fall 3s ease-in infinite; animation-delay: var(--d, 0s); }
@keyframes funnel-fall {
  0% { transform: translate(0, 0); opacity: 0; }
  12% { opacity: 1; }
  68% { transform: translate(var(--tx, 0px), 96px); opacity: 1; }
  82%, 100% { transform: translate(var(--tx, 0px), 128px); opacity: 0; }
}
.fun-check { transform-box: fill-box; transform-origin: center; animation: pop-check 3s ease-out infinite; }
@keyframes pop-check {
  0%, 55% { transform: scale(0.55); opacity: 0.3; }
  70% { transform: scale(1.15); opacity: 1; }
  80%, 100% { transform: scale(1); opacity: 1; }
}

/* — Animação 3: velocímetro (Acelerador de Resultados) — */
.gauge-track { fill: none; stroke: rgba(255, 255, 255, 0.12); stroke-width: 12; stroke-linecap: round; }
.gauge-fill {
  fill: none; stroke: var(--blue); stroke-width: 12; stroke-linecap: round;
  stroke-dasharray: 300; stroke-dashoffset: 300;
  filter: drop-shadow(0 0 6px rgba(0, 179, 255, 0.55));
  animation: gauge-fill 4.5s ease-in-out infinite;
}
@keyframes gauge-fill {
  0%, 8% { stroke-dashoffset: 300; }
  40% { stroke-dashoffset: 130; }
  50% { stroke-dashoffset: 150; }
  75%, 88% { stroke-dashoffset: 26; }
  100% { stroke-dashoffset: 300; }
}
.gauge-tick { stroke: rgba(255, 255, 255, 0.3); stroke-width: 2; }
.gauge-needle {
  transform-box: view-box; transform-origin: 150px 150px; transform: rotate(-84deg);
  animation: gauge-rev 4.5s ease-in-out infinite;
}
@keyframes gauge-rev {
  0%, 8% { transform: rotate(-84deg); }
  40% { transform: rotate(18deg); }
  50% { transform: rotate(6deg); }
  75%, 88% { transform: rotate(81deg); }
  100% { transform: rotate(-84deg); }
}
.gauge-max { animation: blink-max 4.5s infinite; opacity: 0.25; fill: var(--blue) !important; }
@keyframes blink-max {
  0%, 60% { opacity: 0.25; }
  75%, 88% { opacity: 1; }
  100% { opacity: 0.25; }
}

/* — Animação: Ponte de Transição (Outplacement) — */
.bridge-arch { fill: none; stroke: rgba(0, 179, 255, 0.4); stroke-width: 3; stroke-linecap: round; }
.bridge-cable { stroke: rgba(0, 179, 255, 0.18); stroke-width: 1.5; }
.bridge-tower { fill: #0d3a66; stroke: var(--blue); stroke-width: 2; }
.bridge-flag { fill: var(--blue); }
.bridge-traveler { animation: bridge-cross 5s ease-in-out infinite; }
.bridge-traveler circle { fill: var(--white); filter: drop-shadow(0 0 7px rgba(0, 179, 255, 0.95)); }
.bridge-traveler .bt-ring { fill: none; stroke: var(--blue); stroke-width: 2; opacity: 0.6; }
@keyframes bridge-cross {
  0% { transform: translate(45px, 120px); opacity: 0; }
  7% { opacity: 1; }
  10% { transform: translate(66px, 109.5px); }
  20% { transform: translate(87px, 100px); }
  30% { transform: translate(108px, 92.5px); }
  40% { transform: translate(129px, 87.7px); }
  50% { transform: translate(150px, 86px); }
  60% { transform: translate(171px, 87.7px); }
  70% { transform: translate(192px, 92.5px); }
  80% { transform: translate(213px, 100px); }
  90% { transform: translate(234px, 109.5px); opacity: 1; }
  96% { opacity: 1; }
  100% { transform: translate(255px, 120px); opacity: 0; }
}
.bridge-goal {
  transform-box: fill-box; transform-origin: center;
  animation: goal-pop 5s ease-out infinite;
}
@keyframes goal-pop {
  0%, 84% { transform: scale(0.7); opacity: 0.35; }
  92% { transform: scale(1.18); opacity: 1; }
  100% { transform: scale(1); opacity: 0.9; }
}

/* — Animação: Monitor de Reputação / batimento da marca (Outplacement) — */
.ecg-grid line { stroke: rgba(0, 179, 255, 0.08); stroke-width: 1; }
.ecg-base { stroke: rgba(0, 179, 255, 0.16); stroke-width: 1; stroke-dasharray: 3 5; }
.ecg-scroll { animation: ecg-scroll 2s linear infinite; }
@keyframes ecg-scroll { to { transform: translateX(-100px); } }
.ecg-wave {
  fill: none; stroke: var(--blue); stroke-width: 2.5; stroke-linejoin: round; stroke-linecap: round;
  filter: drop-shadow(0 0 5px rgba(0, 179, 255, 0.75));
}
.ecg-cursor { stroke: rgba(255, 255, 255, 0.22); stroke-width: 1.5; }
.ecg-live { fill: var(--blue); animation: pulse-dot 1.6s infinite; transform-box: fill-box; transform-origin: center; }
.ecg-stable {
  fill: none; stroke: rgba(0, 179, 255, 0.55); stroke-width: 1.5;
}
.ecg-stable-fill { fill: var(--blue); }

/* — Seção do ex-colaborador (Outplacement): perks, duas etapas, escada — */
.perk-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem 2.4rem; margin-top: 2.4rem; }
.perk { display: flex; gap: 0.85rem; align-items: flex-start; padding: 0.7rem 0; border-bottom: 1px solid #eef2f6; }
.perk__ic { flex: none; width: 28px; height: 28px; margin-top: 1px; border-radius: 50%; display: grid; place-items: center; background: rgba(0, 179, 255, 0.14); color: var(--blue); transition: background 0.3s, color 0.3s, transform 0.3s; }
.perk__ic svg { width: 15px; height: 15px; }
.perk:hover .perk__ic { background: var(--blue); color: var(--white); transform: scale(1.1); }
.perk p { color: var(--text-soft); font-size: 0.96rem; line-height: 1.5; }
.perk strong { color: var(--navy); }

.duo { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.duo-card { position: relative; overflow: hidden; padding: 2.2rem 2rem; border-radius: var(--radius); background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.12); transition: transform 0.45s var(--ease), border-color 0.3s; }
.duo-card:hover { transform: translateY(-8px); border-color: var(--blue); }
.duo-card__top { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.duo-card__num { flex: none; width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--navy-deep); background: var(--blue); }
.duo-card h3 { color: var(--white); font-size: 1.35rem; }
.duo-card p { color: rgba(255, 255, 255, 0.75); font-size: 1.02rem; }
.duo-card__ic { position: absolute; right: 1.2rem; top: 1.2rem; width: 40px; height: 40px; color: rgba(0, 179, 255, 0.55); }
.duo-mini { margin-top: 1.4rem; height: 46px; display: flex; align-items: flex-end; gap: 7px; }
.duo-mini span { width: 12px; border-radius: 4px 4px 0 0; background: linear-gradient(var(--blue), rgba(0, 179, 255, 0.3)); transform-origin: bottom; animation: bar-rise 2.4s ease-in-out infinite; }

/* escada de ascensão de carreira */
.ladder-step { fill: rgba(0, 179, 255, 0.10); stroke: var(--blue); stroke-width: 2; }
.ladder-climber circle { fill: var(--white); filter: drop-shadow(0 0 7px rgba(0, 179, 255, 0.95)); }
.ladder-climber { animation: ladder-climb 5s cubic-bezier(0.5, 0, 0.5, 1) infinite; }
@keyframes ladder-climb {
  0% { transform: translate(50px, 185px); opacity: 0; }
  8% { opacity: 1; }
  22% { transform: translate(50px, 160px); }
  40% { transform: translate(96px, 130px); }
  58% { transform: translate(142px, 100px); }
  76% { transform: translate(188px, 70px); }
  90% { transform: translate(234px, 40px); opacity: 1; }
  96% { transform: translate(234px, 40px); opacity: 0; }
  100% { transform: translate(50px, 185px); opacity: 0; }
}
.ladder-goal { transform-box: fill-box; transform-origin: center; animation: goal-pop 5s ease-out infinite; }
.ladder-flag { fill: var(--blue); }

@media (max-width: 760px) {
  .perk-grid { grid-template-columns: 1fr; }
  .duo { grid-template-columns: 1fr; }
}

/* — Página Serviços: faixas animadas nos cards + ciclo de pessoas — */
.card-anim {
  position: relative; height: 112px; border-radius: 14px; overflow: hidden;
  margin-bottom: 1.3rem; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--navy), var(--navy-deep));
  border: 1px solid rgba(0, 179, 255, 0.25);
}
.card-anim svg { width: 100%; height: 100%; display: block; }

.mini-radar {
  position: relative; width: 88px; height: 88px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 179, 255, 0.14), rgba(2, 31, 60, 0.55) 72%);
  border: 1px solid rgba(0, 179, 255, 0.4);
}
.mini-radar::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, transparent 275deg, rgba(0, 179, 255, 0.55) 360deg);
  animation: spin-slow 3.5s linear infinite;
}
.mini-radar::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 6px; height: 6px;
  margin: -3px 0 0 -3px; border-radius: 50%; background: var(--blue);
  box-shadow: 0 0 8px rgba(0, 179, 255, 0.9);
}
.mini-blip {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); animation: pulse-dot 2s infinite;
}

.mini-bars { display: flex; align-items: flex-end; gap: 8px; height: 58px; }
.mini-bar { width: 13px; border-radius: 4px 4px 0 0; background: linear-gradient(var(--blue), rgba(0, 179, 255, 0.35)); transform-origin: bottom; animation: bar-rise 2.4s ease-in-out infinite; }
@keyframes bar-rise { 0%, 100% { transform: scaleY(0.3); } 50% { transform: scaleY(1); } }

.mini-track { position: relative; width: 128px; height: 56px; }
.mini-track__line { position: absolute; top: 50%; left: 4px; right: 4px; height: 2px; background: repeating-linear-gradient(90deg, rgba(0, 179, 255, 0.45) 0 6px, transparent 6px 12px); }
.mini-node { position: absolute; top: 50%; width: 16px; height: 16px; margin-top: -8px; border-radius: 50%; border: 2px solid var(--blue); background: #0d3a66; }
.mini-node--a { left: 0; }
.mini-node--b { right: 0; background: var(--blue); }
.mini-mover { position: absolute; top: 50%; left: 0; width: 10px; height: 10px; margin-top: -5px; border-radius: 50%; background: var(--white); box-shadow: 0 0 8px rgba(0, 179, 255, 0.95); animation: mini-cross 2.6s ease-in-out infinite; }
@keyframes mini-cross {
  0% { transform: translateX(4px); opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { transform: translateX(112px); opacity: 0; }
}

.cycle { display: flex; align-items: flex-start; max-width: 840px; margin: 3rem auto 0; }
.cycle__node { flex: none; width: 168px; text-align: center; }
.cycle__dot {
  position: relative; width: 74px; height: 74px; border-radius: 50%; margin: 0 auto 0.9rem;
  display: grid; place-items: center; color: var(--blue);
  background: rgba(0, 179, 255, 0.12); border: 2px solid rgba(0, 179, 255, 0.5);
}
.cycle__dot::after {
  content: ""; position: absolute; inset: -7px; border-radius: 50%;
  border: 1px solid rgba(0, 179, 255, 0.5); opacity: 0;
  animation: ping 3s ease-out infinite; animation-delay: var(--d, 0s);
}
.cycle__dot svg { width: 30px; height: 30px; }
.cycle__node h3 { color: var(--white); font-size: 1rem; }
.cycle__node p { font-size: 0.82rem; color: rgba(255, 255, 255, 0.65); margin-top: 0.3rem; }
.cycle__link { flex: 1; height: 3px; margin-top: 36px; border-radius: 2px; overflow: hidden; background: rgba(255, 255, 255, 0.1); position: relative; }
.cycle__link::after {
  content: ""; position: absolute; inset: 0; left: -22px;
  background: repeating-linear-gradient(90deg, var(--blue) 0 10px, transparent 10px 22px);
  animation: link-flow 1.1s linear infinite;
}
@keyframes link-flow { to { transform: translateX(22px); } }

/* barra de especificações (carga horária, capacidade, incluso) */
.spec-bar { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.spec {
  flex: 1; min-width: 190px; display: flex; align-items: center; gap: 0.9rem;
  background: var(--white); border: 1px solid #e8edf2; border-radius: 16px; padding: 1.05rem 1.3rem;
  transition: transform 0.4s var(--ease), border-color 0.3s;
}
.spec:hover { transform: translateY(-4px); border-color: rgba(0, 179, 255, 0.45); }
.spec__ic { flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(0, 179, 255, 0.12); color: var(--navy); }
.spec__ic svg { width: 22px; height: 22px; }
.spec strong { display: block; font-family: var(--font-display); color: var(--navy); font-size: 1.05rem; line-height: 1.2; }
.spec small { color: var(--text-soft); font-size: 0.8rem; }

/* bloco-citação (o "gancho" do Acelerador) */
.quote-hook {
  position: relative; max-width: 860px; margin: 0 auto 3rem; text-align: center;
  padding: 2.2rem 2rem; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(0, 179, 255, 0.08), rgba(1, 49, 94, 0.05));
  border: 1px solid rgba(0, 179, 255, 0.2);
}
.quote-hook__mark { font-family: var(--font-display); font-size: 3.4rem; line-height: 0.5; color: var(--blue); opacity: 0.5; }
.quote-hook p { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.15rem, 2.4vw, 1.55rem); color: var(--navy); margin-top: 0.6rem; }
.quote-hook span { display: block; margin-top: 0.8rem; color: var(--text-soft); font-size: 0.95rem; font-weight: 400; font-family: var(--font-body); }

/* workshop (Academia de Vendas) — reaproveita .card, com faixa numerada */
.workshop-tag { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-display); font-weight: 700; font-size: 0.8rem; color: var(--blue); margin-bottom: 0.6rem; }
.workshop-tag b { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 7px; background: var(--blue); color: var(--white); font-size: 0.75rem; }

/* ---------- Responsivo ---------- */
@media (max-width: 1024px) {
  .module-grid { grid-template-columns: repeat(2, 1fr); }
  .program-intro { grid-template-columns: 1fr; }
  .program-intro .anim-frame { max-width: 440px; margin-inline: auto; width: 100%; }
  .hero__grid, .radar-wrap { grid-template-columns: 1fr; }
  .hero .media-frame { max-width: 480px; margin-inline: auto; }
  .radar { margin-bottom: 4rem; }
  .grid-3, .mvv { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(3, 1fr); row-gap: 2.5rem; }
  .timeline::before, .timeline__bar { display: none; }
  .footer__main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 2.5rem;
    background: linear-gradient(160deg, var(--navy), var(--navy-deep));
    opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s; z-index: 105;
  }
  body.nav-open .nav { opacity: 1; visibility: visible; }
  .nav__list { flex-direction: column; gap: 1.4rem; text-align: center; }
  .nav__list > li > a { color: var(--white) !important; font-size: 1.2rem; }
  .subnav {
    position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
    background: transparent; box-shadow: none; min-width: 0; padding: 0.4rem 0 0;
  }
  .subnav a { color: rgba(255, 255, 255, 0.75); font-size: 0.98rem; padding: 0.35rem 1rem; }
  .subnav a:hover { background: transparent; }
  .caret { display: none; }
  .nav-toggle { display: flex; }
  .split, .grid-2, .contact-grid, .founders { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .stats-band .container { grid-template-columns: 1fr 1fr; }
  .stat + .stat::before { display: none; }
  .stats-inline { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .grid-3, .mvv { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .hero__actions .btn { width: 100%; }
  .blip__label { display: none; }
  .module-grid { grid-template-columns: 1fr; }
  .program__head { gap: 0.9rem; }
  .program__num { width: 52px; height: 52px; font-size: 1.3rem; }
}

/* ==========================================================================
   BLOG — listagem de artigos e páginas de artigo
   ========================================================================== */

/* animação decorativa do hero do blog (nós conectados / "insights") */
.blog-orbit { position: absolute; right: 4%; top: 50%; transform: translateY(-50%); width: min(340px, 34vw); opacity: 0.9; pointer-events: none; z-index: 1; }
.blog-orbit svg { width: 100%; height: auto; overflow: visible; }
.blog-orbit .bo-ring { fill: none; stroke: rgba(0, 179, 255, 0.28); stroke-width: 1.5; transform-box: fill-box; transform-origin: center; }
.blog-orbit .bo-ring--1 { animation: spin-slow 24s linear infinite; }
.blog-orbit .bo-ring--2 { animation: spin-slow 34s linear infinite reverse; }
.blog-orbit .bo-node { fill: var(--blue); filter: drop-shadow(0 0 6px rgba(0, 179, 255, 0.9)); }
.blog-orbit .bo-node--orbit { transform-box: fill-box; transform-origin: 170px 170px; }
.blog-orbit .bo-o1 { animation: spin-slow 24s linear infinite; }
.blog-orbit .bo-o2 { animation: spin-slow 34s linear infinite reverse; }
.blog-orbit .bo-core { fill: var(--white); filter: drop-shadow(0 0 12px rgba(0, 179, 255, 1)); }
.blog-orbit .bo-pulse { fill: none; stroke: var(--blue); stroke-width: 2; transform-box: fill-box; transform-origin: center; animation: ping 3s ease-out infinite; }
@media (max-width: 860px) { .blog-orbit { display: none; } }

/* filtro de tags */
.blog-filter { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 2.6rem; }
.filter-chip {
  font-family: var(--font-display); font-weight: 700; font-size: 0.85rem;
  padding: 0.5rem 1.15rem; border-radius: 999px; color: var(--navy);
  background: var(--white); border: 1.5px solid #e2e8ee;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}
.filter-chip:hover { border-color: var(--blue); transform: translateY(-2px); }
.filter-chip.is-active { background: var(--blue); color: var(--navy-deep); border-color: var(--blue); }
.filter-chip__n { font-size: 0.72em; opacity: 0.6; margin-left: 0.3rem; }

/* busca no hero */
.blog-search {
  position: relative; max-width: 560px; margin-top: 2rem;
}
.blog-search input {
  width: 100%; font: inherit; font-size: 1rem; color: var(--white);
  padding: 1rem 3.2rem 1rem 3.2rem; border-radius: 999px;
  background: rgba(255, 255, 255, 0.08); border: 1.5px solid rgba(0, 179, 255, 0.4);
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.blog-search input::placeholder { color: rgba(255, 255, 255, 0.55); }
.blog-search input:focus {
  outline: none; border-color: var(--blue); background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(0, 179, 255, 0.16);
}
.blog-search__ic {
  position: absolute; left: 1.15rem; top: 50%; transform: translateY(-50%);
  color: var(--blue); pointer-events: none; width: 20px; height: 20px;
}
.blog-search__clear {
  position: absolute; right: 0.9rem; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 50%; display: none; place-items: center;
  background: rgba(255, 255, 255, 0.15); color: var(--white); font-size: 1.1rem; line-height: 1;
  transition: background 0.25s;
}
.blog-search__clear:hover { background: var(--blue); color: var(--navy-deep); }
.blog-search.has-value .blog-search__clear { display: grid; }

/* barra de ferramentas (filtro + contador) */
.blog-toolbar {
  position: sticky; top: var(--header-h); z-index: 20;
  background: rgba(255, 255, 255, 0.92); backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid #e8edf2; margin-bottom: 2.4rem;
  padding: 0.9rem 0;
}
.blog-toolbar__row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: space-between; }
.blog-count { font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; color: var(--text-soft); white-space: nowrap; }
.blog-count b { color: var(--blue); }

/* cabeçalho de seção "Últimas publicações" */
.blog-sechead { display: flex; align-items: center; gap: 1rem; margin: 0 0 1.8rem; }
.blog-sechead h2 { font-size: 1.5rem; white-space: nowrap; }
.blog-sechead::after { content: ""; flex: 1; height: 2px; border-radius: 2px; background: linear-gradient(90deg, rgba(0,179,255,0.5), transparent); }
.blog-sechead .live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--blue); animation: pulse-dot 2s infinite; flex: none; }

.dup-hidden { display: none !important; }

/* card de artigo */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.post-card {
  display: flex; flex-direction: column; background: var(--white);
  border: 1px solid #e8edf2; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.3s;
}
.post-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(0, 179, 255, 0.4); }
.post-card__media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: linear-gradient(140deg, var(--navy), var(--navy-deep)); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.06); }
.post-card__tag {
  position: absolute; left: 0.9rem; top: 0.9rem; z-index: 2;
  font-family: var(--font-display); font-weight: 700; font-size: 0.72rem;
  color: var(--navy-deep); background: var(--blue); padding: 0.3rem 0.75rem; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0, 179, 255, 0.35);
}
.post-card__body { display: flex; flex-direction: column; flex: 1; padding: 1.4rem 1.5rem 1.6rem; }
.post-card__body h3 { font-size: 1.12rem; line-height: 1.3; margin-bottom: 0.6rem; }
.post-card__body h3 a { transition: color 0.3s; }
.post-card:hover .post-card__body h3 a { color: var(--blue); }
.post-card__excerpt { color: var(--text-soft); font-size: 0.94rem; flex: 1; }
.post-card__meta {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.2rem;
  padding-top: 1rem; border-top: 1px solid #eef2f6;
}
.post-card__date { font-size: 0.8rem; color: var(--text-soft); display: inline-flex; align-items: center; gap: 0.4rem; }
.post-card__date svg { width: 14px; height: 14px; color: var(--blue); }
.post-card__more { font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; color: var(--blue); display: inline-flex; align-items: center; gap: 0.4rem; }
.post-card__more svg { transition: transform 0.35s var(--ease); }
.post-card:hover .post-card__more svg { transform: translateX(4px); }

/* artigo em destaque (mais recente) */
.post-feature {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 0; overflow: hidden;
  background: var(--white); border: 1px solid #e8edf2; border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow); margin-bottom: 3rem;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.post-feature:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(1, 49, 94, 0.18); }
.post-feature__media { position: relative; min-height: 320px; background: linear-gradient(140deg, var(--navy), var(--navy-deep)); overflow: hidden; }
.post-feature__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.post-feature:hover .post-feature__media img { transform: scale(1.05); }
.post-feature__badge {
  position: absolute; left: 1.1rem; top: 1.1rem; z-index: 2;
  font-family: var(--font-display); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy-deep); background: var(--blue); padding: 0.4rem 0.9rem; border-radius: 999px;
}
.post-feature__body { padding: clamp(1.8rem, 4vw, 2.8rem); display: flex; flex-direction: column; justify-content: center; }
.post-feature__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.post-feature__body h2 { font-size: clamp(1.4rem, 2.6vw, 2rem); line-height: 1.2; }
.post-feature__body h2 a { transition: color 0.3s; }
.post-feature:hover .post-feature__body h2 a { color: var(--blue); }
.post-feature__body p { color: var(--text-soft); margin: 1rem 0 1.6rem; }

/* estado vazio */
.blog-empty {
  text-align: center; max-width: 560px; margin: 0 auto; padding: 3rem 1.5rem;
  background: var(--white); border: 1px dashed #cdd8e4; border-radius: var(--radius);
}
.blog-empty svg { width: 54px; height: 54px; color: var(--blue); margin: 0 auto 1.2rem; }
.blog-empty h3 { color: var(--navy); margin-bottom: 0.6rem; }
.blog-empty p { color: var(--text-soft); }

.post-hidden { display: none !important; }

@media (max-width: 1024px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px) {
  .post-feature { grid-template-columns: 1fr; }
  .post-feature__media { min-height: 220px; }
}
@media (max-width: 560px) { .post-grid { grid-template-columns: 1fr; } }

/* ---------- Corpo do artigo (páginas individuais) ---------- */
.article-body { max-width: 760px; margin-inline: auto; }
.article-body > * { margin-bottom: 1.3rem; }
.article-body p { color: var(--text); font-size: 1.06rem; line-height: 1.8; }
.article-body h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 2.6rem 0 1rem; }
.article-body h3 { font-size: 1.3rem; margin: 2rem 0 0.8rem; }
.article-body ul, .article-body ol { padding-left: 1.4rem; color: var(--text); }
.article-body li { margin-bottom: 0.6rem; }
.article-body img { width: 100%; border-radius: var(--radius); margin: 2rem auto; box-shadow: var(--shadow-soft); }
.article-body figure { margin: 2rem 0; }
.article-body figure img { width: 100%; height: auto; display: block; }
/* âncora do sumário não fica escondida sob o header fixo */
.article-body h2, .article-body h3 { scroll-margin-top: calc(var(--header-h) + 20px); }
.article-body figcaption { text-align: center; font-size: 0.85rem; color: var(--text-soft); margin-top: 0.6rem; }
.article-body blockquote {
  border-left: 4px solid var(--blue); background: var(--gray); border-radius: 0 12px 12px 0;
  padding: 1.2rem 1.5rem; font-size: 1.1rem; color: var(--navy); font-family: var(--font-display); font-weight: 600;
}
.article-body a:not(.btn) { color: var(--blue); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.article-video { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin: 2rem 0; }
.article-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.article-meta { display: flex; flex-wrap: wrap; gap: 1rem 1.6rem; align-items: center; margin-top: 1.6rem; color: rgba(255, 255, 255, 0.75); font-size: 0.9rem; }
.article-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--blue); }
.article-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 2.6rem 0 0; }
.article-share { display: flex; align-items: center; gap: 0.7rem; margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid #eef2f6; }

/* ---------- Layout do artigo: conteúdo + coluna lateral direita ---------- */
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: clamp(2rem, 4vw, 3.4rem); align-items: start; max-width: 1120px; margin-inline: auto; }
.article-layout .article-body { max-width: none; margin: 0; }
.article-aside { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: 1.4rem; }

/* sumário inteligente (TOC clicável, gerado por JS) */
.toc { background: var(--white); border: 1px solid #e8edf2; border-radius: var(--radius); padding: 1.3rem 1.4rem; box-shadow: var(--shadow-soft); }
.toc__title { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); font-weight: 800; font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.9rem; }
.toc__title::before { content: ""; width: 20px; height: 3px; border-radius: 2px; background: var(--blue); }
.toc__nav { display: grid; gap: 0.1rem; }
.toc__link { display: block; font-size: 0.9rem; line-height: 1.4; color: var(--text-soft); padding: 0.4rem 0 0.4rem 0.9rem; border-left: 2px solid #e2e8ee; transition: color 0.25s, border-color 0.25s, padding-left 0.25s; }
.toc__link:hover { color: var(--blue); border-color: rgba(0, 179, 255, 0.5); padding-left: 1.1rem; }
.toc__link--h3 { padding-left: 1.7rem; font-size: 0.84rem; }
.toc__link--h3:hover { padding-left: 1.9rem; }
.toc__link.is-active { color: var(--navy); font-weight: 600; border-color: var(--blue); }

/* banner CTA na coluna lateral */
.aside-cta { position: relative; overflow: hidden; border-radius: var(--radius); padding: 1.7rem 1.5rem; background: linear-gradient(155deg, var(--navy), var(--navy-deep)); box-shadow: var(--shadow); }
.aside-cta::before { content: ""; position: absolute; width: 180px; height: 180px; right: -70px; top: -70px; border-radius: 50%; border: 22px solid rgba(0, 179, 255, 0.16); border-right-color: transparent; animation: spin-slow 26s linear infinite; }
.aside-cta__eyebrow { position: relative; z-index: 1; font-family: var(--font-display); font-weight: 700; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); }
.aside-cta h3 { position: relative; z-index: 1; color: var(--white); font-size: 1.15rem; margin: 0.5rem 0 0.6rem; }
.aside-cta p { position: relative; z-index: 1; color: rgba(255, 255, 255, 0.75); font-size: 0.9rem; margin-bottom: 1.2rem; }
.aside-cta .btn { position: relative; z-index: 1; width: 100%; }

@media (max-width: 980px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) { .article-aside { grid-template-columns: 1fr; } }

/* ---------- Gráficos animados dentro do artigo (article-body) ---------- */

/* faixa de estatísticas em destaque */
.article-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin: 2.2rem 0;
}
.article-stat-strip .a-stat {
  background: rgba(0, 179, 255, 0.06);
  border: 1px solid rgba(0, 179, 255, 0.18);
  border-radius: 16px;
  padding: 1.3rem 1rem;
  text-align: center;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.article-stat-strip .a-stat:hover { transform: translateY(-4px); border-color: var(--blue); }
.article-stat-strip .a-stat__num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.4rem, 4vw, 1.9rem); color: var(--navy); line-height: 1;
}
.article-stat-strip .a-stat__num .text-blue { color: var(--blue); }
.article-stat-strip .a-stat__label {
  font-size: 0.8rem; color: var(--text-soft); margin-top: 0.5rem; line-height: 1.4;
}
@media (max-width: 640px) { .article-stat-strip { grid-template-columns: 1fr; } }

/* fluxo vertical de passos numerados */
.article-flow { margin: 2rem 0; }
.article-flow__item {
  display: grid; grid-template-columns: 44px 1fr; gap: 1.1rem;
  position: relative; padding-bottom: 1.9rem;
}
.article-flow__item:last-child { padding-bottom: 0; }
.article-flow__item:not(:last-child)::before {
  content: ""; position: absolute; left: 21px; top: 44px; bottom: -4px;
  width: 2px; background: rgba(0, 179, 255, 0.18);
}
.article-flow__item:not(:last-child)::after {
  content: ""; position: absolute; left: 21px; top: 44px; width: 2px; height: 0;
  background: var(--blue); transition: height 0.9s var(--ease) 0.2s;
}
.article-flow__item.in-view:not(:last-child)::after { height: calc(100% - 40px); }
.article-flow__node {
  width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--white);
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 800;
  font-size: 1.05rem; position: relative; z-index: 1;
  box-shadow: 0 0 0 5px rgba(0, 179, 255, 0.1);
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}
.article-flow__item.in-view .article-flow__node {
  background: var(--blue); transform: scale(1.08);
  transition-delay: 0.1s;
}
.article-flow__body .a-flow-title { margin: 0 0 0.4rem; font-size: 1.1rem; font-weight: 700; color: var(--navy); font-family: var(--font-display); }
.article-flow__body p { margin: 0; color: var(--text-soft); font-size: 1rem; line-height: 1.75; }

/* grade de ícones (competências / diferenciais) */
.article-icon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2rem 0; }
.article-icon-grid .a-feat {
  background: var(--white); border: 1px solid #e7edf3; border-radius: 16px;
  padding: 1.3rem 1.2rem; transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.3s;
}
.article-icon-grid .a-feat:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color: rgba(0, 179, 255, 0.35); }
.article-icon-grid .a-feat__ic {
  width: 40px; height: 40px; border-radius: 11px; background: rgba(0, 179, 255, 0.12); color: var(--blue);
  display: grid; place-items: center; margin-bottom: 0.8rem; transition: background 0.3s, color 0.3s, transform 0.3s;
}
.article-icon-grid .a-feat:hover .a-feat__ic { background: var(--blue); color: var(--white); transform: scale(1.08) rotate(-4deg); }
.article-icon-grid .a-feat__ic svg { width: 20px; height: 20px; }
.article-icon-grid .a-feat .a-feat-title { font-size: 1rem; margin-bottom: 0.4rem; font-weight: 700; color: var(--navy); font-family: var(--font-display); }
.article-icon-grid .a-feat p { font-size: 0.92rem; color: var(--text-soft); line-height: 1.6; margin: 0; }
@media (max-width: 640px) { .article-icon-grid { grid-template-columns: 1fr; } }

/* lista de alerta (erros a evitar) */
.article-alert-list { display: grid; gap: 0.7rem; margin: 2rem 0; }
.article-alert { display: flex; gap: 0.9rem; align-items: flex-start; padding: 1rem 1.1rem; background: var(--gray); border-left: 3px solid var(--navy); border-radius: 10px; transition: border-color 0.3s, background 0.3s; }
.article-alert:hover { border-color: var(--blue); background: rgba(0, 179, 255, 0.06); }
.article-alert__ic { flex: none; width: 26px; height: 26px; margin-top: 2px; border-radius: 50%; background: var(--navy); color: var(--white); display: grid; place-items: center; transition: transform 0.3s var(--ease), background 0.3s; }
.article-alert:hover .article-alert__ic { background: var(--blue); transform: scale(1.12); }
.article-alert__ic svg { width: 13px; height: 13px; }
.article-alert p { margin: 0; font-size: 0.96rem; line-height: 1.65; color: var(--text-soft); }
.article-alert p strong { color: var(--navy); }

/* grade de 3 colunas (variante do article-icon-grid) */
.article-icon-grid--3col { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 760px) { .article-icon-grid--3col { grid-template-columns: 1fr; } }

/* variante do stat-strip com 2 colunas */
.article-stat-strip--2col { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 640px) { .article-stat-strip--2col { grid-template-columns: 1fr; } }

/* tabela de faturamento das cooperativas */
.coop-table-wrap { margin: 2rem 0; border-radius: 16px; overflow: hidden; border: 1px solid #e7edf3; box-shadow: var(--shadow-soft); }
.coop-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.coop-table thead th {
  background: var(--navy); color: var(--white); font-family: var(--font-display); font-weight: 700;
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; text-align: left; padding: 0.9rem 1.2rem;
}
.coop-table thead th:first-child { width: 60px; text-align: center; }
.coop-table thead th:last-child { text-align: right; }
.coop-table tbody tr { transition: background 0.25s; }
.coop-table tbody tr:hover { background: rgba(0, 179, 255, 0.06); }
.coop-table td { padding: 0.85rem 1.2rem; font-size: 0.96rem; border-bottom: 1px solid #e7edf3; }
.coop-table tbody tr:last-child td { border-bottom: none; }
.coop-table__rank { text-align: center; font-family: var(--font-display); font-weight: 800; color: var(--blue); }
.coop-table__name { font-weight: 600; color: var(--navy); }
.coop-table__value { text-align: right; font-family: var(--font-display); font-weight: 700; color: var(--navy); }
@media (max-width: 560px) { .coop-table td, .coop-table th { padding: 0.7rem 0.7rem; font-size: 0.88rem; } }

/* quadrante de perfis (DISC e afins) */
.disc-quadrant { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2.2rem 0; }
.disc-quadrant__card {
  position: relative; background: var(--navy); border-radius: 16px; padding: 1.5rem 1.3rem 1.4rem;
  overflow: hidden; transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.disc-quadrant__card::after {
  content: ""; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(circle at 85% 15%, rgba(0, 179, 255, 0.35), transparent 60%);
  transition: opacity 0.4s;
}
.disc-quadrant__card:hover { transform: translateY(-5px); box-shadow: 0 14px 30px rgba(1, 49, 94, 0.28); }
.disc-quadrant__card:hover::after { opacity: 1; }
.disc-quadrant__letter {
  position: relative; z-index: 1; width: 46px; height: 46px; border-radius: 12px;
  background: rgba(0, 179, 255, 0.14); border: 1.5px solid rgba(0, 179, 255, 0.5); color: var(--blue);
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.3rem;
  margin-bottom: 0.9rem; transition: background 0.3s, color 0.3s, transform 0.3s;
}
.disc-quadrant__card:hover .disc-quadrant__letter { background: var(--blue); color: var(--white); transform: scale(1.08); }
.disc-quadrant__title { position: relative; z-index: 1; color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; margin-bottom: 0.6rem; }
.disc-quadrant__desc { position: relative; z-index: 1; color: rgb(255, 255, 255) !important; font-size: 0.95rem; line-height: 1.75; margin: 0; }
@media (max-width: 640px) { .disc-quadrant { grid-template-columns: 1fr; } }

/* comparativo "antes × depois" (ex.: era pré e pós eSocial) */
.era-compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1rem; align-items: stretch; margin: 2.2rem 0; }
.era-compare__card {
  position: relative; overflow: hidden; border-radius: 16px; padding: 1.4rem 1.3rem;
  background: var(--white); border: 1px solid #e7edf3;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.3s;
}
.era-compare__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color: rgba(0, 179, 255, 0.35); }
.era-compare__card--now { background: linear-gradient(155deg, var(--navy), var(--navy-deep)); border-color: transparent; }
.era-compare__card--now:hover { box-shadow: 0 14px 30px rgba(1, 49, 94, 0.28); border-color: transparent; }
.era-compare__card--now::after {
  content: ""; position: absolute; width: 170px; height: 170px; right: -66px; top: -66px; border-radius: 50%;
  border: 20px solid rgba(0, 179, 255, 0.16); border-right-color: transparent; animation: spin-slow 22s linear infinite;
}
.era-compare__label {
  position: relative; z-index: 1; display: inline-block; margin-bottom: 0.9rem;
  font-family: var(--font-display); font-weight: 800; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.32rem 0.75rem; border-radius: 999px; background: var(--gray); color: var(--text-soft);
}
.era-compare__card--now .era-compare__label { background: rgba(0, 179, 255, 0.16); color: var(--blue); }
.era-compare__list { position: relative; z-index: 1; list-style: none; padding: 0; margin: 0; }
.era-compare__list li { position: relative; padding-left: 1.4rem; margin-bottom: 0.7rem; font-size: 0.95rem; line-height: 1.6; color: var(--text-soft); }
.era-compare__list li:last-child { margin-bottom: 0; }
.era-compare__list li::before { content: ""; position: absolute; left: 0; top: 0.52rem; width: 8px; height: 8px; border-radius: 50%; background: #cdd8e4; }
.era-compare__card--now .era-compare__list li { color: rgba(255, 255, 255, 0.82); }
.era-compare__card--now .era-compare__list li::before { background: var(--blue); box-shadow: 0 0 10px rgba(0, 179, 255, 0.9); }
.era-compare__arrow {
  align-self: center; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: var(--blue); color: var(--white); animation: era-nudge 2.4s ease-in-out infinite; flex: none;
}
.era-compare__arrow svg { width: 100%; height: 100%; }
.era-compare__arrow svg { width: 20px; height: 20px; }
@keyframes era-nudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(6px); } }
@keyframes era-nudge-v { 0%, 100% { transform: rotate(90deg) translateX(0); } 50% { transform: rotate(90deg) translateX(6px); } }
@media (max-width: 720px) {
  .era-compare { grid-template-columns: 1fr; }
  .era-compare__arrow { margin: 0 auto; animation-name: era-nudge-v; }
}

/* checklist interativa dentro do artigo (o leitor marca os itens — só CSS)
   nome próprio para não colidir com o .check-list das páginas institucionais */
.self-check { display: grid; gap: 0.6rem; margin: 1.6rem 0 2rem; }
.self-check__item { display: block; position: relative; cursor: pointer; }
.self-check__item input { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; opacity: 0; }
.self-check__box {
  display: flex; gap: 0.9rem; align-items: flex-start; padding: 0.95rem 1.1rem;
  background: var(--white); border: 1.5px solid #e2e8ee; border-radius: 12px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}
.self-check__item:hover .self-check__box { border-color: rgba(0, 179, 255, 0.5); transform: translateX(4px); }
.self-check__tick {
  flex: none; width: 24px; height: 24px; border-radius: 7px; border: 2px solid #cdd8e4;
  display: grid; place-items: center; color: transparent;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.3s var(--ease);
}
.self-check__tick svg { width: 13px; height: 13px; }
.self-check__txt { margin: 0; font-size: 0.96rem; line-height: 1.6; color: var(--text-soft); transition: color 0.25s; }
.self-check__txt strong { color: var(--navy); }
.self-check__item input:checked ~ .self-check__box { border-color: var(--blue); background: rgba(0, 179, 255, 0.06); }
.self-check__item input:checked ~ .self-check__box .self-check__tick { background: var(--blue); border-color: var(--blue); color: var(--white); transform: scale(1.1) rotate(-6deg); }
.self-check__item input:checked ~ .self-check__box .self-check__txt { color: var(--navy); }
.self-check__item input:focus-visible ~ .self-check__box { outline: 3px solid rgba(0, 179, 255, 0.35); outline-offset: 2px; }
.self-check__hint { font-size: 0.9rem; color: var(--text-soft); font-style: italic; }

/* ---------- WhatsApp Button ---------- */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 999;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 179, 255, 0.4);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 179, 255, 0.6);
}

.whatsapp-btn svg { transition: transform 0.3s ease; }
.whatsapp-btn:hover svg { transform: rotate(10deg); }

@media (max-width: 768px) {
  .whatsapp-btn { bottom: 16px; right: 16px; width: 48px; height: 48px; }
  .whatsapp-btn svg { width: 20px; height: 20px; }
}

/* ==========================================================================
   CALCULADORA — custo de uma contratação errada
   ========================================================================== */

.calc-shell { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(1.6rem, 3vw, 2.6rem); align-items: start; }
.calc-form { display: grid; gap: 1.4rem; min-width: 0; }

.calc-panel {
  background: var(--white); border: 1px solid #e8edf2; border-radius: var(--radius);
  box-shadow: var(--shadow-soft); padding: clamp(1.4rem, 3vw, 2rem);
}

.calc-step { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.calc-step__n {
  flex: none; width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--navy)); color: var(--white);
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
}
.calc-step__title { font-size: 1.2rem; }
.calc-step__hint { color: var(--text-soft); font-size: 0.9rem; margin-top: 0.25rem; }

/* chips de nível da vaga */
.calc-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.6rem; }
.calc-chip {
  font-family: var(--font-display); font-weight: 700; font-size: 0.82rem;
  padding: 0.5rem 1.05rem; border-radius: 999px; color: var(--navy);
  background: var(--white); border: 1.5px solid #e2e8ee;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}
.calc-chip:hover { border-color: var(--blue); transform: translateY(-2px); }
.calc-chip.is-active { background: var(--blue); color: var(--navy-deep); border-color: var(--blue); }

.calc-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.3rem; }

.calc-field { display: grid; gap: 0.45rem; align-content: start; min-width: 0; }
.calc-field label {
  display: flex; align-items: baseline; justify-content: space-between; gap: 0.8rem;
  font-weight: 600; font-size: 0.87rem; color: var(--navy); line-height: 1.35;
}
.calc-out {
  font-family: var(--font-display); font-weight: 800; font-size: 0.9rem; color: var(--blue);
  white-space: nowrap; flex: none;
}
.calc-help { font-size: 0.8rem; color: var(--text-soft); line-height: 1.5; margin-top: 0.1rem; }

/* campos com prefixo R$ ou sufixo (%, h, min) */
.calc-money {
  display: flex; align-items: center; gap: 0.5rem;
  border: 1.5px solid #dfe6ec; background: #fbfcfd; border-radius: 12px; padding: 0 0.9rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.calc-money:focus-within { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0, 179, 255, 0.14); }
.calc-money span { font-family: var(--font-display); font-weight: 700; font-size: 0.88rem; color: var(--text-soft); flex: none; }
.calc-money input {
  font: inherit; font-family: var(--font-display); font-weight: 700; color: var(--navy);
  width: 100%; min-width: 0; border: none; background: none; outline: none;
  padding: 0.8rem 0; -moz-appearance: textfield;
}
.calc-money input::-webkit-outer-spin-button,
.calc-money input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.calc-money--suffix { justify-content: space-between; }

/* sliders */
.calc-field input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 4px;
  margin: 0.5rem 0 0; cursor: pointer; outline: none;
  background: linear-gradient(90deg, var(--blue) 0 var(--fill, 50%), #e2e8ee var(--fill, 50%) 100%);
}
.calc-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--blue); box-shadow: 0 4px 12px rgba(0, 179, 255, 0.4);
  transition: transform 0.2s var(--ease);
}
.calc-field input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-field input[type="range"]::-moz-range-thumb {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--blue); box-shadow: 0 4px 12px rgba(0, 179, 255, 0.4);
}
.calc-field input[type="range"]:focus-visible { box-shadow: 0 0 0 4px rgba(0, 179, 255, 0.2); }
.calc-scale { display: flex; justify-content: space-between; font-size: 0.72rem; color: var(--text-soft); }
.calc-scale i { font-style: normal; }

/* checkbox */
.calc-check { display: flex; gap: 0.7rem; align-items: center; cursor: pointer; margin-top: 1.1rem; font-size: 0.9rem; color: var(--text-soft); }
.calc-check input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.calc-check__box {
  flex: none; width: 22px; height: 22px; border-radius: 7px; border: 2px solid #cdd8e4;
  display: grid; place-items: center; color: transparent;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.calc-check input:checked ~ .calc-check__box { background: var(--blue); border-color: var(--blue); color: var(--white); }
.calc-check input:focus-visible ~ .calc-check__box { outline: 3px solid rgba(0, 179, 255, 0.35); outline-offset: 2px; }

/* premissas avançadas */
.calc-adv { padding: 0; overflow: hidden; }
.calc-adv summary {
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem clamp(1.4rem, 3vw, 2rem);
}
.calc-adv summary::-webkit-details-marker { display: none; }
.calc-adv summary strong { display: block; font-family: var(--font-display); color: var(--navy); font-size: 0.98rem; }
.calc-adv summary small { display: block; color: var(--text-soft); font-size: 0.82rem; margin-top: 0.15rem; }
.calc-adv__ic {
  flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: var(--gray); color: var(--navy); transition: transform 0.4s var(--ease), background 0.3s, color 0.3s;
}
.calc-adv[open] .calc-adv__ic { transform: rotate(45deg); background: var(--blue); color: var(--white); }
.calc-adv__body { padding: 0 clamp(1.4rem, 3vw, 2rem) 1.6rem; border-top: 1px solid #eef2f6; }
.calc-sub {
  font-family: var(--font-display); font-weight: 800; font-size: 0.74rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue); margin: 1.5rem 0 0.9rem;
}
.calc-reset {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.6rem;
  font-family: var(--font-display); font-weight: 700; font-size: 0.84rem; color: var(--navy);
  border: 1.5px solid #e2e8ee; border-radius: 999px; padding: 0.55rem 1.1rem;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.calc-reset:hover { border-color: var(--blue); color: var(--blue); background: rgba(0, 179, 255, 0.06); }

.calc-privacy { display: flex; align-items: center; gap: 0.55rem; font-size: 0.82rem; color: var(--text-soft); }
.calc-privacy svg { flex: none; color: var(--blue); }

/* ---------- painel de resultado ---------- */
.calc-result { position: sticky; top: calc(var(--header-h) + 16px); }
.calc-result__card {
  position: relative; overflow: hidden; border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%);
  box-shadow: var(--shadow); padding: clamp(1.6rem, 3vw, 2.1rem);
}
.calc-result__card::before {
  content: ""; position: absolute; width: 240px; height: 240px; right: -95px; top: -95px; border-radius: 50%;
  border: 26px solid rgba(0, 179, 255, 0.14); border-right-color: transparent;
  animation: spin-slow 28s linear infinite; pointer-events: none;
}
.calc-result__eyebrow {
  position: relative; z-index: 1; display: block;
  font-family: var(--font-display); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue);
}
.calc-result__big {
  position: relative; z-index: 1; display: block; margin-top: 0.4rem;
  font-family: var(--font-display); font-weight: 800; line-height: 1.05; color: var(--white);
  font-size: clamp(2rem, 4.4vw, 2.9rem); letter-spacing: -0.02em;
}
.calc-result__big--alert { color: var(--blue); }
.calc-result__note { position: relative; z-index: 1; color: rgba(255, 255, 255, 0.7); font-size: 0.85rem; margin-top: 0.6rem; line-height: 1.5; }

.calc-mini { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-top: 1.5rem; }
.calc-mini > div { background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 14px; padding: 0.9rem 1rem; }
.calc-mini__num { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: var(--white); line-height: 1.1; }
.calc-mini__label { display: block; font-size: 0.75rem; color: rgba(255, 255, 255, 0.6); margin-top: 0.25rem; line-height: 1.35; }

.calc-split { position: relative; z-index: 1; margin-top: 1.2rem; display: grid; gap: 0.1rem; }
.calc-split li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: 0.7rem 0; border-bottom: 1px dashed rgba(255, 255, 255, 0.14);
  font-size: 0.88rem; color: rgba(255, 255, 255, 0.72);
}
.calc-split li:last-child { border-bottom: none; }
.calc-split b { font-family: var(--font-display); font-size: 1rem; color: var(--white); white-space: nowrap; }

.calc-result__alert {
  position: relative; z-index: 1; margin-top: 1.4rem; padding-top: 1.4rem;
  border-top: 1px solid rgba(0, 179, 255, 0.35);
}
.calc-result__cta { position: relative; z-index: 1; width: 100%; margin-top: 1.6rem; }
.calc-print {
  position: relative; z-index: 1; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%; margin-top: 0.7rem; padding: 0.6rem;
  font-family: var(--font-display); font-weight: 600; font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6); transition: color 0.3s;
}
.calc-print:hover { color: var(--blue); }

/* ---------- tabela etapa a etapa ---------- */
.calc-table-wrap {
  background: var(--white); border: 1px solid #e7edf3; border-radius: var(--radius);
  box-shadow: var(--shadow-soft); overflow: hidden;
}
.calc-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.calc-table thead th {
  background: var(--navy); color: var(--white); text-align: left; white-space: nowrap;
  font-family: var(--font-display); font-weight: 700; font-size: 0.76rem;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 0.9rem 1.1rem;
}
.calc-table td { padding: 0.85rem 1.1rem; font-size: 0.92rem; color: var(--text-soft); border-bottom: 1px solid #eef2f6; vertical-align: middle; }
.calc-table tbody tr { transition: background 0.25s; }
.calc-table tbody tr:hover { background: rgba(0, 179, 255, 0.05); }
.calc-table__step b { display: block; font-family: var(--font-display); font-size: 0.95rem; color: var(--navy); }
.calc-table__step small { display: block; font-size: 0.78rem; color: var(--text-soft); margin-top: 0.15rem; }
.calc-table__cost { font-family: var(--font-display); font-weight: 700; color: var(--navy); white-space: nowrap; }
.calc-table tfoot td {
  background: var(--gray); border-bottom: none; border-top: 2px solid var(--blue);
  font-family: var(--font-display); font-weight: 800; color: var(--navy); font-size: 0.95rem;
}
.calc-badge {
  display: inline-block; white-space: nowrap; border-radius: 999px; padding: 0.28rem 0.7rem;
  font-family: var(--font-display); font-weight: 700; font-size: 0.72rem;
}
.calc-badge.is-c3 { background: var(--blue); color: var(--navy-deep); }
.calc-badge.is-partial { background: rgba(0, 179, 255, 0.14); color: var(--navy); }
.calc-badge.is-you { background: var(--gray); color: var(--text-soft); }

/* equivalências */
.calc-eq { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.8rem; }
.calc-eq__item {
  background: var(--white); border: 1px solid #e7edf3; border-radius: 16px; padding: 1.4rem 1.3rem;
  text-align: center; transition: transform 0.35s var(--ease), border-color 0.3s;
}
.calc-eq__item:hover { transform: translateY(-5px); border-color: rgba(0, 179, 255, 0.45); }
.calc-eq__num { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem, 3.6vw, 2.4rem); color: var(--blue); line-height: 1; }
.calc-eq__label { display: block; font-size: 0.85rem; color: var(--text-soft); margin-top: 0.6rem; line-height: 1.45; }

/* ---------- anatomia do erro ---------- */
.calc-cost-grid .card { display: flex; flex-direction: column; }
.calc-cost-grid .card p b { color: var(--white); font-family: var(--font-display); white-space: nowrap; }
.calc-cost__num {
  display: block; margin-top: auto; padding-top: 1.1rem;
  font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; color: var(--blue); line-height: 1.1;
}

.calc-risk {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem;
  margin-top: 1.8rem; padding: 1.8rem clamp(1.4rem, 3vw, 2.2rem); border-radius: var(--radius);
  background: rgba(0, 179, 255, 0.08); border: 1px solid rgba(0, 179, 255, 0.3);
}
.calc-risk__eyebrow { display: block; font-family: var(--font-display); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.4rem; }
.calc-risk p { color: rgba(255, 255, 255, 0.78); max-width: 560px; font-size: 0.97rem; }
.calc-risk__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 4vw, 2.6rem); color: var(--white); line-height: 1; }

/* ---------- cenário Geração C3 ---------- */
.calc-vs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.calc-vs__item {
  background: var(--white); border: 1px solid #e7edf3; border-radius: var(--radius); padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-soft); transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.3s;
}
.calc-vs__item:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(0, 179, 255, 0.4); }
.calc-vs__item--hl { background: linear-gradient(155deg, var(--navy), var(--navy-deep)); border-color: transparent; }
.calc-vs__num { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem, 3.4vw, 2.3rem); color: var(--navy); line-height: 1.05; }
.calc-vs__item--hl .calc-vs__num { color: var(--blue); }
.calc-vs__label { display: block; font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--navy); margin-top: 0.5rem; }
.calc-vs__item--hl .calc-vs__label { color: var(--white); }
.calc-vs__sub { display: block; font-size: 0.85rem; color: var(--text-soft); margin-top: 0.5rem; line-height: 1.5; }
.calc-vs__item--hl .calc-vs__sub { color: rgba(255, 255, 255, 0.7); }
.calc-vs__sub b { color: var(--blue); font-family: var(--font-display); }

.calc-compare {
  margin-top: 2rem; padding: clamp(1.6rem, 3vw, 2.4rem); border-radius: var(--radius);
  background: var(--gray); border: 1px dashed #cdd8e4;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem 2.4rem; align-items: center;
}
.calc-compare__head h3 { font-size: 1.2rem; }
.calc-compare__head p { color: var(--text-soft); font-size: 0.92rem; margin-top: 0.5rem; }
.calc-compare__row { display: grid; gap: 1rem; }
.calc-compare__row .calc-money { background: var(--white); }
.calc-compare__out { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.calc-compare__out[hidden], .calc-compare__empty[hidden] { display: none; }
.calc-compare__label { display: block; font-size: 0.78rem; color: var(--text-soft); }
.calc-compare__num { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.45rem; color: var(--navy); line-height: 1.15; margin-top: 0.2rem; }
.calc-compare__empty { font-size: 0.88rem; color: var(--text-soft); }
.calc-compare__empty a { color: var(--blue); font-weight: 600; }

/* ---------- responsivo ---------- */
@media (max-width: 1024px) {
  .calc-shell { grid-template-columns: 1fr; }
  .calc-result { position: static; }
  .calc-result__card { max-width: 640px; margin-inline: auto; }
}
@media (max-width: 860px) {
  .calc-eq, .calc-vs { grid-template-columns: 1fr; }
  .calc-compare { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .calc-grid-2 { grid-template-columns: 1fr; }
  .calc-mini { grid-template-columns: 1fr; }
  .calc-compare__out { grid-template-columns: 1fr; }

  /* tabela vira lista de cards */
  .calc-table-wrap { border: none; box-shadow: none; background: none; }
  .calc-table thead { display: none; }
  .calc-table, .calc-table tbody, .calc-table tfoot, .calc-table tr, .calc-table td { display: block; width: 100%; }
  .calc-table tr {
    background: var(--white); border: 1px solid #e7edf3; border-radius: 16px;
    padding: 1rem 1.1rem; margin-bottom: 0.8rem;
  }
  .calc-table td { border-bottom: none; padding: 0.3rem 0; display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; }
  .calc-table td:empty { display: none; }
  .calc-table td[data-th]::before {
    content: attr(data-th); font-size: 0.78rem; color: var(--text-soft); font-weight: 600;
  }
  .calc-table td.calc-table__step { display: block; margin-bottom: 0.5rem; }
  .calc-table tfoot tr { border-top: 2px solid var(--blue); }
}

/* ==========================================================================
   PÁGINA 404 — "radar procurando a página"
   ========================================================================== */
.e404 {
  position: relative; overflow: hidden;
  min-height: calc(100vh - var(--header-h));
  display: grid; align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 clamp(3rem, 7vw, 5rem);
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
}
.e404__inner { position: relative; z-index: 2; text-align: center; }
.e404 h1 { color: var(--white); margin-top: 2.2rem; }
.e404 h1 .text-blue { color: var(--blue); }
.e404__lead {
  color: rgba(255, 255, 255, 0.78); max-width: 640px; margin: 1rem auto 0;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.e404__tag {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue);
  background: rgba(0, 179, 255, 0.1); border: 1px solid rgba(0, 179, 255, 0.35);
  border-radius: 999px; padding: 0.45rem 1rem;
}
.e404__tag .pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); animation: pulse-dot 1.6s infinite; }

/* ---------- o "404" com o radar no lugar do zero ---------- */
.e404__code {
  --scope: clamp(7.5rem, 21vw, 15rem);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  gap: clamp(0.4rem, 1.4vw, 1.2rem); margin-top: clamp(2rem, 4vw, 3rem);
}
.e404__digit {
  font-family: var(--font-display); font-weight: 800; line-height: 0.8;
  font-size: calc(var(--scope) * 1.02);
  background: linear-gradient(180deg, #ffffff 30%, rgba(0, 179, 255, 0.75) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: e404-float 6s ease-in-out infinite;
}
.e404__digit:last-child { animation-delay: -3s; }
@keyframes e404-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.e404__scope {
  position: relative; flex: none;
  width: var(--scope); height: var(--scope); border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 179, 255, 0.16) 0%, rgba(2, 31, 60, 0.9) 70%);
  border: 2px solid rgba(0, 179, 255, 0.45);
  box-shadow: 0 0 40px rgba(0, 179, 255, 0.25), inset 0 0 30px rgba(0, 179, 255, 0.12);
  overflow: hidden;
}
.e404__scope-grid { position: absolute; inset: 0; width: 100%; height: 100%; }
.e404__scope-grid circle, .e404__scope-grid line { fill: none; stroke: rgba(0, 179, 255, 0.28); stroke-width: 1; }

/* feixe que gira */
.e404__sweep {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg,
    rgba(0, 179, 255, 0) 0deg,
    rgba(0, 179, 255, 0) 300deg,
    rgba(0, 179, 255, 0.1) 330deg,
    rgba(0, 179, 255, 0.5) 358deg,
    rgba(0, 179, 255, 0.75) 360deg);
  animation: spin-slow 4s linear infinite;
}
.e404__beam {
  position: absolute; left: 50%; top: 50%; width: 50%; height: 2px;
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--blue), rgba(0, 179, 255, 0));
  animation: spin-slow 4s linear infinite;
}
.e404__scope-center {
  position: absolute; left: 50%; top: 50%; width: 9px; height: 9px; margin: -4.5px 0 0 -4.5px;
  border-radius: 50%; background: var(--blue); box-shadow: 0 0 14px var(--blue);
}

/* pontos que acendem quando o feixe passa */
.e404__blip {
  position: absolute; width: 9px; height: 9px; border-radius: 50%;
  background: var(--blue); opacity: 0; transform: translate(-50%, -50%) scale(0.4);
  animation: e404-blip 4s linear infinite;
}
.e404__blip::after {
  content: ""; position: absolute; inset: -8px; border-radius: 50%;
  border: 1px solid rgba(0, 179, 255, 0.7);
}
.e404__blip--1 { left: 74%; top: 34%; animation-delay: -3.35s; }
.e404__blip--2 { left: 62%; top: 74%; animation-delay: -2.6s; }
.e404__blip--3 { left: 28%; top: 66%; animation-delay: -1.6s; }
.e404__blip--4 { left: 33%; top: 27%; animation-delay: -0.6s; }
@keyframes e404-blip {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.4); }
  4% { opacity: 1; transform: translate(-50%, -50%) scale(1.3); box-shadow: 0 0 18px var(--blue); }
  40% { opacity: 0.55; transform: translate(-50%, -50%) scale(1); }
  85%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.4); }
}

/* linha de varredura sobre o "404" inteiro */
.e404__scan {
  position: absolute; inset: -10% -6%; pointer-events: none;
  background: linear-gradient(90deg,
    rgba(0, 179, 255, 0) 0%, rgba(0, 179, 255, 0.35) 44%,
    rgba(255, 255, 255, 0.7) 50%, rgba(0, 179, 255, 0.35) 56%, rgba(0, 179, 255, 0) 100%);
  width: 13%; left: -13%;
  mix-blend-mode: screen; filter: blur(6px);
  animation: e404-scan 4s cubic-bezier(0.66, 0, 0.34, 1) infinite;
}
@keyframes e404-scan {
  0% { left: -13%; opacity: 0; }
  12% { opacity: 0.55; }
  60% { opacity: 0.55; }
  72%, 100% { left: 106%; opacity: 0; }
}

/* status estilo terminal */
.e404__status {
  display: inline-block; margin-top: 1.6rem; max-width: 100%;
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 600; color: var(--blue);
}
.e404__status b { color: rgba(255, 255, 255, 0.85); font-weight: 600; }
.e404__status .pulse-dot {
  display: inline-block; vertical-align: middle; margin-right: 0.5rem;
  width: 8px; height: 8px; border-radius: 50%; background: var(--blue); animation: pulse-dot 1.6s infinite;
}

/* ---------- atalhos ---------- */
.e404__links {
  display: grid; gap: 1rem; margin: clamp(2.2rem, 4vw, 3rem) auto 0;
  grid-template-columns: repeat(4, 1fr); max-width: 940px; text-align: left;
}
.e404__link {
  display: block; padding: 1.1rem 1.2rem; border-radius: 16px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
}
.e404__link:hover, .e404__link:focus-visible {
  transform: translateY(-4px); background: rgba(0, 179, 255, 0.1); border-color: rgba(0, 179, 255, 0.5);
}
.e404__link strong {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-size: 0.98rem; font-weight: 700; color: var(--white);
}
.e404__link strong svg { color: var(--blue); flex: none; }
.e404__link span { display: block; margin-top: 0.35rem; font-size: 0.85rem; color: rgba(255, 255, 255, 0.66); line-height: 1.5; }

.e404__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; margin-top: clamp(2rem, 4vw, 2.8rem); }
.e404__hint { margin-top: 1.6rem; font-size: 0.88rem; color: rgba(255, 255, 255, 0.6); }
.e404__hint a { color: var(--blue); font-weight: 600; }
.e404__hint a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .e404__links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .e404__links { grid-template-columns: 1fr; }
  .e404__code { --scope: 5.6rem; }
  .e404__status { font-size: 0.76rem; }
}

@media (prefers-reduced-motion: reduce) {
  .e404__scan { display: none; }
  .e404__blip { opacity: 0.9; transform: translate(-50%, -50%) scale(1); }
}

/* ---------- impressão / salvar em PDF ---------- */
@media print {
  .site-header, .site-footer, .whatsapp-btn, .nav-toggle,
  .calc-print, .calc-result__cta, .cta-band, .calc-adv, .calc-privacy,
  .deco-arc, .float-dots, .calc-compare, .faq { display: none !important; }
  .page-hero { padding: 0 0 1rem !important; background: none !important; color: var(--text) !important; }
  .page-hero h1, .page-hero p, .breadcrumb { color: var(--text) !important; }
  .hero__badge { display: none !important; }
  .section { padding: 1rem 0 !important; }
  .section--navy, .section--gray { background: none !important; }
  .section--navy h2, .section--navy h3, .section--navy p, .section--navy .lead,
  .card--dark h3, .card--dark p, .calc-risk p { color: var(--text) !important; }
  .calc-shell { grid-template-columns: 1fr !important; }
  .calc-result { position: static !important; }
  .calc-result__card, .card--dark, .calc-vs__item--hl { background: none !important; border: 1px solid #cdd8e4 !important; box-shadow: none !important; }
  .calc-result__big, .calc-result__note, .calc-mini__num, .calc-mini__label,
  .calc-split li, .calc-split b, .calc-risk__num, .calc-vs__item--hl .calc-vs__label,
  .calc-vs__item--hl .calc-vs__sub { color: var(--text) !important; }
  .calc-result__card::before { display: none !important; }
  .reveal, .reveal-left, .reveal-right, .reveal-zoom { opacity: 1 !important; transform: none !important; }
  .calc-table-wrap, .calc-eq__item, .calc-vs__item { break-inside: avoid; }
}

/* ---------- Acessibilidade: reduz animações ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important; scroll-behavior: auto !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-zoom { opacity: 1; transform: none; }
}
