/* ── TOKENS ───────────────────────────── */
:root {
  --black: #050e2a;
  --navy: #0d50b8;
  --navy-form: #0a3e96;
  --navy-foot: #07276a;
  --cyan: #1cc8e5;
  --orange: #e87520;
  --orange-d: #c96418;
  --w: #ffffff;
  --off: #f3f2ef;
  --txt: #1a1a1a;
  --muted: #6a6a6a;
  --rule: #e0dfdb;
  /* Easing — exponential ease-out (smooth, premium) */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--txt);
  background: var(--w);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}

/* Suprime botão de play nativo em todos os browsers */
video::-webkit-media-controls {
  display: none !important;
}
video::-webkit-media-controls-panel {
  display: none !important;
}
video::-webkit-media-controls-play-button {
  display: none !important;
}
video::-webkit-media-controls-start-playback-button {
  display: none !important;
}
video::--webkit-media-controls-overlay-play-button {
  display: none !important;
}

/* Skip link (acessibilidade) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  background: var(--orange);
  color: var(--w);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 20px;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 8px;
}

/* Quebra de linha do subtítulo: visível só no mobile */
.sub-break {
  display: none;
}

/* ── DISPLAY FONT UTIL ────────────────── */
.display {
  font-family: "Barlow Condensed", sans-serif;
}
.display-it {
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
}

/* ── SCROLL REVEAL ────────────────────── */
/*
Easing: cubic-bezier(0.16,1,0.3,1) — spring suave
Começa devagar, desacelera organicamente
Sem blur: zero custo de GPU, zero abruptidão
    */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition:
    opacity 1.3s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.3s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal {
  transform: translateY(22px);
}
.reveal-left {
  transform: translateX(-32px);
}
.reveal-right {
  transform: translateX(32px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* Stagger — cards aparecem um por vez com intervalo claro */
[data-delay="1"] {
  transition-delay: 0s;
}
[data-delay="2"] {
  transition-delay: 0.28s;
}
[data-delay="3"] {
  transition-delay: 0.56s;
}
[data-delay="4"] {
  transition-delay: 0.84s;
}
[data-delay="5"] {
  transition-delay: 1.12s;
}
[data-delay="6"] {
  transition-delay: 1.4s;
}

/* ── NAV ──────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 300;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  background: var(--navy-foot);
  transition: box-shadow 0.4s var(--ease);
}
.nav.elevated {
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.4);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav__divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}
.nav__logo {
  height: 36px;
  width: auto;
  display: block;
}
.nav__logo-move {
  height: 40px;
  width: auto;
  display: block;
}
.nav__wordmark {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1;
  color: var(--w);
  text-decoration: none;
  white-space: nowrap;
}
.nav__wordmark b {
  color: var(--cyan);
  font-weight: 900;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-cta {
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy-foot);
  background: var(--cyan);
  padding: 9px 20px;
  border-radius: 4px;
  transition:
    opacity 0.2s var(--ease),
    transform 0.2s var(--ease);
  white-space: nowrap;
}
.nav-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* ── HERO ─────────────────────────────── */
.hero {
  position: relative;
  height: 78vh;
  min-height: 560px;
  max-height: 860px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Replicando degrade.png: radial brilhante no topo-centro → navy profundo nas bordas/base */
  background: radial-gradient(
    ellipse 130% 85% at 50% 5%,
    rgba(26, 110, 216, 0.68) 0%,
    rgba(13, 80, 184, 0.78) 28%,
    rgba(8, 40, 144, 0.88) 55%,
    rgba(5, 14, 42, 0.96) 100%
  );
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  /* nav 64px + vertical breathing room proporcional */
  padding: calc(64px + 9vh) 56px 0;
}

/* Entrance keyframes */
@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero__h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(56px, 8vw, 108px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -1px;
  color: var(--w);
  margin-bottom: 20px;
}
.hero__h1 .word {
  display: inline-block;
  opacity: 0;
  animation: heroIn 1s var(--ease) forwards;
}
.hero__h1 .word--1 {
  animation-delay: 0.3s;
  font-weight: 800;
}
.hero__h1 .word--2 {
  animation-delay: 0.55s;
  color: var(--orange);
  font-weight: 900;
  font-style: italic;
  font-size: 1.08em;
}
.hero__h1 .word--3 {
  animation-delay: 0.8s;
  font-weight: 800;
}

.hero__sub {
  font-size: clamp(13px, 1.6vw, 18px);
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 52px;
  white-space: nowrap;
  line-height: 1;
  opacity: 0;
  animation: heroIn 0.8s var(--ease) 1s forwards;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--w);
  background: var(--orange);
  padding: 18px 56px;
  border-radius: 6px;
  transition:
    background 0.25s var(--ease),
    transform 0.2s var(--ease),
    box-shadow 0.25s var(--ease);
  opacity: 0;
  animation: heroIn 0.8s var(--ease) 1.2s forwards;
}
.btn:hover {
  background: var(--orange-d);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(232, 106, 26, 0.4);
}

.hero__logos {
  position: absolute;
  bottom: 36px;
  right: 56px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  mix-blend-mode: screen;
  opacity: 0;
  animation: fadeIn 0.9s var(--ease) 1.5s forwards;
}
.hero__logos-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}
.hero__logos img {
  height: 38px;
  width: auto;
  filter: invert(1);
  opacity: 0.85;
}

