:root {
  --ink: #222222;
  --ink-soft: #474747;
  --paper: #ededed;
  --paper-strong: #ffffff;
  --green: #5a8613;
  --green-bright: #84be25;
  --red: #be2525;
  --red-bright: #ff4242;
  --gold: #dd9f2d;
  --gold-deep: #b8821a;
  --line: rgba(34, 34, 34, 0.15);
  --shadow: 0 22px 54px rgba(34, 34, 34, 0.18);
  --radius: 8px;
  --container: min(1220px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(221, 159, 45, 0.16), transparent 26%),
    linear-gradient(90deg, rgba(34, 34, 34, 0.045) 1px, transparent 1px) 0 0 / 42px 42px,
    var(--paper);
  color: var(--ink);
  font-family: "Poppins", system-ui, sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible,
.noticia-card:focus-visible,
.noticias-filter:focus-visible,
.carousel-dot:focus-visible,
.team-carousel-btn:focus-visible,
.article-close:focus-visible,
.carousel-pause:focus-visible,
.person-card:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.site-nav a:focus-visible {
  outline-color: var(--gold-deep);
  outline-offset: 2px;
}

.noticia-card:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(221, 159, 45, 0.35);
  border-radius: 10px;
}

.noticias-filter:focus-visible:not(.is-active) {
  border-color: var(--gold);
  color: var(--gold);
}

.carousel-dot:focus-visible {
  outline-color: var(--red-bright);
  outline-offset: 2px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -120px;
  z-index: 1000;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
  padding-top: env(safe-area-inset-top);
}

.site-header.scrolled {
  background: var(--ink);
  border-bottom: 4px solid var(--gold);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

.header-inner {
  width: var(--container);
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0;
  color: var(--ink);
  transition: color 220ms ease;
}

.scrolled .brand {
  color: white;
}

.brand img {
  width: 120px;
  height: auto;
  object-fit: contain;
}

.brand span {
  display: none;
  max-width: 170px;
  line-height: 1;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  border-radius: var(--radius);
  transition: border-color 220ms ease, color 220ms ease;
}

.scrolled .nav-toggle {
  border-color: rgba(255, 255, 255, 0.22);
  color: white;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 5px;
  color: white;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.94rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: transparent;
  color: var(--gold);
  box-shadow: inset 0 -2px 0 var(--gold);
}

/* CTA de inscrição no navbar — sempre vermelho (autor do projeto) */
.nav-cta {
  margin-left: 8px;
  padding: 10px 18px;
  background: var(--red);
  color: #fff !important;
  border-radius: 999px;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(190, 37, 37, 0.32);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover,
.nav-cta[aria-current="page"] {
  background: var(--red-bright) !important;
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(190, 37, 37, 0.45);
  transform: translateY(-1px);
}

.site-header:not(.scrolled) .nav-cta {
  background: var(--red);
  color: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 13px 30px rgba(190, 37, 37, 0.28);
}

.site-header .button-primary {
  background: var(--red-bright);
  color: white;
}

.site-header .button-primary:hover {
  background: var(--gold);
  color: var(--ink);
}

.button-secondary {
  background: var(--ink);
  color: var(--paper-strong);
}

.button-outline {
  border-color: var(--green);
  background: transparent;
  color: var(--green);
}

.button-outline:hover {
  background: var(--green);
  color: white;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  padding-top: 78px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--hero-image) center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(23, 23, 23, 0.82), rgba(23, 23, 23, 0.35) 52%, rgba(23, 23, 23, 0.08)),
    linear-gradient(0deg, rgba(247, 243, 234, 0.96), transparent 28%);
}

.hero-content {
  width: var(--container);
  margin: 0 auto;
  padding: 96px 0 88px;
  color: white;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Dela Gothic One", "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 860px;
  margin-top: 18px;
  font-size: clamp(2.5rem, 5.2vw, 5rem);
}

.home-hero {
  min-height: 680px;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 20%, rgba(132, 190, 37, 0.24), transparent 21%),
    linear-gradient(135deg, rgba(255, 66, 66, 0.08), transparent 34%),
    linear-gradient(0deg, rgba(90, 134, 19, 0.08), transparent 44%),
    var(--paper);
}

.home-hero::before,
.home-hero::after {
  display: none;
}

.carousel {
  display: block;
}

.carousel-track {
  display: flex;
  transition: transform 500ms cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

.carousel-slide {
  width: 100%;
  min-width: 100%;
  flex-shrink: 0;
  position: relative;
  max-width: 100%;
}

/* ===== BASE DO FULL-BLEED (slides 2 e 3) ===== */

.slide-bg {
  position: absolute;
  inset: 0;
}

.slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  inset: 0;
}

/* Slide 2 — overlay vermelho/quente (doação) */
.carousel-slide--doe .slide-overlay {
  background: linear-gradient(
    135deg,
    rgba(190, 37, 37, 0.72) 0%,
    rgba(221, 159, 45, 0.45) 60%,
    rgba(34, 34, 34, 0.3) 100%
  );
}

/* Slide 3 — overlay verde (conquistas) */
.slide-overlay--green {
  background: linear-gradient(
    135deg,
    rgba(90, 134, 19, 0.78) 0%,
    rgba(34, 34, 34, 0.35) 70%,
    rgba(34, 34, 34, 0.15) 100%
  );
}

/* Conteúdo sobreposto */
.slide-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: var(--container);
  margin: 0 auto;
  min-height: 600px;
  padding: calc(60px + 86px) 0 80px;
}

/* Centralizado (slide 2) */
.slide-content--center {
  align-items: center;
  text-align: center;
}

.slide-content--center .hero-title {
  max-width: 620px;
  margin: 12px auto 0;
}

.slide-content--center .hero-copy {
  max-width: 580px;
  margin: 0 auto;
}

/* Alinhado à esquerda (slide 3) */
.slide-content--left {
  align-items: flex-start;
  text-align: left;
}

.slide-content--left .hero-title {
  max-width: 560px;
}

/* Versões light (texto branco sobre fundo escuro) */
.slide-kicker--light {
  color: rgba(255, 255, 255, 0.92);
}

/* 
   Objetivo: Garantir legibilidade e contraste adequado nos títulos dos slides de fundo escuro.
   Restrições: Evita a sobreposição da cor verde padrão sobre fundos vermelhos ou verdes.
*/
.hero-title.slide-title--light span {
  color: rgba(255, 255, 255, 0.9);
}

.hero-title.slide-title--light strong {
  color: #fff;
}

/* 
   Objetivo: Destacar o valor da doação com contraste premium sobre o gradiente vermelho/laranja.
   Entrada: Elemento strong dentro do slide de doação.
   Saída: Texto em amarelo ouro vibrante com borda preta nítida e sombra projetada.
*/
.carousel-slide--doe .hero-title.slide-title--light strong {
  color: #ffd043;
  text-shadow: 
    -1.5px -1.5px 0 var(--ink),  
     1.5px -1.5px 0 var(--ink),
    -1.5px  1.5px 0 var(--ink),
     1.5px  1.5px 0 var(--ink),
     0px 4px 10px rgba(0, 0, 0, 0.4);
}

.slide-title--light::after {
  background: linear-gradient(90deg, rgba(255,255,255,0.8), rgba(255,255,255,0.2));
}

.slide-copy--light {
  color: rgba(255, 255, 255, 0.88);
}

.slide-copy--light mark {
  color: var(--gold);
  background: transparent;
}

.slide-actions--light {
  margin-top: 28px;
}

.slide-btn--light {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.slide-btn--light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

/* Slide 3 recebe um background mais sutil na área de texto */
.slide-content--left .hero-copy {
  max-width: 560px;
}

.hero-badge--red {
  background: var(--red-bright);
  color: white;
}

.hero-badge--green {
  background: var(--green-bright);
  color: white;
}

.carousel-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 220ms ease, border-color 220ms ease;
}

.carousel-dot.active {
  background: var(--red-bright);
  border-color: var(--red-bright);
}

.carousel-pause {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(34, 34, 34, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  color: var(--ink);
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.carousel-pause:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(34, 34, 34, 0.5);
  transform: scale(1.08);
}

.home-hero .carousel-pause {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.8);
}

.home-hero .carousel-pause:hover {
  background: rgba(0, 0, 0, 0.55);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.carousel-pause.is-paused {
  border-color: var(--gold);
  background: rgba(221, 159, 45, 0.2);
  color: var(--gold);
}

.home-hero .carousel-pause.is-paused {
  background: rgba(221, 159, 45, 0.25);
  border-color: var(--gold);
  color: var(--gold);
}

.home-hero .hero-content {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(390px, 0.86fr);
  gap: 78px;
  align-items: center;
  color: var(--ink);
  padding: 70px 0 58px;
}

.hero-kicker {
  display: block;
  color: var(--gold);
  font-family: "Dela Gothic One", "Montserrat", sans-serif;
  font-size: clamp(2.7rem, 5.4vw, 5rem);
  line-height: 1;
}

.hero-title {
  max-width: 590px;
  margin-top: 10px;
}

.hero-title span {
  display: block;
  font-family: "Belanosima", "Montserrat", sans-serif;
  font-size: clamp(1.55rem, 2.3vw, 2.3rem);
  font-weight: 700;
  line-height: 1.08;
  text-transform: none;
}

.hero-title strong {
  display: block;
  margin-top: 18px;
  color: var(--green);
  font-family: "Dela Gothic One", "Montserrat", sans-serif;
  font-size: clamp(2.65rem, 3.9vw, 3.75rem);
  font-weight: 400;
  line-height: 0.95;
}

.hero-title::after {
  content: "";
  display: block;
  width: min(420px, 72vw);
  height: 7px;
  margin-top: 22px;
  background: linear-gradient(90deg, var(--red-bright), var(--gold), var(--green-bright));
  border-radius: 999px;
}

.home-hero .hero-copy {
  max-width: 720px;
  color: var(--ink);
  font-weight: 700;
  font-size: clamp(1rem, 1.35vw, 1.28rem);
}

.home-hero mark {
  background: transparent;
  color: var(--red);
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 78px 8% 24px 10%;
  background:
    linear-gradient(120deg, rgba(132, 190, 37, 0.72), rgba(90, 134, 19, 0.95)),
    var(--green);
  border-radius: 10px;
  transform: rotate(-3deg);
  box-shadow: 18px 18px 0 var(--gold), -18px -18px 0 var(--red), 0 28px 60px rgba(34, 34, 34, 0.18);
}

.hero-visual::after {
  content: "";
  position: absolute;
  right: -2%;
  bottom: 30px;
  z-index: 1;
  width: 160px;
  height: 180px;
  background:
    linear-gradient(90deg, transparent 38%, var(--red) 39% 45%, transparent 46%),
    linear-gradient(28deg, transparent 38%, var(--red) 39% 45%, transparent 46%),
    linear-gradient(-28deg, transparent 38%, var(--red) 39% 45%, transparent 46%);
  opacity: 0.9;
}

.hero-visual img {
  position: relative;
  z-index: 2;
  width: min(520px, 100%);
  margin: 0 auto;
  filter: drop-shadow(0 34px 34px rgba(34, 34, 34, 0.24));
}

.hero-badge {
  position: absolute;
  right: 4%;
  top: 48px;
  z-index: 3;
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red-bright);
  color: white;
  font-family: "Dela Gothic One", sans-serif;
  font-size: 1.6rem;
  box-shadow: var(--shadow);
}

