/* =================================================================
   GRUPO INTENSIVE! — Folha de estilo institucional
   Paleta oficial: Manual da Marca v1.0
   ================================================================= */

:root {
  /* Cores oficiais */
  --orange:   #E65336;
  --teal:     #1B8A8D;
  --navy:     #1E3A5F;
  --amber:    #F5A623;
  --ink:      #3C3C3C;

  /* Derivados / suporte */
  --ink-soft: #5a5a5a;
  --ink-mute: #8a8a8a;
  --line:     #e7e4dd;
  --line-soft:#f0ede6;
  --paper:    #fbfaf6;
  --paper-2:  #f4f1ea;
  --white:    #ffffff;
  --shadow-sm: 0 1px 0 rgba(60,60,60,0.04), 0 6px 18px -10px rgba(60,60,60,0.18);
  --shadow-md: 0 1px 0 rgba(60,60,60,0.06), 0 18px 40px -22px rgba(30,58,95,0.28);

  /* Fontes */
  --ff: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Larguras */
  --maxw: 1240px;
  --pad: clamp(20px, 4vw, 56px);

  /* Transições */
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

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

/* =================================================================
   NAVEGAÇÃO
   ================================================================= */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 250, 246, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex; align-items: center; gap: 24px;
}
.nav__brand {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.nav__logo {
  width: 42px; height: 42px; object-fit: contain;
  border-radius: 8px;
}
.nav__wordmark {
  display: flex; flex-direction: column;
  line-height: 1; letter-spacing: 0.02em;
}
.nav__wordmark-top {
  font-size: 10px; font-weight: 600; color: var(--ink-mute);
  letter-spacing: 0.22em;
}
.nav__wordmark-bot {
  font-size: 17px; font-weight: 800; color: var(--navy);
  margin-top: 4px;
}
.excl { color: var(--orange); }

.nav__menu {
  margin-left: auto;
  display: flex; align-items: center; gap: 4px;
}
.nav__link {
  position: relative;
  padding: 10px 14px;
  font-size: 14px; font-weight: 500;
  color: var(--ink-soft);
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color .25s var(--ease), background .25s var(--ease);
}
.nav__link:hover { color: var(--navy); background: var(--line-soft); }
.nav__link.is-active { color: var(--navy); }
.nav__link.is-active::after {
  content: ""; position: absolute; left: 50%; bottom: 2px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--orange);
  transform: translateX(-50%);
}
.nav__link--cta {
  background: var(--navy); color: var(--white);
  padding: 10px 18px;
}
.nav__link--cta:hover { background: #15294a; color: var(--white); }
.nav__link--cta.is-active::after { display: none; }

.nav__chip {
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--amber); color: var(--navy);
  padding: 2px 7px; border-radius: 999px;
}

.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  position: relative;
}
.nav__toggle span {
  position: absolute; left: 9px; right: 9px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease);
}
.nav__toggle span:nth-child(1) { top: 13px; }
.nav__toggle span:nth-child(2) { top: 19px; }
.nav__toggle span:nth-child(3) { top: 25px; }
.nav__toggle.is-open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* =================================================================
   HERO
   ================================================================= */