.hero__pulse {
  position: absolute;
  bottom: 44px;
  left: 56px;
  z-index: 2;
}
.hero__pulse-bar {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: pulseLine 2.4s var(--ease) 1.6s infinite;
}
@keyframes pulseLine {
  0%,
  100% {
    opacity: 0.15;
    transform: scaleY(0.3);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
}

/* ── STORYTELLING ─────────────────────── */
.intro {
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 0;
  min-height: 580px;
  position: relative;
  overflow: hidden;
  align-items: stretch;
  margin-bottom: -2px;
}
.intro::before {
  content: "MOVER";
  position: absolute;
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  font-size: 26vw;
  font-weight: 900;
  letter-spacing: -4px;
  color: rgba(20, 47, 110, 0.04);
  top: 50%;
  left: -3%;
  transform: translateY(-50%);
  pointer-events: none;
  line-height: 1;
  z-index: 0;
}

.intro__text {
  position: relative;
  z-index: 2;
  background: var(--w);
  padding: 80px 56px 80px 84px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: none;
}

.h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
  color: var(--navy);
  margin-bottom: 36px;
  letter-spacing: -0.5px;
}
.h2 .acc {
  display: inline;
  font-style: italic;
  color: var(--cyan);
}

.body-p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 20px;
  max-width: 500px;
}
.body-p strong {
  color: var(--navy);
  font-weight: 700;
}

.intro__media {
  position: relative;
  overflow: hidden;
  background: var(--w);
  min-height: 480px;
  height: 100%;
  margin-left: -1px;
  width: calc(100% + 1px);
}
/* Arco branco à esquerda, recriado via CSS (vale para qualquer foto).
 Ajustes: --arco-pico = largura no ponto mais saliente (centro);
 o "esticão" vertical (top/bottom negativos) deixa o arco mais suave. */
.intro__media::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -40%;
  bottom: -40%;
  left: 0;
  width: var(--arco-pico, 23%);
  background: var(--w);
  border-radius: 0 100% 100% 0 / 0 50% 50% 0;
  pointer-events: none;
}
.intro__slides {
  position: absolute;
  inset: 0;
  transform-origin: left center;
  will-change: transform;
}
.intro__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 18% center;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.intro__slide.is-active {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .intro__slide {
    transition: none;
  }
}

/* ── CONDIÇÕES ESPECIAIS ──────────────── */
.programa {
  background: var(--navy);
  padding: 96px 0 96px;
}

.programa__head {
  text-align: center;
  padding: 0 56px;
  margin-bottom: 72px;
}

.eyebrow-sm {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}
.eyebrow-sm--light {
  color: var(--cyan);
}
.eyebrow-sm--dark {
  color: rgba(11, 28, 46, 0.5);
}