.hero-proof {
  position: absolute;
  left: 0;
  bottom: 22px;
  z-index: 4;
  max-width: 320px;
  padding: 18px;
  background: var(--ink);
  color: white;
  border-left: 7px solid var(--gold);
  border-radius: 5px;
  box-shadow: var(--shadow);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.hero-copy {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
}

.hero:not(.home-hero) {
  min-height: 62svh;
}

.hero:not(.home-hero) .hero-content {
  padding: 86px 0 72px;
}

.hero:not(.home-hero) h1 {
  max-width: 780px;
  font-size: clamp(2.25rem, 4vw, 4rem);
}

.hero:not(.home-hero) .button-outline {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(34, 34, 34, 0.22);
  color: white;
}

.hero:not(.home-hero) .button-outline:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-strip {
  width: var(--container);
  margin: 0 auto 28px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 0;
  background: var(--ink);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.hero-strip div {
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-strip div:last-child {
  border-right: 0;
}

.metric {
  display: block;
  color: var(--gold);
  font-family: "Dela Gothic One", sans-serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.metric-label {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.manifesto-section {
  background: var(--ink);
  color: white;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 100px;
  padding-bottom: 100px;
}

.manifesto-inner {
  max-width: 1080px;
}

.manifesto-section h2 {
  text-transform: uppercase;
  font-size: clamp(1.85rem, 3.6vw, 3.45rem);
  line-height: 1.12;
  color: white;
  text-shadow: 3px 3px 0 rgba(221, 159, 45, 0.18);
}

.manifesto-section h2 span {
  color: var(--green-bright);
}

.manifesto-section h2 strong {
  color: var(--gold);
  font-weight: 400;
}

.manifesto-section p {
  max-width: 720px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.7;
  text-wrap: pretty;
}

.manifesto-cta {
  display: inline-flex;
  margin-top: 36px;
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: none;
}

.manifesto-cta:hover {
  background: var(--gold);
  color: var(--ink);
}

.section {
  padding: 82px 0;
}

.section.alt {
  background:
    linear-gradient(135deg, rgba(132, 190, 37, 0.16), transparent 42%),
    linear-gradient(90deg, rgba(255, 66, 66, 0.08), transparent 34%),
    var(--paper-strong);
}

.section.dark {
  background: var(--ink);
  color: var(--paper-strong);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.65fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 36px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.25vw, 3.45rem);
  line-height: 1.12;
  text-transform: uppercase;
}

.section-header h2::after {
  content: "";
  display: block;
  width: min(260px, 64vw);
  height: 5px;
  margin-top: 16px;
  background: var(--ink);
}

.alt .section-header h2::after {
  background: linear-gradient(90deg, var(--red-bright), var(--gold), var(--green-bright));
}

.section-header p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 560px;
}

.dark .section-header h2::after {
  background: linear-gradient(90deg, var(--red-bright), var(--gold), var(--green-bright));
}

.dark .section-header p,
.dark .lead,
.dark .quote p {
  color: rgba(255, 250, 240, 0.78);
}

.lead {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  text-wrap: pretty;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: 52px;
  align-items: center;
}

.split h2 {
  max-width: 760px;
  font-size: clamp(1.85rem, 3.4vw, 3.55rem);
  line-height: 1.12;
}

.media-stack {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 14px;
  align-items: end;
}

.media-stack img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-stack img:nth-child(2) {
  aspect-ratio: 1 / 1;
  transform: translateY(36px);
}

.callout {
  border-left: 8px solid var(--gold);
  padding: 24px 0 24px 24px;
  font-family: "Dela Gothic One", sans-serif;
  font-size: clamp(1.45rem, 2.55vw, 2.35rem);
  line-height: 1.12;
}

.prevest-section {
  background: var(--paper-strong);
}

.prevest-hero {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 32px;
}

.prevest-visual {
  position: relative;
}

.prevest-visual img {
  width: 100%;
  aspect-ratio: 5 / 7;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.prevest-visual::before {
  content: "";
  position: absolute;
  inset: -6px -6px auto auto;
  width: 55%;
  height: 55%;
  border: 4px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}

.prevest-visual::after {
  content: "";
  position: absolute;
  inset: auto auto -6px -6px;
  width: 45%;
  height: 45%;
  background: linear-gradient(135deg, var(--red-bright), var(--gold));
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.15;
}

.prevest-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.prevest-info .section-eyebrow {
  margin-bottom: 0;
}

.prevest-info h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  line-height: 1.06;
  text-transform: uppercase;
}

.prevest-info h2 span {
  color: var(--green-bright);
}

.prevest-info h2::after {
  content: "";
  display: block;
  width: min(220px, 50vw);
  height: 5px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--red-bright), var(--gold), var(--green-bright));
  border-radius: 999px;
}

.prevest-info p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.65;
  max-width: 560px;
}

.prevest-info .lead {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.98rem;
}

.prevest-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.prevest-stat {
  text-align: center;
  padding: 18px 10px;
  background: var(--ink);
  border-radius: var(--radius);
  border-top: 5px solid var(--gold);
  transition: transform 220ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.prevest-stat:hover {
  transform: translateY(-4px);
}

.prevest-stat:nth-child(1) { border-top-color: var(--red-bright); }
.prevest-stat:nth-child(2) { border-top-color: var(--gold); }
.prevest-stat:nth-child(3) { border-top-color: var(--green-bright); }

.prevest-stat strong {
  display: block;
  font-family: "Dela Gothic One", sans-serif;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  line-height: 1;
  color: var(--gold);
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}

.prevest-stat:nth-child(1) strong { color: var(--red-bright); }
.prevest-stat:nth-child(3) strong { color: var(--green-bright); }

.prevest-stat span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  line-height: 1.35;
}

.prevest-disciplinas-wrap {
  margin-top: 36px;
  overflow: hidden;
  padding: 12px 0;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.prevest-disciplinas {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: esteira 28s linear infinite;
}

.prevest-disciplinas:hover {
  animation-play-state: paused;
}

@keyframes esteira {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.prevest-disciplinas span {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.84rem;
  color: white;
  background: var(--ink);
  white-space: nowrap;
  transition: transform 160ms ease;
}

.prevest-disciplinas span:hover {
  transform: scale(1.06);
}

.prevest-disciplinas span:nth-child(3n+1) { background: var(--red-bright); }
.prevest-disciplinas span:nth-child(3n+2) { background: var(--gold); color: var(--ink); }
.prevest-disciplinas span:nth-child(3n) { background: var(--green); }

.esportes-section {
  background:
    linear-gradient(135deg, rgba(132, 190, 37, 0.12), transparent 42%),
    linear-gradient(90deg, rgba(255, 66, 66, 0.06), transparent 34%),
    var(--paper-strong);
}

.esportes-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 36px;
}

.esportes-text .lead {
  margin-bottom: 16px;
}

.esportes-text p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.esportes-img img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 6px solid var(--gold);
}

.esportes-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.esporte-tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: white;
  transition: transform 180ms ease;
}

.esporte-tag:hover {
  transform: translateY(-3px);
}

.esporte-tag--green {
  background: var(--green);
}

.esporte-tag--gold {
  background: var(--gold);
  color: var(--ink);
}

.esporte-tag--red {
  background: var(--red);
}

.esportes-callout {
  border-left: 8px solid var(--green-bright);
  padding: 24px 0 24px 24px;
  font-family: "Dela Gothic One", sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  line-height: 1.12;
  color: var(--ink);
}

.missao-section {
  background:
    linear-gradient(135deg, rgba(221, 159, 45, 0.08), transparent 42%),
    var(--paper-strong);
}

.missao-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.missao-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 36px 28px;
  background: var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: transform 220ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 220ms ease;
}

.missao-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow);
}

.missao-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
}

.missao-card--red::before { background: var(--red-bright); }
.missao-card--gold::before { background: var(--gold); }
.missao-card--green::before { background: var(--green-bright); }

.missao-card strong {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  color: var(--paper-strong);
}

.missao-card--red strong { color: var(--red-bright); }
.missao-card--gold strong { color: var(--gold); }
.missao-card--green strong { color: var(--green-bright); }

.missao-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  line-height: 1.65;
}

.course-grid,
.team-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.project-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.project-card {
  flex: 0 1 calc(33.333% - 12px);
  min-width: 280px;
}

.course-card,
.project-card,
.person-card,
.support-card {
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(255, 250, 240, 0.78);
  overflow: hidden;
}

.course-card,
.support-card {
  padding: 24px;
}

.course-card {
  position: relative;
  background: var(--ink);
  color: white;
  min-height: 210px;
  text-align: center;
  display: grid;
  align-content: center;
  transition: transform 220ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 220ms ease;
}

.course-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 22px 38px rgba(34, 34, 34, 0.22);
}

.course-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--red-bright), var(--gold), var(--green-bright));
}

.course-card strong,
.project-card h3,
.person-card h3,
.support-card h3 {
  font-family: "Dela Gothic One", "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.22rem;
  line-height: 1.15;
}

.course-card p,
.project-card p,
.person-card p,
.support-card p {
  color: var(--ink-soft);
}