.hero {
  position: relative;
  padding: clamp(60px, 9vw, 120px) var(--pad) clamp(60px, 8vw, 100px);
  overflow: hidden;
  background: var(--paper);
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
}
.hero__triangle {
  position: absolute;
  width: 0; height: 0;
  border-left:  140px solid transparent;
  border-right: 140px solid transparent;
  border-bottom: 240px solid;
  filter: blur(0.5px);
  opacity: 0.085;
}
.hero__triangle--orange {
  top: -40px; right: 8%;
  border-bottom-color: var(--orange);
  transform: rotate(8deg);
  animation: float 14s ease-in-out infinite;
}
.hero__triangle--teal {
  bottom: -30px; left: 4%;
  border-bottom-color: var(--teal);
  transform: rotate(-160deg);
  border-left-width: 110px; border-right-width: 110px; border-bottom-width: 190px;
  animation: float 18s ease-in-out infinite reverse;
}
.hero__triangle--navy {
  top: 35%; right: -60px;
  border-bottom-color: var(--navy);
  transform: rotate(150deg);
  border-left-width: 90px; border-right-width: 90px; border-bottom-width: 160px;
  opacity: 0.06;
  animation: float 22s ease-in-out infinite;
}
.hero__circle {
  position: absolute;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--amber);
  top: 32%; left: 12%;
  box-shadow: 0 0 0 8px rgba(245,166,35,0.18), 0 0 0 22px rgba(245,166,35,0.08);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(60,60,60,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(60,60,60,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
}

@keyframes float {
  0%,100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50%     { transform: translateY(-22px) rotate(var(--rot, 0deg)); }
}
.hero__triangle--orange { --rot: 8deg; }
.hero__triangle--teal   { --rot: -160deg; }
.hero__triangle--navy   { --rot: 150deg; }

.hero__inner {
  position: relative; z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft);
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}
.hero__eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(230,83,54,0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(230,83,54,0.18); }
  50%     { box-shadow: 0 0 0 9px rgba(230,83,54,0.04); }
}

.hero__title {
  margin: 28px 0 24px;
  font-size: clamp(48px, 9vw, 132px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--navy);
  max-width: 12ch;
}
.hero__title em {
  font-style: normal;
  font-weight: 300;
  color: var(--orange);
  letter-spacing: -0.03em;
  position: relative;
}
.hero__title em::after {
  content: "";
  display: inline-block;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--amber);
  margin-left: 8px;
  vertical-align: middle;
  transform: translateY(-10%);
}

.hero__lede {
  max-width: 56ch;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 36px;
}

.hero__actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 56px;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn--primary {
  background: var(--navy); color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover {
  background: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(60,60,60,0.06), 0 24px 50px -20px rgba(230,83,54,0.5);
}
.btn--ghost {
  color: var(--navy);
  border: 1.5px solid var(--navy);
  background: transparent;
}
.btn--ghost:hover {
  background: var(--navy); color: var(--white);
  transform: translateY(-2px);
}
.btn--light {
  background: var(--white); color: var(--navy);
}
.btn--light:hover {
  background: var(--amber); color: var(--navy);
  transform: translateY(-2px);
}

.hero__meta {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
  max-width: 620px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.hero__meta li {
  display: flex; flex-direction: column; gap: 6px;
  border-left: 1px solid var(--line);
  padding-left: 20px;
}
.hero__meta li:first-child { border-left: 0; padding-left: 0; }
.hero__meta b {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 300;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero__meta span {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-mute);
}

/* =================================================================
   SEÇÕES — cabeçalho compartilhado
   ================================================================= */
.section__head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(70px, 9vw, 120px) var(--pad) clamp(36px, 4vw, 60px);
}
.section__head--center {
  text-align: center;
}
.section__head--center .section__kicker { justify-content: center; }
.section__head--center .section__title { margin-left: auto; margin-right: auto; }

.section__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 22px;
}
.section__kicker::before {
  content: ""; width: 28px; height: 1px;
  background: var(--teal);
}
.section__kicker--light { color: var(--amber); }
.section__kicker--light::before { background: var(--amber); }

.section__title {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 0;
  max-width: 22ch;
}
.section__title em {
  font-style: normal; font-weight: 300;
  color: var(--teal);
}
.section__lede {
  margin-top: 22px;
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 60ch;
  line-height: 1.6;
}
.section__head--center .section__lede { margin-left: auto; margin-right: auto; }