.display-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.5px;
}
.display-title--light {
  color: var(--w);
}
.display-title--dark {
  color: var(--navy);
}

.programa__display-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  line-height: 1.1;
}
.programa__title-logo {
  height: 1.55em;
  width: auto;
  display: block;
  flex-shrink: 0;
}

/* Stats — full width, no outer container */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat {
  padding: 56px 48px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
}
.stat:last-child {
  border-right: none;
}

.stat__num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(52px, 5.5vw, 80px);
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}
.stat__num-unit {
  font-family: "Montserrat", sans-serif;
  font-size: 0.35em;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: lowercase;
  color: rgba(28, 200, 229, 0.75);
  padding-bottom: 0.2em;
}

.stat__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--w);
  margin-bottom: 14px;
  white-space: nowrap;
}

.stat__line {
  width: 28px;
  height: 2px;
  background: var(--cyan);
  margin-bottom: 16px;
  flex-shrink: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s var(--ease);
}
.stat.bar-ready .stat__line {
  transform: scaleX(1);
}

.stat__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin-top: auto;
}
.stats-note {
  margin-top: 28px;
  padding: 0 48px;
  font-size: 12px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* ── QUEM PODE PARTICIPAR ─────────────── */
.perfis {
  background: var(--off);
  padding: 96px 56px;
}

.perfis__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 56px auto 0;
}

.perfil {
  background: var(--w);
  overflow: hidden;
  border-radius: 16px;
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}
.perfil:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.13);
}

.perfil__img {
  width: 100%;
  height: 248px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}
.perfil:hover .perfil__img {
  transform: scale(1.06);
}

.perfil__body {
  padding: 32px 28px 36px;
  border-top: 2px solid var(--orange);
}
.perfil__tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.35;
  display: block;
  margin-bottom: 10px;
}
.perfil__h3 {
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 12px;
}
.perfil__p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

/* ── QUOTE BAND ───────────────────────── */
.quote-band {
  position: relative;
  height: 640px;
  overflow: hidden;
}
.quote-band__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.quote-band__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(5, 14, 60, 0.94) 0%,
    rgba(14, 51, 138, 0.76) 55%,
    rgba(5, 14, 60, 0.9) 100%
  );
}
.quote-band__body {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 88px;
}

.qb-rule {
  width: 0;
  height: 2px;
  background: var(--cyan);
  margin-bottom: 32px;
  transition: width 0.8s var(--ease);
}
.qb-l1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(16px, 2vw, 26px);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1;
  opacity: 0;
  transform: translateX(-52px);
  filter: blur(4px);
  transition:
    opacity 0.8s var(--ease) 0.4s,
    transform 0.8s var(--ease) 0.4s,
    filter 0.8s var(--ease) 0.4s;
}
.qb-l2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(36px, 5.5vw, 76px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--w);
  line-height: 1;
  margin-top: 10px;
  letter-spacing: 0;
  opacity: 0;
  transform: translateX(-52px);
  filter: blur(4px);
  transition:
    opacity 0.8s var(--ease) 0.75s,
    transform 0.8s var(--ease) 0.75s,
    filter 0.8s var(--ease) 0.75s;
}
.qb-l3 {
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  font-weight: 900;
  font-size: clamp(64px, 11vw, 152px);
  text-transform: uppercase;
  color: var(--cyan);
  line-height: 0.88;
  margin-top: 4px;
  letter-spacing: -1px;
  opacity: 0;
  transform: translateX(64px) scale(0.96);
  filter: blur(6px);
  transition:
    opacity 1s var(--ease) 1.2s,
    transform 1s var(--ease) 1.2s,
    filter 1s var(--ease) 1.2s;
}