.course-card p {
  color: rgba(255, 255, 255, 0.78);
}

.project-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* 
   Objetivo: Ajustar o posicionamento de corte (crop) da imagem de formandos.
   Entrada: Elemento img com classe .project-card-img-certs.
   Saída: Imagem deslocada para centralizar nos rostos e esconder o excesso de teto.
*/
.project-card-img-certs {
  object-position: center 60%;
}

.project-card-logo {
  background: var(--paper);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  border-bottom: 1px solid var(--line);
}

.project-card-logo img {
  max-width: 80%;
  max-height: 110px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.project-card-tag {
  display: inline-block;
  margin: 4px 0 10px;
  padding: 4px 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--green);
  color: var(--ink);
  border-radius: 3px;
}

.project-card--parceria {
  border-top: 8px solid var(--red-bright);
}

.project-card {
  border-top: 8px solid var(--green);
  box-shadow: 0 10px 0 rgba(221, 159, 45, 0.5);
}

.project-card div {
  padding: 22px;
}

.project-card p,
.support-card p,
.person-card p,
.course-card p {
  font-size: 0.95rem;
  line-height: 1.58;
}

.support-card {
  background: var(--paper-strong);
  border-top: 7px solid var(--gold);
}

.support-card--green {
  border-top-color: var(--green-bright);
}

.support-card--gold {
  border-top-color: var(--gold);
}

.support-card--red {
  border-top-color: var(--red-bright);
}

.support-grid {
  align-items: stretch;
}

.resultados-section {
  background:
    linear-gradient(135deg, rgba(132, 190, 37, 0.1), transparent 42%),
    var(--paper-strong);
}

.resultados-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}

.resultados-text p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0 0 16px;
  text-wrap: pretty;
}

.resultados-stats {
  display: grid;
  gap: 16px;
}

.resultado-stat {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: var(--ink);
  border-radius: var(--radius);
  border-left: 6px solid var(--gold);
  transition: transform 220ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.resultado-stat:hover {
  transform: translateX(6px);
}

.resultado-stat:nth-child(1) { border-left-color: var(--red-bright); }
.resultado-stat:nth-child(2) { border-left-color: var(--gold); }
.resultado-stat:nth-child(3) { border-left-color: var(--green-bright); }

.resultado-stat strong {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.resultado-stat:nth-child(1) strong { color: var(--red-bright); }
.resultado-stat:nth-child(3) strong { color: var(--green-bright); }

.resultado-stat span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  font-size: 0.92rem;
}

.doacao-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.doacao-info .lead {
  margin-bottom: 12px;
}

.doacao-info p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.doacao-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.tag-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--ink);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
}

.quote {
  max-width: 980px;
}

.quote p {
  margin: 0;
  max-width: 900px;
  font-family: "Poppins", "Montserrat", sans-serif;
  font-size: clamp(1.35rem, 2.35vw, 2.25rem);
  font-weight: 800;
  line-height: 1.25;
  color: rgba(255, 250, 240, 0.92);
  border-left: 8px solid var(--gold);
  padding-left: 26px;
}

.quote cite {
  display: block;
  margin-top: 20px;
  margin-left: 34px;
  color: var(--gold);
  font-style: normal;
  font-weight: 900;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px;
  background: var(--paper-strong);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  border-top: 5px solid var(--green);
  transition: transform 220ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 220ms ease;
}

.timeline-item:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: var(--shadow);
}

.timeline-item:nth-child(1) { border-top-color: var(--red-bright); }
.timeline-item:nth-child(2) { border-top-color: var(--gold); }
.timeline-item:nth-child(3) { border-top-color: var(--green-bright); }
.timeline-item:nth-child(4) { border-top-color: var(--red-bright); }

.timeline-item strong {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  background: var(--green);
  color: white;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
}

.timeline-item:nth-child(1) strong { background: var(--red-bright); }
.timeline-item:nth-child(2) strong { background: var(--gold); color: var(--ink); }
.timeline-item:nth-child(4) strong { background: var(--red-bright); }

.timeline-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.impacto-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.impacto-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 80%, rgba(221, 159, 45, 0.1), transparent 40%),
    radial-gradient(circle at 80% 18%, rgba(132, 190, 37, 0.08), transparent 35%);
}

.impact-intro {
  max-width: 820px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.section-eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: currentColor;
}

.impact-intro h2 {
  font-size: clamp(1.8rem, 3.25vw, 3.45rem);
  line-height: 1.12;
  text-transform: uppercase;
}

.impact-intro h2 span {
  color: var(--green-bright);
}

.impact-intro h2 strong {
  color: var(--gold);
  font-weight: 400;
}

.impact-intro h2::after {
  content: "";
  display: block;
  width: min(340px, 62vw);
  height: 5px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--red-bright), var(--gold), var(--green-bright));
  border-radius: 999px;
}

.impact-text {
  max-width: 760px;
  margin-top: 20px;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.65;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 52px;
}

.impact-card {
  text-align: center;
  padding: 34px 18px 28px;
  background: var(--paper-strong);
  border-radius: var(--radius);
  border-top: 6px solid var(--gold);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.impact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 48px rgba(34, 34, 34, 0.16);
}

.impact-number {
  display: block;
  font-family: "Dela Gothic One", sans-serif;
  font-size: clamp(2.8rem, 4vw, 3.8rem);
  line-height: 1;
  color: var(--red-bright);
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}

.pulse {
  animation: pulseNumber 800ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes pulseNumber {
  0% { transform: scale(1); }
  40% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

.impact-label {
  display: block;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.5;
}

.news-section.dark .section-header p {
  color: rgba(255, 250, 240, 0.78);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.news-card {
  display: flex;
  flex-direction: column;
  background: rgba(34, 34, 34, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.36);
  border-color: rgba(255, 255, 255, 0.22);
}

.news-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: rgba(34, 34, 34, 0.5);
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease, opacity 360ms ease;
}

.news-card:hover .news-card-img img {
  transform: scale(1.06);
  opacity: 0.82;
}

.news-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 240ms ease;
}

.news-card:hover .news-card-img::after {
  opacity: 1;
}

.news-card--green .news-card-img::after {
  background: linear-gradient(180deg, transparent 55%, rgba(132, 190, 37, 0.28));
}

.news-card--gold .news-card-img::after {
  background: linear-gradient(180deg, transparent 55%, rgba(221, 159, 45, 0.28));
}

.news-card--red .news-card-img::after {
  background: linear-gradient(180deg, transparent 55%, rgba(255, 66, 66, 0.28));
}

.news-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 22px 26px;
  position: relative;
}

.news-card-body::before {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  margin: -22px -22px 0;
}

.news-card--green .news-card-body::before {
  background: var(--green-bright);
}

.news-card--gold .news-card-body::before {
  background: var(--gold);
}

.news-card--red .news-card-body::before {
  background: var(--red-bright);
}

.news-card time {
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.news-card h3 {
  font-size: 1.06rem;
  line-height: 1.2;
  color: var(--paper-strong);
  transition: color 180ms ease;
}

.news-card:hover h3 {
  color: var(--gold);
}

.news-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
  line-height: 1.55;
}

.news-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
  transition: gap 200ms ease, color 160ms ease, border-color 160ms ease;
}

.news-cta::after {
  content: "→";
  transition: transform 200ms ease;
}

.news-cta:hover {
  gap: 14px;
  color: var(--red-bright);
  border-color: var(--red-bright);
}

.news-cta:hover::after {
  transform: translateX(4px);
}

/* =========================================================
   PÁGINA DE NOTÍCIAS (noticias.html)
   ========================================================= */
.noticias-banner {
  min-height: 52svh;
}

.noticias-banner::after {
  background:
    linear-gradient(90deg, rgba(34, 34, 34, 0.82) 0%, rgba(34, 34, 34, 0.4) 50%, rgba(34, 34, 34, 0.1) 100%),
    linear-gradient(0deg, rgba(190, 37, 37, 0.35) 0%, transparent 50%);
}

.noticias-banner .container {
  padding: 120px 0 64px;
}

.noticias-banner h1 {
  max-width: 740px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  text-transform: none;
  line-height: 1.12;
}

.noticias-banner h1::after {
  display: none;
}

/* Section */
.noticias-section {
  padding: 64px 0 88px;
  background: var(--paper);
  position: relative;
}

.noticias-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red-bright), var(--gold), var(--green-bright));
}

/* Filtros */
.noticias-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.noticias-filter {
  padding: 7px 18px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.noticias-filter:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.noticias-filter.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  box-shadow: 0 4px 14px rgba(221, 159, 45, 0.3);
}

/* Grid */
.noticias-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

/* Card */
.noticia-card {
  display: flex;
  flex-direction: column;
  background: var(--paper-strong);
  border: 1px solid rgba(34, 34, 34, 0.08);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
  box-shadow: 0 2px 8px rgba(34, 34, 34, 0.04);
}

.noticia-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(34, 34, 34, 0.1);
  border-color: transparent;
}

.noticia-card-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--paper);
}

.noticia-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease, opacity 400ms ease;
}

.noticia-card:hover .noticia-card-img img {
  transform: scale(1.06);
  opacity: 0.85;
}

.noticia-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 4px 14px;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.noticia-card--green .noticia-card-tag {
  background: rgba(132, 190, 37, 0.88);
}

.noticia-card--gold .noticia-card-tag {
  background: rgba(221, 159, 45, 0.88);
}

.noticia-card--red .noticia-card-tag {
  background: rgba(255, 66, 66, 0.88);
}

.noticia-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 22px 26px;
  flex: 1;
  position: relative;
}

.noticia-card-body time {
  color: var(--ink-soft);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.noticia-card-body h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.28;
  color: var(--ink);
  transition: color 180ms ease;
}

.noticia-card:hover .noticia-card-body h3 {
  color: var(--gold);
}

.noticia-card-body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.55;
}