/* Animação de revelação */
[data-reveal], .section__head, .mvv__card, .course, .soon__card,
.about__copy, .about__symbol, .cta__inner {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.is-in {
  opacity: 1 !important; transform: translateY(0) !important;
}
.mvv__card:nth-child(2) { transition-delay: .1s; }
.mvv__card:nth-child(3) { transition-delay: .2s; }
.course:nth-child(2) { transition-delay: .1s; }
.course:nth-child(3) { transition-delay: .2s; }

/* =================================================================
   QUEM SOMOS
   ================================================================= */
.about {
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  padding-bottom: clamp(70px, 9vw, 120px);
  position: relative;
}
.about__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.about__copy p {
  font-size: 17px; line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 18px;
  max-width: 56ch;
}
.about__copy strong { color: var(--ink); font-weight: 600; }
.about__lead {
  font-size: clamp(20px, 1.8vw, 24px) !important;
  color: var(--ink) !important;
  font-weight: 400;
  line-height: 1.5 !important;
}

.about__pillars {
  list-style: none; margin: 32px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.about__pillars li {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy);
  position: relative;
}
.about__pillars li::before {
  content: ""; display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}
.about__pillars li:nth-child(1)::before { background: var(--orange); }
.about__pillars li:nth-child(2)::before { background: var(--teal); }
.about__pillars li:nth-child(3)::before { background: var(--amber); }
.about__pillars li:nth-child(4)::before { background: var(--navy); }

.about__symbol {
  position: relative;
  width: 100%; max-width: 380px;
  aspect-ratio: 1;
  margin: 0 auto;
}
.about__symbol::before {
  content: ""; position: absolute; inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%,
    rgba(245,166,35,0.12) 0%,
    rgba(245,166,35,0) 60%);
}
.about__symbol svg {
  position: relative;
  width: 100%; height: 100%;
  filter: drop-shadow(0 30px 40px rgba(30,58,95,0.18));
  transition: transform .8s var(--ease);
}
.about__symbol:hover svg { transform: rotate(8deg); }

/* Animação sutil de "respiração" no círculo central */
.about__symbol circle { animation: breathe 4s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.12); }
}

/* =================================================================
   MVV — MISSÃO · VISÃO · VALORES
   ================================================================= */
.mvv {
  padding-bottom: clamp(70px, 9vw, 120px);
  background: var(--paper);
}
.mvv__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}
.mvv__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 38px 32px 36px;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.mvv__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.mvv__card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
}
.mvv__card--vision::before { background: var(--teal); }
.mvv__card--values::before { background: var(--navy); }

.mvv__card header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 22px;
}
.mvv__index {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  background: var(--orange);
  color: var(--white);
  font-weight: 800; font-size: 18px;
  border-radius: 12px;
  font-family: var(--ff);
}
.mvv__card--vision .mvv__index { background: var(--teal); }
.mvv__card--values .mvv__index { background: var(--navy); }

.mvv__card h3 {
  margin: 0;
  font-size: 24px; font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.mvv__card p {
  margin: 0;
  font-size: 15.5px; line-height: 1.65;
  color: var(--ink-soft);
}
.mvv__card strong { color: var(--ink); font-weight: 600; }

.mvv__values {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mvv__values li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px; font-weight: 500;
  color: var(--ink);
  padding: 12px 14px;
  background: var(--paper-2);
  border-radius: 12px;
}
.mvv__values li span {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange);
  background: var(--white);
  padding: 4px 7px;
  border-radius: 6px;
}

/* =================================================================
   EDUCAÇÃO — CURSOS
   ================================================================= */
.education {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  padding-bottom: clamp(70px, 9vw, 120px);
}
.courses {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}
.course {
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  position: relative;
}
.course:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.course__num {
  font-size: clamp(80px, 9vw, 130px);
  font-weight: 200;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.04em;
  padding: 40px 32px 24px;
  position: relative;
  overflow: hidden;
}
.course--01 .course__num { background: var(--orange); }
.course--02 .course__num { background: var(--teal); }
.course--03 .course__num { background: var(--navy); }

.course__num::after {
  content: "";
  position: absolute;
  right: -40px; top: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.course--01 .course__num::before {
  content: ""; position: absolute;
  bottom: -20px; left: 40%;
  width: 0; height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 50px solid rgba(255,255,255,0.1);
}
.course--02 .course__num::before {
  content: ""; position: absolute;
  bottom: -10px; right: 30%;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--amber);
}
.course--03 .course__num::before {
  content: ""; position: absolute;
  bottom: 20px; right: 32px;
  width: 60px; height: 4px;
  background: var(--amber);
  border-radius: 2px;
}