.quote-band.qb-on .qb-rule {
  width: 52px;
}
.quote-band.qb-on .qb-l1,
.quote-band.qb-on .qb-l2,
.quote-band.qb-on .qb-l3 {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

@keyframes subtleGlow {
  0%,
  100% {
    text-shadow: none;
  }
  50% {
    text-shadow: 0 0 48px rgba(28, 200, 229, 0.35);
  }
}
.quote-band.qb-on .qb-l3 {
  animation: subtleGlow 3s var(--ease) 2.5s 2;
}

/* ── FAQ ──────────────────────────────── */
.faq-item {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.faq-item.visible {
  opacity: 1;
  transform: none;
}

.faq {
  background: var(--w);
  padding: 96px 84px;
}

.faq__list {
  max-width: 800px;
  margin: 52px auto 0;
}

.faq__item {
  border-bottom: 1px solid var(--rule);
}
.faq__item.open {
  background: rgba(20, 47, 110, 0.03);
}

.faq__btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 26px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-family: inherit;
  transition: padding-left 0.3s var(--ease);
}
.faq__item.open .faq__btn {
  padding-left: 22px;
}

.faq__q {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
  line-height: 1.4;
  transition: color 0.25s;
}
.faq__item.open .faq__q {
  color: var(--orange);
}

.faq__sign {
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 300;
  color: var(--orange);
  line-height: 1;
  transition: transform 0.35s var(--ease);
  user-select: none;
}
.faq__item.open .faq__sign {
  transform: rotate(45deg);
}

.faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition:
    grid-template-rows 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  overflow: hidden;
}
.faq__panel-inner {
  overflow: hidden;
  padding: 0 60px 0 22px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
}
.faq__item.open .faq__panel {
  grid-template-rows: 1fr;
  opacity: 1;
}
.faq__item.open .faq__panel-inner {
  padding-bottom: 28px;
}

/* ── FORMULÁRIO ───────────────────────── */
.form-section {
  background: linear-gradient(
    160deg,
    #0d3fa8 0%,
    var(--navy-form) 40%,
    #072980 100%
  );
  padding: 96px 84px;
  position: relative;
  overflow: hidden;
}
.form-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 60% at 80% 50%,
    rgba(28, 200, 229, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.form-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  max-width: 460px;
  margin-top: 14px;
}
.form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  max-width: 1100px;
  margin: 60px auto 0;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Info column */
.finfo__list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.finfo__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: background 0.2s var(--ease);
}
.finfo__item:hover {
  background: rgba(255, 255, 255, 0.09);
}
.finfo__dot {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: rgba(28, 200, 229, 0.18);
  border: 1px solid rgba(28, 200, 229, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.finfo__dot::after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
}
.finfo__text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}
.finfo__text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--w);
  margin-bottom: 2px;
}

/* Form card */
.form-col-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--w);
  padding-bottom: 16px;
  border-bottom: 2px solid var(--cyan);
  margin-bottom: 28px;
  display: block;
}

.form-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(4px);
}
.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.f-row--full {
  grid-template-columns: 1fr;
}
.f-group {
  display: flex;
  flex-direction: column;
}
.f-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
}
.f-input,
.f-select,
.f-textarea {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--w);
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  outline: none;
  width: 100%;
  transition:
    border-color 0.25s var(--ease),
    background 0.25s var(--ease);
  -webkit-appearance: none;
}
.f-input:focus,
.f-select:focus,
.f-textarea:focus {
  border-color: var(--cyan);
  background: rgba(28, 200, 229, 0.07);
}
.f-input::placeholder,
.f-textarea::placeholder {
  color: rgba(255, 255, 255, 0.22);
}
.f-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%231CC8E5' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: rgba(255, 255, 255, 0.07);
}
.f-select option {
  background: #0a3e96;
  color: var(--w);
}
.f-textarea {
  resize: vertical;
  min-height: 90px;
}

/* Radio chips */
.f-radios {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 4px 0 0;
}
.f-radio {
  cursor: pointer;
}
.f-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.f-radio span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.6);
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  transition: all 0.2s var(--ease);
}
.f-radio:has(input:checked) span {
  color: var(--cyan);
  border-color: var(--cyan);
  background: rgba(28, 200, 229, 0.12);
}
.f-radio span:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--w);
}