.noticia-card-cta {
  margin-top: auto;
  padding-top: 10px;
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  transition: transform 180ms ease, color 180ms ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.noticia-card-author {
  display: block;
  font-size: 0.8rem;
  color: var(--gray);
  font-style: italic;
  margin-top: 4px;
  margin-bottom: 2px;
}

.noticia-card:hover .noticia-card-cta {
  transform: translateX(5px);
  color: var(--gold-deep);
}

/* Skeleton loading */
.skeleton-card {
  border-radius: 10px;
  overflow: hidden;
  background: var(--paper-strong);
  border: 1px solid var(--border);
}

.skeleton-img {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(110deg, var(--border) 25%, rgba(255,255,255,0.35) 37%, var(--border) 63%);
  background-size: 300% 100%;
  animation: skeletonShimmer 1.6s ease-in-out infinite;
}

.skeleton-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.skeleton-line {
  border-radius: 6px;
  background: linear-gradient(110deg, var(--border) 25%, rgba(255,255,255,0.35) 37%, var(--border) 63%);
  background-size: 300% 100%;
  animation: skeletonShimmer 1.6s ease-in-out infinite;
}

.skeleton-line--sm { width: 35%; height: 12px; }
.skeleton-line--lg { width: 90%; height: 18px; }
.skeleton-line--md { width: 70%; height: 12px; }
.skeleton-line--cta { width: 40%; height: 12px; margin-top: 4px; }

@keyframes skeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Empty state */
.noticias-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-soft);
}

.noticias-empty-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 12px;
}

.noticias-empty p {
  font-size: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

/* =========================================================
   MODAL DE ARTIGO
   ========================================================= */

.article-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 400ms ease;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.article-overlay.is-open {
  opacity: 1;
}

.article-modal {
  width: min(760px, calc(100% - 32px));
  margin: 48px auto 72px;
  background: var(--paper-strong);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
  transform: translateY(48px) scale(0.95);
  opacity: 0;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 420ms ease;
}

.article-modal.is-open {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Close */
.article-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 10;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 180ms ease, transform 180ms ease;
}

.article-close:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.08);
}

.article-close span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.article-close span:first-child {
  transform: rotate(45deg);
}

.article-close span:last-child {
  transform: rotate(-45deg);
}

/* Cover */
.article-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--paper);
}

.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-cover-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.55) 100%);
}

/* Header */
.article-header {
  padding: 36px 40px 0;
}

.article-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 18px;
}

.article-tag--green {
  background: var(--green-bright);
}

.article-tag--gold {
  background: var(--gold);
}

.article-tag--red {
  background: var(--red-bright);
}

.article-header h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1.15;
  color: var(--ink);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  color: var(--ink-soft);
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
}

.article-meta time {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.article-reading {
  position: relative;
  padding-left: 16px;
}

.article-reading::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink-soft);
}

.article-author {
  font-size: 0.78rem;
  color: var(--gray);
  font-style: italic;
  padding-left: 14px;
  position: relative;
}

.article-author::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink-soft);
}

/* Body */
.article-body {
  padding: 28px 40px 0;
  max-width: 680px;
}

.article-body p {
  margin: 0 0 20px;
  font-size: 1.04rem;
  line-height: 1.75;
  color: var(--ink);
}

.article-body figure {
  margin: 32px 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.article-body figure img {
  width: 100%;
  display: block;
}

.article-body figcaption {
  padding: 12px 16px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-style: italic;
  background: var(--paper);
}

.article-body blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  border-left: 4px solid var(--gold);
  background: linear-gradient(135deg, rgba(221, 159, 45, 0.06), rgba(221, 159, 45, 0.02));
  border-radius: 0 10px 10px 0;
  position: relative;
}

.article-body blockquote::before {
  content: "\201C";
  position: absolute;
  top: -8px;
  left: 12px;
  font-size: 3.5rem;
  color: var(--gold);
  font-family: "Dela Gothic One", serif;
  line-height: 1;
  opacity: 0.3;
}

.article-body blockquote p {
  margin: 0 0 8px;
  font-size: 1.08rem;
  font-weight: 600;
  font-style: italic;
  color: var(--ink);
}

.article-body blockquote cite {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-style: normal;
}

/* Footer */
.article-footer {
  padding: 36px 40px 44px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  border-top: 1px solid var(--line);
  margin-top: 8px;
}

.article-share {
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* Loading state */
.article-modal[data-loading] .article-content {
  opacity: 0;
}

/* =========================================================
   RESPONSIVO — NOTÍCIAS
   ========================================================= */

@media (max-width: 920px) {
  .noticias-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-modal {
    width: calc(100% - 24px);
    margin: 24px auto 40px;
  }

  .article-header,
  .article-body,
  .article-footer {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 640px) {
  .noticias-section {
    padding: 40px 0 60px;
  }

  .noticias-filters {
    justify-content: center;
    margin-bottom: 32px;
  }

  .noticias-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .article-modal {
    margin: 16px auto 32px;
    border-radius: 10px;
  }

  .article-header,
  .article-body,
  .article-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .article-body p {
    font-size: 0.95rem;
  }
}

/* =========================================================
   MODAL DE ARTIGO
   ========================================================= */

.article-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 360ms ease;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.article-overlay.is-open {
  opacity: 1;
}

.article-modal {
  width: min(760px, calc(100% - 32px));
  margin: 40px auto 60px;
  background: var(--paper-strong);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
  transform: translateY(40px) scale(0.96);
  opacity: 0;
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 380ms ease;
}

.article-modal.is-open {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Fechar */
.article-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 180ms ease, transform 180ms ease;
}

.article-close:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.06);
}

.article-close span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.article-close span:first-child {
  transform: rotate(45deg);
}

.article-close span:last-child {
  transform: rotate(-45deg);
}

/* Capa */
.article-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--paper);
}

.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-cover-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
}

/* Header do artigo */
.article-header {
  padding: 32px 36px 0;
}

.article-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 16px;
}

.article-tag--green {
  background: var(--green-bright);
}

.article-tag--gold {
  background: var(--gold);
}

.article-tag--red {
  background: var(--red-bright);
}

.article-header h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  line-height: 1.15;
  color: var(--ink);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
  color: var(--ink-soft);
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
}

.article-meta time {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.article-reading {
  position: relative;
  padding-left: 16px;
}

.article-reading::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink-soft);
}

/* Corpo do artigo */
.article-body {
  padding: 24px 36px 0;
  max-width: 680px;
}

.article-body p {
  margin: 0 0 18px;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink);
}

.article-body figure {
  margin: 28px 0;
  border-radius: 8px;
  overflow: hidden;
}

.article-body figure img {
  width: 100%;
  display: block;
}

.article-body figcaption {
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-style: italic;
  background: var(--paper);
}

.article-body blockquote {
  margin: 28px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--gold);
  background: rgba(221, 159, 45, 0.06);
  border-radius: 0 8px 8px 0;
}

.article-body blockquote p {
  margin: 0 0 8px;
  font-size: 1.08rem;
  font-weight: 600;
  font-style: italic;
  color: var(--ink);
}

.article-body blockquote cite {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-style: normal;
}

/* Footer do artigo */
.article-footer {
  padding: 32px 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.article-share {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* Estado de carregamento */
.article-modal[data-loading] .article-content {
  opacity: 0;
}

/* =========================================================
   RESPONSIVO — NOTÍCIAS
   ========================================================= */

@media (max-width: 920px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .noticias-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-modal {
    width: calc(100% - 24px);
    margin: 24px auto 40px;
  }

  .article-header,
  .article-body,
  .article-footer {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 640px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .impact-card {
    padding: 24px 16px 20px;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .noticias-grid {
    grid-template-columns: 1fr;
  }

  .noticias-section {
    padding: 40px 0 60px;
  }

  .noticias-filters {
    justify-content: center;
  }

  .article-modal {
    margin: 16px auto 32px;
    border-radius: 8px;
  }

  .article-header,
  .article-body,
  .article-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .article-body p {
    font-size: 0.95rem;
  }
}

.person-card img {
  width: 116px;
  height: 116px;
  margin: 24px auto 0;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.team-carousel {
  position: relative;
  margin-top: 34px;
}

.team-carousel-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 0 12px;
  scroll-padding-left: 0;
}

.team-carousel-track::-webkit-scrollbar {
  display: none;
}

.team-carousel-track .person-card {
  min-width: 320px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.team-carousel-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.team-carousel-btn {
  width: 48px;
  height: 48px;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.team-carousel-btn:hover {
  background: var(--gold);
  color: var(--ink);
  transform: scale(1.08);
}

.person-card div {
  padding: 20px 22px 30px;
  text-align: center;
}

.person-card span {
  display: block;
  color: var(--red-bright);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.person-card {
  position: relative;
  background: var(--ink);
  color: white;
  box-shadow: none;
}

.person-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--red-bright), var(--gold), var(--green));
}

.person-card h3 {
  color: white;
  letter-spacing: 0.05em;
}

.person-card p {
  color: rgba(255, 255, 255, 0.82);
}

.banner {
  min-height: 48svh;
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  color: white;
  overflow: hidden;
}

.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--banner-image) center / cover no-repeat;
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(34, 34, 34, 0.86), rgba(34, 34, 34, 0.26)),
    linear-gradient(0deg, rgba(190, 37, 37, 0.48), transparent 42%);
}

.banner .container {
  padding: 96px 0 56px;
}

.banner h1 {
  max-width: 820px;
  font-size: clamp(2.05rem, 3.55vw, 3.55rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.banner h1::after {
  content: "";
  display: block;
  width: min(340px, 62vw);
  height: 8px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--red-bright), var(--gold), var(--green-bright));
}

.two-column-text {
  columns: 2 340px;
  column-gap: 44px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 980px;
}

/* ========== TRAJETÓRIA (nova história) ========== */

.trajetoria-section {
  background: var(--paper-strong);
  position: relative;
  padding: 64px 0;
}

.trajetoria-intro {
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 4px solid;
  border-image: linear-gradient(90deg, var(--red-bright), var(--gold), var(--green-bright)) 1;
}

.trajetoria-intro .trajetoria-eyebrow {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 6px;
}

.trajetoria-intro h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  line-height: 1.08;
  text-transform: uppercase;
  margin: 0 0 8px 0;
  max-width: 680px;
}

.trajetoria-intro h2 span {
  color: var(--green-bright);
}

.trajetoria-intro p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 600px;
}

.trajetoria-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 28px;
}

.trajetoria-block {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 24px;
  align-items: center;
}

.trajetoria-block--reverse {
  grid-template-columns: 1fr 0.7fr;
}