.course__body {
  padding: 30px 32px 32px;
  flex: 1; display: flex; flex-direction: column;
}
.course__tag {
  display: inline-block;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.course--02 .course__tag { color: var(--orange); }
.course--03 .course__tag { color: var(--amber); }

.course__body h3 {
  margin: 0 0 14px;
  font-size: 22px; font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.course__body p {
  margin: 0 0 24px;
  font-size: 15px; line-height: 1.65;
  color: var(--ink-soft);
  flex: 1;
}
.course__foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.course__status {
  font-size: 12px; font-weight: 600;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}
.course__arrow {
  font-size: 22px; color: var(--navy);
  transition: transform .3s var(--ease);
}
.course:hover .course__arrow { transform: translateX(6px); }

/* =================================================================
   CTA CALCULADORA
   ================================================================= */
.cta {
  padding: clamp(50px, 7vw, 90px) var(--pad);
  background: var(--paper);
}
.cta__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  background: var(--navy);
  border-radius: 28px;
  padding: clamp(40px, 5vw, 70px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta__inner::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.25) 0%, rgba(245,166,35,0) 70%);
}
.cta__inner::after {
  content: "";
  position: absolute;
  bottom: -80px; left: 20%;
  width: 0; height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-bottom: 140px solid rgba(27,138,141,0.18);
  transform: rotate(180deg);
}
.cta__copy { position: relative; z-index: 1; }
.cta__title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 20px;
}
.cta__title em {
  font-style: normal; font-weight: 300;
  color: var(--amber);
}
.cta__copy p {
  font-size: 16px; line-height: 1.65;
  color: rgba(255,255,255,0.75);
  margin: 0 0 30px;
  max-width: 50ch;
}

.cta__visual {
  position: relative; z-index: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 28px;
  backdrop-filter: blur(10px);
}
.cta__waveform {
  display: flex; align-items: end; gap: 4px;
  height: 80px;
  margin-bottom: 24px;
}
.cta__waveform span {
  flex: 1;
  background: var(--amber);
  border-radius: 2px;
  animation: wave 2.4s ease-in-out infinite;
  opacity: 0.85;
}
.cta__waveform span:nth-child(1)  { height: 30%; animation-delay: 0s; }
.cta__waveform span:nth-child(2)  { height: 60%; animation-delay: .08s; background: var(--teal); }
.cta__waveform span:nth-child(3)  { height: 90%; animation-delay: .16s; }
.cta__waveform span:nth-child(4)  { height: 70%; animation-delay: .24s; }
.cta__waveform span:nth-child(5)  { height: 40%; animation-delay: .32s; background: var(--orange); }
.cta__waveform span:nth-child(6)  { height: 55%; animation-delay: .40s; }
.cta__waveform span:nth-child(7)  { height: 85%; animation-delay: .48s; background: var(--teal); }
.cta__waveform span:nth-child(8)  { height: 95%; animation-delay: .56s; }
.cta__waveform span:nth-child(9)  { height: 65%; animation-delay: .64s; }
.cta__waveform span:nth-child(10) { height: 35%; animation-delay: .72s; background: var(--orange); }
.cta__waveform span:nth-child(11) { height: 50%; animation-delay: .80s; }
.cta__waveform span:nth-child(12) { height: 75%; animation-delay: .88s; }
.cta__waveform span:nth-child(13) { height: 45%; animation-delay: .96s; background: var(--teal); }
.cta__waveform span:nth-child(14) { height: 80%; animation-delay: 1.04s; }
.cta__waveform span:nth-child(15) { height: 60%; animation-delay: 1.12s; }
@keyframes wave {
  0%,100% { transform: scaleY(1); }
  50%     { transform: scaleY(0.4); }
}

.cta__readout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.cta__readout > div {
  padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  border-left: 2px solid var(--amber);
}
.cta__readout b {
  display: block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 4px;
}

/* =================================================================
   EM BREVE
   ================================================================= */