.f-err-msg {
  font-size: 11px;
  font-weight: 600;
  color: #ff7070;
  margin-top: 6px;
  display: none;
}
.f-group.err .f-input,
.f-group.err .f-select {
  border-color: #ff7070;
}
.f-group.err .f-err-msg {
  display: block;
}
.f-inline-err {
  font-size: 11px;
  font-weight: 600;
  color: #ff7070;
  display: none;
  margin-top: 8px;
}

.f-lgpd {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-top: 4px;
}
.f-lgpd input[type="checkbox"] {
  accent-color: var(--cyan);
  width: 15px;
  height: 15px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}
.f-lgpd-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.65;
}

.f-submit {
  width: 100%;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--navy-foot);
  background: var(--cyan);
  border: none;
  padding: 18px;
  cursor: pointer;
  margin-top: 8px;
  border-radius: 8px;
  transition:
    background 0.25s var(--ease),
    transform 0.2s var(--ease),
    box-shadow 0.25s var(--ease);
}
.f-submit:hover {
  background: #3dd8f5;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(28, 200, 229, 0.35);
}
.f-submit:active {
  transform: translateY(1px);
}

/* Como participar — blocos de CTA */
.cta-blocks {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cta-block {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(4px);
}
.cta-block__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 14px;
}
.cta-block__text:last-of-type {
  margin-bottom: 24px;
}
.cta-block__text strong {
  color: var(--w);
  font-weight: 700;
}
.cta-block .btn {
  opacity: 1;
  animation: none;
  display: block;
  width: 100%;
  text-align: center;
  padding: 18px 28px;
  line-height: 1.3;
}
.btn--cyan {
  background: var(--cyan);
  color: var(--navy-foot);
}
.btn--cyan:hover {
  background: #3dd8f5;
  box-shadow: 0 10px 28px rgba(28, 200, 229, 0.4);
}
.cta-block--bare {
  background: none;
  border: none;
  padding: 0;
  backdrop-filter: none;
}
.cta-block--bare .cta-block__text {
  margin-bottom: 14px;
}
.cta-block--bare .btn {
  display: inline-block;
  width: auto;
  padding: 9px 20px;
  font-size: 11px;
  letter-spacing: 2.5px;
  border-radius: 4px;
}

.form-ok {
  display: none;
  padding: 56px 32px;
  text-align: center;
  border: 1px solid rgba(28, 200, 229, 0.25);
  border-radius: 12px;
  background: rgba(28, 200, 229, 0.06);
}
.form-ok__mark {
  width: 60px;
  height: 60px;
  background: var(--cyan);
  color: var(--navy-foot);
  font-size: 26px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.form-ok__title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--w);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.form-ok__p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
}

/* ── FOOTER ───────────────────────────── */
.footer {
  background: var(--navy-foot);
  padding: 52px 84px 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer__wm {
  display: flex;
  align-items: center;
}
.footer__wm-logo {
  height: 64px;
  width: auto;
  opacity: 0.92;
}
.footer__wm-text {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 40px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1;
  color: var(--w);
  opacity: 0.92;
}
.footer__wm-text b {
  color: var(--cyan);
}
.footer__logos {
  width: 100%;
  text-align: center;
}
.footer__logos img {
  height: 46px;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.75;
  transition: opacity 0.3s var(--ease);
}
.footer__logos img:hover {
  opacity: 1;
}
.footer__rule {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}
.footer__legal {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.22);
  text-align: center;
  line-height: 1.75;
}

/* ── REALIZADORES ────────────────────── */
.realizadores {
  background: var(--navy-foot);
  padding: 44px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.realizadores__label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}
.realizadores img {
  height: 136px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s var(--ease);
}
.realizadores img:hover {
  opacity: 1;
}

/* ── SEC-HD SHARED (FAQ / PERFIS) ──────── */
.sec-hd {
  margin-bottom: 52px;
}
.sec-hd--center {
  text-align: center;
}
.sec-hd--center .form-sub {
  margin-left: auto;
  margin-right: auto;
}
.sec-hd__eye {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.sec-hd__eye--light {
  color: var(--cyan);
}
.sec-hd__eye--dark {
  color: var(--navy);
  opacity: 0.5;
}
.sec-hd__title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.5px;
}
.sec-hd__title--light {
  color: var(--w);
}
.sec-hd__title--dark {
  color: var(--navy);
}