.trajetoria-block--reverse .trajetoria-text {
  order: 1;
}

.trajetoria-block--reverse .trajetoria-visual {
  order: 2;
}

.trajetoria-visual {
  position: relative;
}

.trajetoria-visual img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: calc(var(--radius) - 4px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.trajetoria-visual::after {
  content: "";
  position: absolute;
  inset: auto -8px -8px auto;
  width: 50%;
  height: 50%;
  border: 4px solid var(--red-bright);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.4;
}

.trajetoria-block--reverse .trajetoria-visual::after {
  inset: auto auto -8px -8px;
  border-color: var(--green-bright);
}

.trajetoria-year {
  position: absolute;
  top: 8px;
  left: 8px;
  font-family: "Dela Gothic One", sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  color: white;
  background: var(--ink);
  padding: 5px 12px;
  border-radius: 999px;
  line-height: 1;
  letter-spacing: 0.04em;
}

.trajetoria-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trajetoria-numeral {
  font-family: "Dela Gothic One", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1;
  color: var(--red-bright);
  margin-bottom: 2px;
}

.trajetoria-block:nth-child(2) .trajetoria-numeral {
  color: var(--gold);
}

.trajetoria-block:nth-child(3) .trajetoria-numeral {
  color: var(--green-bright);
}

.trajetoria-block:nth-child(4) .trajetoria-numeral {
  color: var(--red-bright);
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.trajetoria-text h3 {
  font-family: "Dela Gothic One", sans-serif;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: var(--ink);
  margin: 0;
  line-height: 1.15;
}

.trajetoria-text p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

.trajetoria-text p strong {
  color: var(--red-bright);
  font-weight: 700;
}

.trajetoria-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--red-bright);
  color: white;
  width: fit-content;
}

.trajetoria-block:nth-child(2) .trajetoria-tag {
  background: var(--gold);
  color: var(--ink);
}

.trajetoria-block:nth-child(3) .trajetoria-tag {
  background: var(--green-bright);
}

.trajetoria-block:nth-child(4) .trajetoria-tag {
  background: var(--ink);
}

.trajetoria-callout {
  margin-top: 28px;
  padding: 24px 20px;
  background: var(--ink);
  border-radius: var(--radius);
  border-left: 8px solid var(--gold);
  text-align: center;
}

.trajetoria-callout p {
  font-family: "Dela Gothic One", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  color: white;
  line-height: 1.3;
  margin: 0 0 12px 0;
}

.trajetoria-callout cite {
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold);
}

/* Conector entre anos da trajetória */
.trajetoria-connector {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 0;
}

.connector-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--red-bright), var(--gold), var(--green-bright));
  border-radius: 999px;
  opacity: 0.35;
}

.connector-arrow {
  font-size: 0.55rem;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
  transition: transform 300ms ease;
}

.trajetoria-connector:hover .connector-arrow {
  transform: scale(1.4);
  opacity: 1;
}

@media (max-width: 920px) {
  .trajetoria-block,
  .trajetoria-block--reverse {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .trajetoria-block--reverse .trajetoria-text {
    order: 0;
  }

  .trajetoria-block--reverse .trajetoria-visual {
    order: 0;
  }

  .trajetoria-visual img {
    aspect-ratio: 16 / 10;
  }

  .trajetoria-section {
    padding: 48px 0;
  }

  .trajetoria-intro {
    margin-bottom: 24px;
    padding-bottom: 16px;
  }

  .trajetoria-connector {
    padding: 2px 0;
    gap: 8px;
  }

  .trajetoria-callout {
    padding: 24px 16px;
  }
}

/* ========== PHOTO BREAK ========== */

.photo-break {
  padding: 0;
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  background-image: var(--photo-bg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.photo-break::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(23, 23, 23, 0.85) 0%,
    rgba(23, 23, 23, 0.5) 50%,
    rgba(23, 23, 23, 0.85) 100%
  );
}

.photo-break-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.photo-break-content .eyebrow {
  color: var(--gold);
}

.photo-break-content h2 {
  font-family: "Dela Gothic One", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: white;
  margin: 12px 0 0;
  line-height: 1.15;
}

@media (max-width: 920px) {
  .photo-break {
    height: 260px;
    background-attachment: scroll;
  }

  .team-carousel-track .person-card {
    min-width: 0;
    width: calc(100% - 24px);
    flex: 0 0 calc(100% - 24px);
    max-width: none;
  }
}

@media (max-width: 640px) {
  .photo-break {
    height: 220px;
  }

  .team-carousel-track .person-card {
    min-width: 0;
    width: calc(100% - 24px);
    flex: 0 0 calc(100% - 24px);
    max-width: none;
  }
}

.pix-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  max-width: 620px;
  margin-top: 28px;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--paper-strong);
  border-radius: var(--radius);
}

.pix-key {
  font-weight: 900;
  font-size: clamp(1.1rem, 4vw, 2rem);
  color: var(--red);
  overflow-wrap: anywhere;
}
/* =========================================================
   PÁGINA APOIE (doe.html) — Campanha Adote um Estudante
   ========================================================= */

/* --- HERO --- */

.adote-hero {
  min-height: 64svh;
}

.adote-hero::after {
  background:
    linear-gradient(90deg, rgba(23, 23, 23, 0.86), rgba(23, 23, 23, 0.40) 55%, rgba(23, 23, 23, 0.10)),
    linear-gradient(0deg, rgba(247, 243, 234, 0.92), transparent 36%);
}

.adote-hero h1 {
  font-size: clamp(2rem, 4.2vw, 4rem);
  max-width: 780px;
}

.adote-hero h1 em {
  color: var(--gold);
  font-style: normal;
  font-weight: 400;
}

.adote-hero .hero-copy {
  max-width: 620px;
}

/* --- REALIDADE (stats com contadores) --- */

.realidade-section {
  background: var(--ink);
  color: var(--paper-strong);
  padding: 72px 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.realidade-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 80%, rgba(132, 190, 37, 0.08), transparent 38%),
    radial-gradient(circle at 82% 22%, rgba(221, 159, 45, 0.08), transparent 38%);
}

.realidade-intro {
  max-width: 720px;
  margin-bottom: 48px;
}

.realidade-intro h2 {
  font-family: "Dela Gothic One", sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.14;
  color: white;
  margin: 0;
}

.realidade-intro h2 em {
  color: var(--gold);
  font-style: normal;
}

.realidade-intro p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
  line-height: 1.65;
}

.realidade-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.realidade-stat {
  padding: 36px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.10);
}

.realidade-stat:last-child {
  border-right: 0;
}

.realidade-stat strong {
  display: block;
  font-family: "Dela Gothic One", sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 3.8rem);
  line-height: 1;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}

.realidade-stat:nth-child(2) strong { color: var(--red-bright); }
.realidade-stat:nth-child(3) strong { color: var(--green-bright); }

.realidade-stat span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.5;
}

.realidade-stat.is-counting strong::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 0.9em;
  margin-left: 4px;
  background: currentColor;
  animation: caretPulse 600ms steps(2, end) infinite;
  vertical-align: baseline;
}

@keyframes caretPulse {
  50% { opacity: 0; }
}

/* --- CAMPANHA (introdução do conceito) --- */

.campanha-section {
  background: var(--paper-strong);
  padding: 82px 0;
}

.campanha-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.campanha-text .section-eyebrow {
  margin-bottom: 14px;
}

.campanha-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.12;
  text-transform: uppercase;
  margin: 0;
}

.campanha-text h2 em {
  color: var(--gold);
  font-style: normal;
  font-weight: 400;
}

.campanha-text h2::after {
  content: "";
  display: block;
  width: min(240px, 50vw);
  height: 5px;
  margin-top: 16px;
  background: linear-gradient(90deg, var(--red-bright), var(--gold), var(--green-bright));
  border-radius: 999px;
}

.campanha-text p {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.campanha-text p strong {
  color: var(--ink);
}

/* Conexão visual: Padrinho -> Estudante -> Universidade */
.campanha-visual {
  position: relative;
  padding: 36px 0;
}

.campanha-conexao {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.conexao-node {
  width: 100%;
  max-width: 320px;
  padding: 22px 28px;
  text-align: center;
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
  position: relative;
  transition: transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.conexao-node--voce {
  border-bottom: 5px solid var(--red-bright);
}

.conexao-node--estudante {
  border-bottom: 5px solid var(--gold);
}

.conexao-node--universidade {
  background: linear-gradient(135deg, var(--green), var(--green-bright));
  border-bottom: none;
}

.conexao-node strong {
  display: block;
  font-family: "Dela Gothic One", sans-serif;
  font-size: 1.15rem;
  line-height: 1;
}

.conexao-node span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.70);
  font-size: 0.82rem;
  font-weight: 600;
}

.conexao-node--universidade span {
  color: rgba(255, 255, 255, 0.85);
}

.conexao-node--universidade strong {
  font-size: 1.05rem;
}

.conexao-seta {
  width: 3px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), var(--green-bright));
  border-radius: 999px;
  opacity: 0.5;
  position: relative;
}

.conexao-seta::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 8px solid var(--green-bright);
}

.campanha-section .reveal:nth-child(2) {
  transition-delay: 120ms;
}

/* --- JORNADA (onde seu apoio chega) --- */

.jornada-section {
  background: var(--ink);
  color: var(--paper-strong);
  padding: 82px 0;
  position: relative;
  overflow: hidden;
}

.jornada-section .section-header h2 {
  color: white;
}

.jornada-section .section-header h2::after {
  background: linear-gradient(90deg, var(--red-bright), var(--gold), var(--green-bright));
}

.jornada-section .section-header p {
  color: rgba(255, 255, 255, 0.72);
}

.jornada-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}

.jornada-flow::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 12%;
  right: 12%;
  height: 3px;
  background: linear-gradient(90deg, var(--red-bright), var(--gold), var(--green-bright));
  border-radius: 999px;
  opacity: 0.35;
}

.jornada-step {
  text-align: center;
  padding: 0 12px;
  position: relative;
}

.jornada-step-numero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ink);
  border: 3px solid;
  font-family: "Dela Gothic One", sans-serif;
  font-size: 1.2rem;
  color: white;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 300ms ease;
}