.soon {
  padding: clamp(40px, 6vw, 80px) var(--pad) clamp(70px, 9vw, 120px);
  background: var(--paper);
}
.soon__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.soon__card {
  padding: 44px 38px;
  background: var(--paper-2);
  border-radius: 22px;
  border: 1px dashed var(--line);
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.soon__card:hover {
  transform: translateY(-4px);
  background: var(--white);
}
.soon__badge {
  display: inline-block;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--navy);
  background: var(--amber);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.soon__card h3 {
  margin: 0 0 14px;
  font-size: 30px; font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.soon__card p {
  margin: 0;
  font-size: 15.5px; line-height: 1.65;
  color: var(--ink-soft);
  max-width: 50ch;
}

/* =================================================================
   RODAPÉ
   ================================================================= */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.78);
  padding: clamp(50px, 6vw, 80px) var(--pad) 32px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    var(--orange) 0% 33.33%,
    var(--teal) 33.33% 66.66%,
    var(--amber) 66.66% 100%);
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1.4fr 1fr;
  gap: 50px;
  align-items: start;
}
.footer__brand {
  display: flex; align-items: center; gap: 16px;
}
.footer__logo {
  width: 56px; height: 56px;
  border-radius: 10px;
  object-fit: contain;
  background: var(--white);
  padding: 4px;
}
.footer__word {
  font-size: 18px; font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
}
.footer__word .excl { color: var(--orange); }
.footer__tag {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
  letter-spacing: 0.04em;
}

.footer__nav {
  display: flex; flex-wrap: wrap; gap: 18px 24px;
}
.footer__nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  transition: color .25s var(--ease);
}
.footer__nav a:hover { color: var(--amber); }

.footer__social {
  display: flex; gap: 10px;
  justify-self: end;
}
.social {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  transition: background .25s var(--ease), transform .25s var(--ease), color .25s var(--ease);
}
.social svg { width: 18px; height: 18px; }
.social:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

.footer__bar {
  grid-column: 1 / -1;
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-wrap: wrap;
  justify-content: space-between; gap: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.footer__bar span:first-child {
  font-weight: 600; color: var(--amber); letter-spacing: 0.03em;
}

/* =================================================================
   RESPONSIVO
   ================================================================= */
@media (max-width: 980px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed;
    top: 70px; left: 16px; right: 16px;
    flex-direction: column; align-items: stretch;
    background: var(--white);
    padding: 18px;
    border-radius: 18px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform-origin: top right;
    transform: scale(0.96) translateY(-10px);
    opacity: 0; pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
  }
  .nav__menu.is-open {
    transform: scale(1) translateY(0);
    opacity: 1; pointer-events: auto;
  }
  .nav__link { padding: 14px 18px; font-size: 15px; }
  .nav__link.is-active::after { display: none; }
  .nav__link.is-active { background: var(--paper-2); color: var(--orange); }

  .about__grid { grid-template-columns: 1fr; }
  .about__symbol { max-width: 280px; }
  .mvv__grid { grid-template-columns: 1fr; }
  .courses { grid-template-columns: 1fr; }
  .cta__inner { grid-template-columns: 1fr; }
  .soon__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__social { justify-self: start; }
}

@media (max-width: 560px) {
  .nav__wordmark-bot { font-size: 15px; }
  .hero__meta { grid-template-columns: 1fr 1fr; gap: 14px 20px; }
  .hero__meta li:nth-child(3) { border-left: 0; padding-left: 0; }
  .hero__triangle--orange { right: -40px; }
  .mvv__values { grid-template-columns: 1fr; }
  .cta__readout { grid-template-columns: 1fr; }
  .footer__bar { flex-direction: column; align-items: flex-start; }
}

/* =================================================================
   Acessibilidade — reduzir movimento
   ================================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .is-in { opacity: 1 !important; transform: none !important; }
  [data-reveal], .section__head, .mvv__card, .course, .soon__card,
  .about__copy, .about__symbol, .cta__inner { opacity: 1; transform: none; }
}

/* Foco visível para acessibilidade */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 6px;
}