/* ── Telas curtas (landscape / notebook pequeno) ── */
@media (max-height: 660px) {
  .hero {
    height: auto;
    min-height: auto;
    padding-bottom: 40px;
  }
  .hero__inner {
    padding-top: calc(58px + 32px);
  }
  .hero__h1 {
    font-size: clamp(40px, 7vh, 72px);
    margin-bottom: 12px;
  }
  .hero__sub {
    font-size: 12px;
    margin-bottom: 28px;
  }
  .btn {
    padding: 14px 40px;
  }
  .hero__logos {
    bottom: 20px;
  }
}

/* ══════════════════════════════════════
 RESPONSIVE
 Breakpoints: 1100 · 900 · 768 · 480
    ══════════════════════════════════════ */

/* ── ≤1100px  Large tablet ─────────── */
@media (max-width: 1100px) {
  /* Stats: mantém 4 colunas, reduz padding */
  .stat {
    padding: 44px 24px;
  }
  .stats-note {
    padding: 0 24px;
  }

  /* Form: info panel stacks */
  .form-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Perfis: 2 columns */
  .perfis__row {
    grid-template-columns: 1fr 1fr;
  }

  /* Realizadores */
  .realizadores {
    padding: 36px 40px;
  }
  .realizadores img {
    height: 68px;
  }

  /* Quote band: scale down big text */
  .qb-l3 {
    font-size: clamp(52px, 8vw, 110px);
  }

  /* Sections: tighter padding */
  .hero__inner {
    padding: 0 40px;
  }
  .intro__text {
    padding: 80px 56px 80px 64px;
  }
  .programa {
    padding: 80px 0;
  }
  .programa__head {
    padding: 0 40px;
    margin-bottom: 56px;
  }
  .perfis {
    padding: 80px 40px;
  }
  .faq {
    padding: 80px 56px;
  }
  .form-section {
    padding: 80px 56px;
  }
  .footer {
    padding: 48px 56px 40px;
  }
}

/* ── ≤900px  Tablet ────────────────── */
@media (max-width: 900px) {
  /* Nav */
  .nav {
    padding: 0 24px;
    height: 58px;
  }
  .nav__logo {
    height: 28px;
  }

  /* Hero */
  .hero {
    height: 82vh;
    min-height: 540px;
  }
  .hero__inner {
    padding: calc(58px + 8vh) 28px 0;
  }
  .hero__h1 {
    font-size: clamp(52px, 11vw, 88px);
    line-height: 0.9;
  }
  .hero__sub {
    font-size: clamp(12px, 2.2vw, 15px);
    letter-spacing: 2px;
    white-space: normal;
    line-height: 1.4;
  }
  .btn {
    padding: 16px 44px;
  }
  .hero__pulse {
    left: 28px;
    bottom: 44px;
  }
  .hero__logos {
    right: 24px;
    bottom: 28px;
  }
  .hero__logos img {
    height: 28px;
  }
  .hero__logos-label {
    display: none;
  }

  /* Storytelling */
  .intro {
    grid-template-columns: 1fr;
  }
  .intro::before {
    display: none;
  }
  .intro__text {
    padding: 64px 32px;
    border-left: none;
    border-top: none;
    order: 2;
  }
  .intro__media {
    height: 360px;
    min-height: unset;
    order: 1;
    background: var(--black);
  }
  .intro__media::before {
    display: none;
  }
  .intro__slide {
    object-position: center center;
  }

  /* Stats: single column */
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 36px 28px;
  }
  .stat:last-child {
    border-bottom: none;
  }
  .stat__label {
    white-space: normal;
  }
  .stat__num {
    font-size: clamp(48px, 10vw, 72px);
  }
  .programa {
    padding: 64px 0;
  }
  .programa__head {
    padding: 0 28px;
    margin-bottom: 40px;
  }

  /* Perfis: single column */
  .perfis {
    padding: 64px 24px;
  }
  .perfis__row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Realizadores */
  .realizadores {
    flex-direction: column;
    gap: 20px;
    padding: 36px 20px;
    text-align: center;
  }
  .realizadores img {
    height: auto;
    width: min(100%, 460px);
  }

  /* Quote band */
  .quote-band {
    height: 480px;
  }
  .quote-band__body {
    padding: 0 32px;
  }
  .qb-l1 {
    font-size: clamp(13px, 2.5vw, 18px);
  }
  .qb-l2 {
    font-size: clamp(26px, 5.5vw, 48px);
  }
  .qb-l3 {
    font-size: clamp(44px, 10vw, 80px);
    letter-spacing: -0.5px;
  }

  /* FAQ */
  .faq {
    padding: 64px 24px;
  }
  .faq__list {
    margin-top: 32px;
  }
  .faq__q {
    font-size: 13px;
  }

  /* Form */
  .form-section {
    padding: 64px 24px;
  }
  .f-row {
    grid-template-columns: 1fr;
  }
  .f-radios {
    flex-direction: column;
    gap: 14px;
  }

  /* Footer */
  .footer {
    padding: 44px 24px 36px;
  }
  .footer__logos img {
    height: auto;
    width: min(100%, 360px);
  }
}