.jornada-step:nth-child(1) .jornada-step-numero { border-color: var(--red-bright); }
.jornada-step:nth-child(2) .jornada-step-numero { border-color: var(--gold); }
.jornada-step:nth-child(3) .jornada-step-numero { border-color: var(--green-bright); }
.jornada-step:nth-child(4) .jornada-step-numero { border-color: var(--red-bright); }

.jornada-step:hover .jornada-step-numero {
  transform: scale(1.12);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
}

.jornada-step h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.96rem;
  font-weight: 800;
  color: white;
  margin: 0 0 6px;
  letter-spacing: 0;
}

.jornada-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
  line-height: 1.55;
}

/* --- NÍVEIS (os tiers, redesenhados) --- */

.niveis-section {
  background:
    radial-gradient(circle at 80% 18%, rgba(221, 159, 45, 0.06), transparent 35%),
    var(--paper);
  padding: 82px 0;
}

.niveis-intro {
  max-width: 640px;
  margin-bottom: 52px;
}

.niveis-intro h2 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.12;
  text-transform: uppercase;
  margin: 0;
}

.niveis-intro h2 em {
  color: var(--red);
  font-style: normal;
  font-weight: 400;
}

.niveis-intro h2::after {
  content: "";
  display: block;
  width: min(260px, 56vw);
  height: 5px;
  margin-top: 16px;
  background: linear-gradient(90deg, var(--green-bright), var(--gold), var(--red-bright));
  border-radius: 999px;
}

.niveis-intro p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.niveis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* Card escuro no padrão da marca (course-card) */
.plano-card {
  display: flex;
  flex-direction: column;
  background: var(--ink);
  color: white;
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 280ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 280ms ease;
}

.plano-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: linear-gradient(90deg, var(--red-bright), var(--gold), var(--green-bright));
}

.plano-card:nth-child(1)::before {
  background: linear-gradient(90deg, var(--green-bright), var(--green));
}

.plano-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--red), var(--red-bright));
}

.plano-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.22);
}

.plano-card.is-selected {
  transform: translateY(-8px);
  box-shadow: 0 30px 64px rgba(0, 0, 0, 0.28);
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.plano-card-topo {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.plano-card-topo strong {
  display: block;
  font-family: "Dela Gothic One", sans-serif;
  font-size: 1.3rem;
  line-height: 1;
  color: white;
  letter-spacing: 0;
}

.plano-card:nth-child(1) .plano-card-topo strong { color: var(--green-bright); }
.plano-card:nth-child(2) .plano-card-topo strong { color: var(--gold); }
.plano-card:nth-child(3) .plano-card-topo strong { color: var(--red-bright); }

.plano-card-topo span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.plano-card-valor {
  text-align: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.plano-card-valor strong {
  display: block;
  font-family: "Dela Gothic One", sans-serif;
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  line-height: 1;
  color: white;
}

.plano-card-valor strong small {
  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.56);
}

.plano-card-valor span {
  display: block;
  margin-top: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.52);
}

.plano-card-valor span strong {
  display: inline;
  font-family: inherit;
  font-size: inherit;
  color: var(--gold);
}

.plano-card-financia {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.plano-card-financia p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1.55;
}

.plano-card-contrapartidas {
  padding: 20px 0;
  flex: 1;
}

.plano-card-contrapartidas h4 {
  margin: 0 0 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.48);
}

.plano-card-contrapartidas ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plano-card-contrapartidas li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.80);
  font-size: 0.86rem;
  line-height: 1.55;
}

.plano-card-contrapartidas li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.plano-card:nth-child(1) .plano-card-contrapartidas li::before { background: var(--green-bright); }
.plano-card:nth-child(2) .plano-card-contrapartidas li::before { background: var(--gold); }
.plano-card:nth-child(3) .plano-card-contrapartidas li::before { background: var(--red-bright); }

.plano-card-contrapartidas li strong {
  color: var(--gold);
  font-weight: 700;
}

.plano-card-cta {
  padding-top: 16px;
}

.plano-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 50px;
  padding: 14px 20px;
  border: 2px solid;
  border-radius: 6px;
  background: transparent;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 180ms ease;
}

.plano-card-btn:hover {
  transform: translateY(-2px);
}

.plano-card:nth-child(1) .plano-card-btn {
  border-color: var(--green-bright);
  color: var(--green-bright);
}

.plano-card:nth-child(1) .plano-card-btn:hover {
  background: var(--green-bright);
  color: var(--ink);
}

.plano-card:nth-child(2) .plano-card-btn {
  border-color: var(--gold);
  color: var(--gold);
}

.plano-card:nth-child(2) .plano-card-btn:hover {
  background: var(--gold);
  color: var(--ink);
}

.plano-card:nth-child(3) .plano-card-btn {
  border-color: var(--red-bright);
  color: var(--red-bright);
  font-size: 0.92rem;
}

.plano-card:nth-child(3) .plano-card-btn:hover {
  background: var(--red-bright);
  color: white;
}

.plano-card.is-selected .plano-card-btn {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

/* --- DEPOIMENTOS --- */

.depoimento-section {
  background: var(--paper);
  padding: 82px 0;
}

.depoimento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.depoimento-card {
  position: relative;
  padding: 36px 32px;
  background: var(--paper-strong);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  border-left: 6px solid var(--gold);
}

.depoimento-card:nth-child(2) {
  border-left-color: var(--green-bright);
}

.depoimento-card::before {
  content: "\201C";
  position: absolute;
  top: 6px;
  left: 14px;
  font-family: "Dela Gothic One", serif;
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.18;
  line-height: 1;
}

.depoimento-card:nth-child(2)::before {
  color: var(--green-bright);
}

.depoimento-card p {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.65;
  font-style: italic;
}

.depoimento-card cite {
  display: block;
  color: var(--ink-soft);
  font-style: normal;
  font-weight: 700;
  font-size: 0.88rem;
}

.depoimento-card cite span {
  display: block;
  margin-top: 2px;
  color: var(--red);
  font-weight: 500;
  font-size: 0.78rem;
}

/* --- CTA WHATSAPP --- */

.cta-apoie {
  background:
    radial-gradient(circle at 50% 30%, rgba(132, 190, 37, 0.08), transparent 50%),
    var(--paper-strong);
  padding: 82px 0;
}

.cta-apoie-inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.cta-apoie-inner h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.14;
  text-transform: uppercase;
  margin: 14px 0 12px;
}

.cta-apoie-inner h2 em {
  color: var(--green-bright);
  font-style: normal;
  font-weight: 400;
}

.cta-apoie-sub {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 36px;
}

.cta-apoie-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.cta-apoie-tiers {
  display: flex;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-strong);
}

.cta-apoie-tier {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
  padding: 14px 12px 12px;
  cursor: pointer;
  text-align: center;
  border-right: 1px solid var(--line);
  transition: background 200ms ease, color 200ms ease, box-shadow 200ms ease;
  position: relative;
}

.cta-apoie-tier:last-child {
  border-right: 0;
}

.cta-apoie-tier input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.cta-apoie-tier strong {
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  transition: color 200ms ease;
}

.cta-apoie-tier small {
  font-size: 0.72rem;
  color: var(--ink-soft);
  opacity: 0.6;
  font-weight: 600;
  transition: color 200ms ease, opacity 200ms ease;
}

/* Estado checked */
.cta-apoie-tier--green input:checked ~ strong,
.cta-apoie-tier--green input:checked ~ small {
  color: var(--green-bright);
}

.cta-apoie-tier--gold input:checked ~ strong,
.cta-apoie-tier--gold input:checked ~ small {
  color: var(--gold);
}

.cta-apoie-tier--red input:checked ~ strong,
.cta-apoie-tier--red input:checked ~ small {
  color: var(--red-bright);
}

.cta-apoie-tier--green input:checked ~ strong { color: var(--green-bright); }
.cta-apoie-tier--gold input:checked ~ strong { color: var(--gold); }
.cta-apoie-tier--red input:checked ~ strong { color: var(--red-bright); }

.cta-apoie-tier--green input:checked ~ small { color: var(--green); }
.cta-apoie-tier--gold input:checked ~ small { color: var(--gold-deep); }
.cta-apoie-tier--red input:checked ~ small { color: var(--red); }

.cta-apoie-tier input:checked ~ strong,
.cta-apoie-tier input:checked ~ small {
  opacity: 1;
}

/* Background no checked */
.cta-apoie-tier--green:has(input:checked) {
  background: rgba(132, 190, 37, 0.10);
  box-shadow: inset 0 -3px 0 var(--green-bright);
}

.cta-apoie-tier--gold:has(input:checked) {
  background: rgba(221, 159, 45, 0.10);
  box-shadow: inset 0 -3px 0 var(--gold);
}

.cta-apoie-tier--red:has(input:checked) {
  background: rgba(255, 66, 66, 0.10);
  box-shadow: inset 0 -3px 0 var(--red-bright);
}

.cta-apoie-tier:hover {
  background: rgba(34, 34, 34, 0.04);
}

/* Foco visível no radio */
.cta-apoie-tier:has(input:focus-visible) {
  outline: 2px dashed var(--gold);
  outline-offset: -2px;
}

.cta-nome-label {
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--ink);
  margin-bottom: -8px;
}

.cta-nome-input {
  width: 100%;
  max-width: 400px;
  padding: 16px 20px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  color: var(--ink);
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  text-align: left;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.cta-nome-input::placeholder {
  color: var(--ink-soft);
  opacity: 0.5;
}

.cta-nome-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(221, 159, 45, 0.14);
}

.cta-nome-input.is-error {
  border-color: var(--red-bright);
  box-shadow: 0 0 0 4px rgba(255, 66, 66, 0.10);
}

.cta-nome-error {
  display: none;
  color: var(--red-bright);
  font-weight: 700;
  font-size: 0.80rem;
}

.cta-nome-error.is-visible {
  display: block;
}

.cta-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 16px 36px;
  border: none;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.30);
}

.cta-whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(37, 211, 102, 0.40);
  filter: brightness(1.05);
}

.cta-whatsapp-btn:active {
  transform: translateY(0);
}

.cta-whatsapp-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* --- RESPONSIVO --- */

@media (max-width: 920px) {
  .realidade-stats {
    grid-template-columns: 1fr;
  }

  .realidade-stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    padding: 28px 24px;
  }

  .realidade-stat:last-child {
    border-bottom: 0;
  }

  .realidade-stat strong {
    font-size: 2.6rem;
  }

  .campanha-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .jornada-flow {
    grid-template-columns: 1fr 1fr;
    gap: 32px 0;
  }

  .jornada-flow::before {
    display: none;
  }

  .niveis-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .plano-card.is-selected {
    transform: none;
  }

  .cta-apoie-tiers {
    max-width: 400px;
  }

  .cta-apoie-tier {
    padding: 12px 10px 10px;
  }

  .cta-apoie-tier strong {
    font-size: 0.78rem;
  }

  .cta-apoie-tier small {
    font-size: 0.68rem;
  }

  .depoimento-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .realidade-section {
    padding: 56px 0;
  }

  .realidade-stat strong {
    font-size: 2.2rem;
  }

  .campanha-section {
    padding: 58px 0;
  }

  .conexao-node {
    max-width: 280px;
    padding: 18px 22px;
  }

  .jornada-section {
    padding: 58px 0;
  }

  .jornada-flow {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .niveis-section {
    padding: 58px 0;
  }

  .plano-card {
    padding: 26px 22px;
  }

  .plano-card-valor strong {
    font-size: 2.2rem;
  }

  .cta-apoie {
    padding: 58px 0;
  }

  .cta-whatsapp-btn {
    width: 100%;
    justify-content: center;
    font-size: 0.92rem;
  }

  .cta-nome-input {
    max-width: 100%;
    font-size: 1rem;
  }

  .cta-apoie-tiers {
    max-width: 100%;
    width: 100%;
  }

  .cta-apoie-tier {
    padding: 10px 8px 8px;
  }

  .cta-apoie-tier strong {
    font-size: 0.72rem;
  }

  .cta-apoie-tier small {
    font-size: 0.64rem;
  }

  .depoimento-section {
    padding: 58px 0;
  }
}

.contact-form {
  display: grid;
  gap: 18px;
  max-width: 640px;
}

.contact-form label {
  display: grid;
  gap: 6px;
}

.contact-form label span {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  color: var(--ink);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--green);
}

.contact-form .button {
  width: fit-content;
  margin-top: 4px;
}

.contact-hint {
  margin: 0 0 20px;
  padding: 12px 16px;
  border-left: 3px solid var(--gold);
  background: rgba(221, 159, 45, 0.08);
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.contact-hint strong {
  color: var(--ink);
  font-weight: 700;
}

.contact-feedback {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.5;
  margin-top: 12px;
}

.contact-feedback a {
  color: inherit;
  text-decoration: underline;
  font-weight: 700;
}

.contact-feedback--success {
  background: rgba(132, 190, 37, 0.12);
  border: 1px solid var(--green-bright);
  color: var(--green);
}

.contact-feedback--error {
  background: rgba(190, 37, 37, 0.10);
  border: 1px solid var(--red-bright);
  color: var(--red);
}

.contato-section {
  background:
    linear-gradient(135deg, rgba(132, 190, 37, 0.1), transparent 42%),
    var(--paper-strong);
}

.contato-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contato-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.video-frame {
  aspect-ratio: 16 / 9;
  width: 100%;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--ink);
}

.site-footer {
  background: var(--ink);
  color: var(--paper-strong);
  padding: 64px 0 32px;
  border-top: 8px solid var(--gold);
}

.footer-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
}

.footer-logo img {
  width: 132px;
  margin-bottom: 18px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-links h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.84rem;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-links a,
.footer-logo p {
  display: block;
  color: rgba(255, 250, 240, 0.72);
  margin: 8px 0;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

/* 
   Objetivo: Estilizar a seção de créditos do desenvolvedor no rodapé (footer).
   Restrições: Manter alinhamento, responsividade e contraste em todas as resoluções.
*/
.footer-credit {
  width: var(--container);
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.88rem;
  color: rgba(255, 250, 240, 0.55);
}

.footer-credit strong {
  color: var(--paper-strong);
  font-weight: 600;
}

.footer-credit-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-credit-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 250, 240, 0.65);
  transition: color 200ms ease, transform 200ms ease;
  padding: 4px;
  border-radius: 4px;
}

.footer-credit-links a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-credit-links svg {
  width: 18px;
  height: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 320ms ease, transform 320ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .prevest-disciplinas {
    animation: none;
    flex-wrap: wrap;
    width: auto;
  }

  .photo-break {
    background-attachment: scroll !important;
  }
}

@media (max-width: 920px) {
  .site-header {
    background: var(--ink);
    border-bottom: 4px solid var(--gold);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .brand {
    color: white;
  }

  .nav-toggle {
    border-color: rgba(255, 255, 255, 0.22);
    color: white;
    display: block;
  }

  .site-nav a {
    color: white;
  }

  .site-nav {
    position: fixed;
    inset: calc(78px + env(safe-area-inset-top)) 0 auto;
    display: grid;
    gap: 0;
    padding: 16px 20px 24px;
    background: var(--ink);
    border-bottom: 4px solid var(--gold);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    transition: transform 240ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .home-hero .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
  }

  .slide-content {
    min-height: 460px;
    padding: 40px 0 60px;
  }

  .slide-content--left .hero-title {
    max-width: 480px;
  }

  .hero-strip,
  .section-header,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    align-items: start;
    gap: 18px;
  }

  .hero-strip {
    margin-top: 0;
  }

  .hero-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .course-grid,
  .team-grid,
  .support-grid,
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-card {
    flex: 0 1 calc(50% - 9px);
    min-width: 240px;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .esportes-content,
  .resultados-content,
  .doacao-content,
  .contato-content,
  .missao-grid,
  .prevest-hero,
  .prevest-stats {
    grid-template-columns: 1fr;
  }

  .doacao-cards,
  .contato-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 28px, 1160px);
  }

  .hero {
    min-height: 82svh;
  }

  .home-hero {
    min-height: auto;
  }

  .hero-content {
    padding: 78px 0 56px;
  }

  .home-hero .hero-content {
    padding: 52px 0 48px;
  }

  .hero-kicker {
    font-size: clamp(2.3rem, 12vw, 3.4rem);
  }

  .hero-title span {
    font-size: clamp(1.35rem, 6.6vw, 1.9rem);
  }

  .hero-title strong {
    font-size: clamp(1.68rem, 7.7vw, 2.05rem);
    line-height: 1;
  }

  .home-hero .hero-copy {
    font-size: 0.98rem;
  }

  .hero-title::after {
    width: 100%;
  }

  .hero-visual {
    min-height: 410px;
  }

  .hero-visual::before {
    inset: 64px 10% 28px 10%;
    box-shadow: 10px 10px 0 var(--gold), -10px -10px 0 var(--red);
  }

  .hero-badge {
    width: 78px;
    height: 78px;
    font-size: 1.15rem;
    top: 42px;
  }

  .hero-proof {
    left: 0;
    right: 0;
    bottom: 0;
    max-width: none;
  }

  .slide-content {
    min-height: 380px;
    padding: 30px 0 50px;
  }

  .slide-content--center .hero-kicker {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }

  .slide-content--center .hero-title strong {
    font-size: clamp(1.5rem, 4.5vw, 1.8rem);
  }

  .slide-content--left .hero-kicker {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }

  .slide-content--left .hero-title strong {
    font-size: clamp(1.5rem, 4.5vw, 1.8rem);
  }

  .hero-actions,
  .pix-box {
    grid-template-columns: 1fr;
  }

  .button,
  .hero-actions .button,
  .pix-box .button {
    width: 100%;
  }

  .section {
    padding: 58px 0;
  }

  .manifesto-section h2 {
    font-size: clamp(1.55rem, 7.4vw, 2.15rem);
    text-shadow: 2px 2px 0 rgba(221, 159, 45, 0.18);
  }

  .manifesto-section p {
    font-size: 0.95rem;
  }

  .section-header {
    margin-bottom: 28px;
  }

  .section-header h2,
  .split h2 {
    font-size: clamp(1.65rem, 8vw, 2.25rem);
  }

  .banner {
    min-height: 42svh;
  }

  .banner .container {
    padding: 72px 0 42px;
  }

  .banner h1 {
    font-size: clamp(1.65rem, 7.8vw, 2.25rem);
  }

  .quote p {
    font-size: clamp(1.1rem, 5.5vw, 1.45rem);
    padding-left: 16px;
    border-left-width: 5px;
  }

  .quote cite {
    margin-left: 21px;
  }

  .course-grid,
  .team-grid,
  .support-grid,
  .footer-links,
  .doacao-cards,
  .contato-cards {
    grid-template-columns: 1fr;
  }

  .project-card {
    flex: 0 1 100%;
    min-width: 0;
  }

  .media-stack {
    grid-template-columns: 1fr;
  }

  .media-stack img:nth-child(2) {
    transform: none;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .esportes-content,
  .prevest-hero {
    grid-template-columns: 1fr;
  }

  .prevest-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .prevest-visual {
    position: static;
  }
}

/* =========================================================

/* =========================================================
   RESPONSIVO — CARROSSEL HOME
   ========================================================= */