/* ── ≤768px  Large mobile ──────────── */
@media (max-width: 768px) {
  /* Títulos de seção alinhados à esquerda no mobile */
  .sec-hd--center {
    text-align: left;
  }
  .sec-hd--center .form-sub {
    margin-left: 0;
    margin-right: 0;
  }

  /* Stats: 2-col compact */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat {
    padding: 32px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-right: none;
  }
  .stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
  .stats-note {
    padding: 0 20px;
  }
  .stat:nth-last-child(-n + 2) {
    border-bottom: none;
  }
  .stat__num {
    font-size: clamp(36px, 8vw, 56px);
  }
  .stat__label {
    font-size: 8.5px;
    letter-spacing: 1px;
    white-space: normal;
  }
  .stat__desc {
    font-size: 12px;
  }

  /* H2 in storytelling */
  .h2 {
    font-size: clamp(40px, 9vw, 60px);
  }

  /* Perfis: 2-col if fits */
  .perfis__row {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  /* Quote */
  .qb-l3 {
    font-size: clamp(40px, 9vw, 72px);
  }
}

/* ── ≤480px  Mobile ────────────────── */
@media (max-width: 480px) {
  /* Nav: minimal */
  .nav {
    padding: 0 16px;
    height: 54px;
  }
  .nav__logo {
    height: 22px;
  }
  .nav__logo-move {
    height: 28px;
  }
  .nav__wordmark {
    font-size: 15px;
  }
  .nav__divider {
    height: 22px;
  }
  .nav-cta {
    display: none;
  }

  /* Hero: preenche toda a tela — imagem fixa no lugar do vídeo */
  .hero {
    height: 100dvh;
    height: 100vh; /* fallback */
    min-height: 600px;
    max-height: none;
    align-items: flex-start;
    background: url("fotoheromobile.jpg") center / cover no-repeat;
  }
  .hero__video {
    display: none;
  }

  /* Inner: flex column, ocupa 100% da altura disponível */
  .hero__inner {
    height: calc(100dvh - 58px);
    height: calc(100vh - 58px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
    padding-top: 56px; /* espaço para as logos acima */
    text-align: center;
    gap: 0;
  }

  .hero__h1 {
    font-size: clamp(76px, 21vw, 100px);
    margin-bottom: 16px;
    text-align: center;
    line-height: 0.86;
  }
  .hero__sub {
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-align: center;
    white-space: normal;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.8);
  }
  .btn {
    width: auto;
    display: inline-block;
    padding: 16px 52px;
    font-size: 11px;
  }

  /* Logos centralizadas, acima de tudo */
  .hero__logos {
    display: flex;
    position: absolute;
    bottom: auto;
    top: calc(58px + 16px);
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    mix-blend-mode: screen;
    gap: 10px;
    white-space: nowrap;
  }
  .hero__logos img {
    height: 22px;
    opacity: 0.85;
  }
  .hero__logos-label {
    display: none;
  }
  .hero__pulse {
    display: none;
  }
  .sub-break {
    display: inline;
  }

  /* Quote band: imagem fixa no lugar do vídeo */
  .quote-band__video {
    display: none;
  }
  .quote-band {
    background: url("2151919266.jpg") center / cover no-repeat;
  }

  /* Storytelling */
  .intro__text {
    padding: 48px 20px;
  }
  .intro__media {
    height: 280px;
  }
  .h2 {
    font-size: clamp(36px, 10vw, 52px);
    margin-bottom: 24px;
  }
  .body-p {
    font-size: 14px;
    max-width: 100%;
  }

  /* Stats: single column */
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat {
    padding: 32px 20px;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .stat:last-child {
    border-bottom: none;
  }
  .stat__num {
    font-size: clamp(44px, 13vw, 68px);
  }
  .stat__label {
    white-space: normal;
    font-size: 9px;
    letter-spacing: 1px;
  }
  .programa {
    padding: 56px 0;
  }
  .programa__head {
    padding: 0 20px;
    margin-bottom: 36px;
  }
  .display-title {
    font-size: clamp(32px, 9vw, 48px);
  }

  /* Perfis: single column */
  .perfis {
    padding: 56px 16px;
  }
  .perfis__row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .perfil__img {
    height: 210px;
  }
  .perfil__body {
    padding: 24px 20px 28px;
  }

  /* Quote band */
  .quote-band {
    height: 400px;
  }
  .quote-band__body {
    padding: 0 20px;
  }
  .qb-rule {
    margin-bottom: 20px;
  }
  .qb-l1 {
    font-size: 12px;
    letter-spacing: 2px;
  }
  .qb-l2 {
    font-size: clamp(22px, 7vw, 36px);
    margin-top: 8px;
  }
  .qb-l3 {
    font-size: clamp(36px, 11vw, 60px);
    letter-spacing: -0.5px;
    margin-top: 4px;
  }

  /* FAQ */
  .faq {
    padding: 56px 16px;
  }
  .faq__q {
    font-size: 12px;
  }
  .faq__panel {
    padding: 0 8px 24px 12px;
    font-size: 14px;
  }

  /* Form */
  .form-section {
    padding: 56px 16px;
  }
  .f-input,
  .f-select {
    font-size: 14px;
  }
  .f-submit {
    font-size: 12px;
    letter-spacing: 3px;
  }
  .form-layout {
    margin-top: 44px;
  }

  /* Footer */
  .footer {
    padding: 40px 16px 32px;
  }
  .footer__logos img {
    height: auto;
    width: min(100%, 300px);
  }
  .footer__wm-move,
  .footer__wm-brasil {
    font-size: 15px;
    letter-spacing: 3px;
  }
}

/* ── Separador ──────────────────────────────── */
.separador {
  position: relative;
  height: 180px;
  background: var(--navy-foot);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* Triângulo ciano esquerda */
.separador::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 180px 220px 0 0;
  border-color: var(--cyan) transparent transparent transparent;
}
/* Triângulo azul médio sobreposto */
.separador::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 180px 150px 0 0;
  border-color: var(--navy) transparent transparent transparent;
}
/* Faixa laranja direita */
.separador__orange {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 56px;
  background: var(--orange);
}
.separador__logo {
  position: relative;
  z-index: 2;
  height: 72px;
  width: auto;
}
@media (max-width: 900px) {
  .separador {
    height: 140px;
  }
  .separador::before {
    border-width: 140px 170px 0 0;
  }
  .separador::after {
    border-width: 140px 115px 0 0;
  }
  .separador__orange {
    width: 40px;
  }
  .separador__logo {
    height: 56px;
  }
}
@media (max-width: 480px) {
  .separador {
    height: 110px;
  }
  .separador::before {
    border-width: 110px 120px 0 0;
  }
  .separador::after {
    border-width: 110px 80px 0 0;
  }
  .separador__orange {
    width: 28px;
  }
  .separador__logo {
    height: 42px;
  }
}