/* ── Tablet / 920px ── */
@media (max-width: 920px) {
  /* Slide 1 — grid vira coluna única */
  .home-hero .hero-content {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 100px 32px 48px;
  }

  .hero-visual {
    min-height: auto;
    margin-top: 40px;
  }

  .hero-visual::before {
    inset: 40px 4% 16px 4%;
    transform: rotate(-2deg);
  }

  .hero-visual::after {
    width: 100px;
    height: 120px;
    right: 10px;
    bottom: 20px;
  }

  .hero-visual img {
    width: min(420px, 86%);
  }

  .hero-badge {
    right: 5%;
    top: 28px;
    width: 80px;
    height: 80px;
    font-size: 1.2rem;
  }

  .hero-proof {
    left: 0;
    bottom: 14px;
    max-width: 240px;
    padding: 14px;
  }

  .hero-proof span {
    font-size: 0.82rem;
  }

  /* Slides 2 e 3 */
  .slide-content {
    width: 100%;
    min-height: 460px;
    padding: calc(40px + 72px) 32px 60px;
  }

  .slide-content--center .hero-title,
  .slide-content--left .hero-title {
    max-width: 560px;
  }

  .slide-content--center .hero-copy,
  .slide-content--left .hero-copy {
    max-width: 520px;
  }

  .slide-content .hero-title strong {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  /* Dots */
  .carousel-dots {
    bottom: 20px;
  }

  /* Strip — 2×2 */
  .hero-strip {
    grid-template-columns: repeat(2, 1fr);
    width: calc(100% - 64px);
    margin: 0 auto 20px;
  }

  .hero-strip div:nth-child(2) {
    border-right: 0;
  }

  .hero-strip div:nth-child(3),
  .hero-strip div:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-strip div {
    padding: 20px 16px;
  }

  .metric {
    font-size: 2rem;
  }

  .metric-label {
    font-size: 0.82rem;
  }
}

/* ── Mobile / 640px ── */
@media (max-width: 640px) {
  .home-hero .hero-content {
    padding: 72px 20px 36px;
  }

  .hero-kicker {
    font-size: clamp(1.6rem, 8vw, 2.4rem);
  }

  .hero-title span {
    font-size: clamp(1rem, 4.5vw, 1.4rem);
  }

  .hero-title strong {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    margin-top: 10px;
  }

  .hero-title::after {
    width: min(240px, 60vw);
    height: 5px;
    margin-top: 14px;
  }

  .home-hero .hero-copy {
    font-size: clamp(0.85rem, 3.5vw, 0.95rem);
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
  }

  .hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  /* Slide 1 — visual */
  .hero-visual {
    margin-top: 24px;
  }

  .hero-visual::before {
    inset: 24px 2% 12px 2%;
    box-shadow: 8px 8px 0 var(--gold), -8px -8px 0 var(--red), 0 16px 32px rgba(34, 34, 34, 0.12);
  }

  .hero-visual::after {
    display: none;
  }

  .hero-visual img {
    width: min(300px, 92%);
  }

  .hero-badge {
    right: 4%;
    top: 14px;
    width: 56px;
    height: 56px;
    font-size: 0.85rem;
  }

  .hero-proof {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: 100%;
    margin: 16px 8px 0;
    padding: 12px;
    font-size: 0.82rem;
    border-left-width: 5px;
  }

  /* Slides 2 e 3 */
  .slide-content {
    min-height: 340px;
    padding: calc(24px + 56px) 20px 44px;
  }

  .slide-content--center .hero-title,
  .slide-content--left .hero-title {
    max-width: 100%;
  }

  .slide-content--center .hero-copy,
  .slide-content--left .hero-copy {
    max-width: 100%;
  }

  .slide-content .hero-title span {
    font-size: clamp(0.85rem, 4vw, 1.1rem);
  }

  .slide-content .hero-title strong {
    font-size: clamp(1.3rem, 6.5vw, 1.8rem);
  }

  .slide-content .hero-copy {
    font-size: clamp(0.78rem, 3.2vw, 0.88rem);
  }

  .slide-actions--light {
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
  }

  .slide-actions--light .button {
    width: 100%;
    justify-content: center;
  }

  /* Dots */
  .carousel-dots {
    bottom: 12px;
    gap: 8px;
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
    border-width: 1.5px;
  }

  /* Strip */
  .hero-strip {
    width: calc(100% - 40px);
    margin: 0 auto 12px;
  }

  .hero-strip div {
    padding: 12px 10px;
  }

  .metric {
    font-size: 1.35rem;
  }

  .metric-label {
    font-size: 0.7rem;
    margin-top: 4px;
  }
}

@media (max-width: 480px) {
  .team-carousel {
    margin-top: 24px;
  }

  .team-carousel-track {
    gap: 12px;
    padding-bottom: 4px;
  }

  .team-carousel-track .person-card {
    min-width: 0;
    width: calc(100% - 20px);
    flex: 0 0 calc(100% - 20px);
    max-width: none;
  }

  .team-carousel-nav {
    margin-top: 18px;
    gap: 10px;
  }

  .team-carousel-btn {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .person-card img {
    width: 96px;
    height: 96px;
    margin-top: 20px;
    border-width: 6px;
  }

  .person-card div {
    padding: 16px 18px 24px;
  }

  .person-card h3 {
    font-size: 1.1rem;
  }

  .person-card p {
    font-size: 0.86rem;
    line-height: 1.55;
  }
}

/* ============================================================
   Ganchos de Inscrição e Candidatura
   Componentes compartilhados para CTAs de "Inscreva-se" em
   todas as páginas. Mantém a paleta autoral do projeto:
   --green (aluno), --red (equipe), --gold (destaque).
   ============================================================ */

/* Faixa inline (após grade de cursos) ------------------------- */
.cta-strip {
  margin-top: 56px;
  padding: 40px 36px;
  background:
    radial-gradient(circle at 0% 0%, rgba(132, 190, 37, 0.12), transparent 36%),
    radial-gradient(circle at 100% 100%, rgba(190, 37, 37, 0.10), transparent 38%),
    var(--ink);
  color: var(--paper);
  border-radius: 18px;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 75%);
  z-index: -1;
}

.cta-strip-text {
  display: grid;
  gap: 12px;
}

.cta-strip-text .section-eyebrow {
  color: var(--gold);
}

.cta-strip-text h3 {
  font-family: "Dela Gothic One", system-ui, sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.1;
  margin: 4px 0 0;
  color: var(--paper-strong);
}

.cta-strip-text p {
  margin: 0;
  color: rgba(237, 237, 237, 0.78);
  font-size: 0.98rem;
  line-height: 1.55;
}

.cta-strip-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cta-strip-card {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 22px 22px 22px 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: var(--paper-strong);
  transition: transform 240ms ease, background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
  cursor: pointer;
}

.cta-strip-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 999px;
  background: var(--gold);
}

.cta-strip-card--aluno::after { background: var(--green-bright); }
.cta-strip-card--equipe::after { background: var(--red-bright); }

.cta-strip-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.cta-strip-card--aluno:hover { box-shadow: 0 20px 40px rgba(90, 134, 19, 0.32); }
.cta-strip-card--equipe:hover { box-shadow: 0 20px 40px rgba(190, 37, 37, 0.32); }

.cta-strip-tag {
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.cta-strip-card--aluno .cta-strip-tag { color: var(--green-bright); }
.cta-strip-card--equipe .cta-strip-tag { color: var(--red-bright); }

.cta-strip-card strong {
  font-family: "Dela Gothic One", system-ui, sans-serif;
  font-size: 1.05rem;
  line-height: 1.18;
  font-weight: normal;
  color: var(--paper-strong);
}

.cta-strip-card svg {
  align-self: flex-end;
  color: var(--paper-strong);
  opacity: 0.85;
  transition: transform 240ms ease;
}

.cta-strip-card:hover svg { transform: translateX(4px); opacity: 1; }

/* CTA final (antes do footer) -------------------------------- */
.cta-final {
  background:
    linear-gradient(180deg, transparent, rgba(190, 37, 37, 0.06) 50%, transparent);
  padding-top: 80px;
  padding-bottom: 100px;
}

.cta-final-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 56px 48px;
  background: var(--paper-strong);
  border-radius: 22px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cta-final-inner::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--red-bright), transparent 60%);
  opacity: 0.12;
  pointer-events: none;
}

.cta-final-inner::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, var(--green-bright), transparent 60%);
  opacity: 0.14;
  pointer-events: none;
}

.cta-final-text { position: relative; z-index: 1; }
.cta-final-text h2 {
  font-family: "Dela Gothic One", system-ui, sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.05;
  margin: 12px 0 14px;
  color: var(--ink);
}

.cta-final-text p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 56ch;
}

.cta-final-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.cta-final-actions .button {
  min-height: 52px;
  padding: 14px 22px;
}

/* CTA inline em seções de página (substitui botões) ----------- */
.inline-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  padding: 20px 22px;
  border-left: 4px solid var(--gold);
  background: var(--paper-strong);
  border-radius: 0 12px 12px 0;
  box-shadow: 0 6px 18px rgba(34, 34, 34, 0.06);
}

.inline-cta--aluno { border-left-color: var(--green); }
.inline-cta--equipe { border-left-color: var(--red); }

.inline-cta p {
  margin: 0;
  flex: 1 1 280px;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 600;
  color: var(--ink);
}

.inline-cta .button { white-space: nowrap; }

/* Banner curto entre seções (goncho de cabeçalho de página) --- */
.gancho-banner {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: stretch;
  background: var(--ink);
  color: var(--paper);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.gancho-banner-body {
  padding: 36px 32px;
  display: grid;
  gap: 12px;
  align-content: center;
}

.gancho-banner-body h3 {
  font-family: "Dela Gothic One", system-ui, sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.12;
  margin: 0;
  color: var(--paper-strong);
}

.gancho-banner-body p {
  margin: 0;
  color: rgba(237, 237, 237, 0.8);
  font-size: 0.98rem;
  line-height: 1.55;
}

.gancho-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.gancho-banner-visual {
  position: relative;
  background:
    linear-gradient(135deg, var(--red) 0%, var(--red-bright) 60%, var(--gold) 130%);
}

.gancho-banner-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.4) 1.2px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.3;
}

.gancho-banner-visual span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: "Dela Gothic One", system-ui, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  text-align: center;
  padding: 0 24px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* Responsivo dos ganchos ------------------------------------ */
@media (max-width: 920px) {
  .cta-strip,
  .cta-final-inner,
  .gancho-banner {
    grid-template-columns: 1fr;
  }
  .cta-strip-actions { grid-template-columns: 1fr; }
  .cta-final-actions { justify-content: flex-start; }
  .gancho-banner-visual { min-height: 140px; }
}

@media (max-width: 640px) {
  .cta-strip { padding: 28px 22px; margin-top: 36px; }
  .cta-final-inner { padding: 36px 24px; }
  .gancho-banner-body { padding: 28px 22px; }
  .inline-cta { padding: 16px 18px; }
  .inline-cta .button { width: 100%; justify-content: center; }
}

/* Ações empilhadas do card de inscrição ---------------------- */
.support-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.support-card-actions .button {
  flex: 1 1 200px;
  min-height: 48px;
}

@media (max-width: 640px) {
  .support-card-actions { flex-direction: column; }
  .support-card-actions .button { width: 100%; }
}
