/* ==========================================================================
   Milênio Cursos — landing page
   Conceito: "prancheta técnica". Fundo branco-frio de sala de aula, tinta
   navy, marcações de marca-texto amarelo, números em mono e anotações
   manuscritas do instrutor na margem.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Paleta Kleber Milênio */
  --navy:   #21457D;
  --steel:  #4C89AE;
  --blue:   #4685B3;
  --wine:   #983548;
  --yellow: #F5DA5C;
  --paper:  #F7FEFF;
  --mid:    #C2BFBE;

  /* Tintas de texto */
  --ink:    #0B1220;
  --ink-2:  #5B6B7C;
  --ink-3:  #93A1AE;

  /* Superfícies */
  --surface: #FFFFFF;
  --surface-2: #EEF6FA;
  --dark: #070C14;

  /* Traços e véus */
  --line:      color-mix(in srgb, var(--navy) 12%, transparent);
  --line-soft: color-mix(in srgb, var(--navy) 7%,  transparent);
  --veil:      color-mix(in srgb, var(--navy) 4%,  transparent);

  --grad: linear-gradient(93deg, #21457D 0%, #2F5C97 34%, #4C89AE 66%, #BCD4E0 100%);

  /* Raio */
  --r-xs: 10px;
  --r-sm: 16px;
  --r-md: 24px;
  --r-lg: 32px;
  --r-xl: 48px;

  /* Elevação */
  --sh-1: 0 4px 20px -2px rgba(11, 18, 32, .06);
  --sh-2: 0 18px 44px -18px rgba(11, 18, 32, .20);
  --sh-3: 0 40px 90px -40px rgba(11, 18, 32, .40);

  /* Movimento */
  --ease: cubic-bezier(.22, .68, .18, 1);
  --fast: .22s;
  --med:  .45s;

  /* Tipografia */
  --font-sans: 'Outfit', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-hand: 'Caveat', 'Bradley Hand', cursive;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Grade */
  --gutter: 20px;
  --maxw: 1180px;
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

img, video, svg, iframe { display: block; max-width: 100%; }
img, video { height: auto; }

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--navy); }

button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.03;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }

::selection { background: var(--yellow); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: 12px 20px; border-radius: 0 0 12px 0;
}
.skip:focus { left: 0; color: #fff; }

/* --------------------------------------------------------------------------
   3. Utilitários de layout
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section { position: relative; }

.sec {
  padding-block: clamp(64px, 9vw, 128px);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--steel);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  width: 26px; height: 1px;
  background: currentColor;
  opacity: .6;
}

.h1 { font-size: clamp(2.5rem, 6.2vw, 4.1rem); }
.h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); }
.h3 { font-size: clamp(1.3rem, 2.4vw, 1.75rem); letter-spacing: -.028em; }

.lede {
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: var(--ink-2);
  max-width: 56ch;
  line-height: 1.6;
}

.hand {
  font-family: var(--font-hand);
  font-weight: 600;
  letter-spacing: 0;
}

.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

.mark {
  background-image: linear-gradient(transparent 48%, color-mix(in srgb, var(--yellow) 88%, transparent) 48%);
  background-repeat: no-repeat;
  padding-inline: .08em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.sec-head { max-width: 720px; margin-bottom: clamp(38px, 5vw, 62px); }
.sec-head .lede { margin-top: 20px; }

/* --------------------------------------------------------------------------
   4. Textura de grão + fundos
   -------------------------------------------------------------------------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: .3;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.blob--a { background: color-mix(in srgb, var(--steel) 46%, transparent); }
.blob--b { background: color-mix(in srgb, var(--navy)  30%, transparent); }
.blob--c { background: color-mix(in srgb, var(--yellow) 40%, transparent); }

@keyframes float-a { 0%, 100% { transform: translate3d(0, 0, 0); } 50% { transform: translate3d(0, -22px, 0); } }
@keyframes float-b { 0%, 100% { transform: translate3d(0, 0, 0); } 50% { transform: translate3d(0, 18px, 0); } }

/* Papel milimetrado discreto */
.gridpaper::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(120% 80% at 50% 0%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 80% at 50% 0%, #000 20%, transparent 78%);
}

/* --------------------------------------------------------------------------
   5. Botões
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1;
  white-space: nowrap;
  transition: transform var(--fast) var(--ease), background-color var(--fast) var(--ease),
              color var(--fast) var(--ease), box-shadow var(--fast) var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 10px 26px -12px color-mix(in srgb, var(--navy) 80%, transparent);
}
.btn--primary:hover { background: #1a3866; color: #fff; transform: translateY(-2px); }

.btn--ghost {
  background: var(--surface);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
}
.btn--ghost:hover { color: var(--navy); box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--navy) 34%, transparent); }

.btn--wine { background: var(--wine); color: #fff; }
.btn--wine:hover { background: #822c3d; color: #fff; transform: translateY(-2px); }

.btn--light { background: var(--paper); color: var(--ink); }
.btn--light:hover { background: #fff; color: var(--navy); transform: translateY(-2px); }

.btn--outline-light {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, #fff 26%, transparent);
}
.btn--outline-light:hover {
  background: color-mix(in srgb, #fff 10%, transparent);
  color: #fff;
  transform: translateY(-2px);
}

.btn--lg { padding: 18px 32px; font-size: 16.5px; }
.btn--block { width: 100%; }

/* --------------------------------------------------------------------------
   6. Navegação
   -------------------------------------------------------------------------- */
/* A pílula tem a largura do conteúdo: sem margin-left:auto, sem buraco entre
   os elementos. E o fundo é branco puro, o mesmo do logotipo, para o PNG sem
   transparência não aparecer como um quadrado colado por cima. */
.nav {
  position: fixed;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: max-content;
  max-width: calc(100% - 28px);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px 7px 7px 16px;
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--navy) 9%, transparent), var(--sh-1);
  transition: box-shadow var(--med) var(--ease);
}
.nav.is-stuck .nav__inner {
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--navy) 11%, transparent), var(--sh-2);
}

.nav__logo {
  display: grid;
  place-items: center;
  flex: none;
  margin-right: 12px;
}
.nav__logo img { height: 34px; width: auto; }

/* No rodapé o fundo é escuro, então ali o logotipo precisa do quadro branco */
.logo-chip {
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 14px;
  padding: 8px 12px;
  flex: none;
}
.logo-chip img { height: 34px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav__links a {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color var(--fast) var(--ease), background-color var(--fast) var(--ease);
}
.nav__links a:hover { color: var(--ink); background: var(--veil); }
.nav__links a.is-active { color: var(--navy); background: color-mix(in srgb, var(--navy) 7%, transparent); }

.nav__cta { margin-left: 10px; }
.nav__cta .btn { padding: 12px 20px; font-size: 14.5px; }

.nav__burger {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  place-items: center;
  align-content: center;
  color: var(--ink);
}
.nav__burger span {
  display: block;
  width: 20px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--fast) var(--ease), opacity var(--fast) var(--ease);
}
.nav__burger span + span { margin-top: 5px; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__drawer {
  display: none;
  margin-top: 8px;
  padding: 12px;
  border-radius: var(--r-md);
  background: color-mix(in srgb, #fff 92%, transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: inset 0 0 0 1px var(--line), var(--sh-2);
}
.nav__drawer a {
  display: block;
  padding: 13px 14px;
  border-radius: 14px;
  font-weight: 500;
  color: var(--ink);
}
.nav__drawer a:hover { background: var(--veil); }
.nav__drawer .btn { margin-top: 8px; }

@media (max-width: 1020px) {
  .nav { width: calc(100% - 28px); max-width: 560px; }
  .nav__inner { padding: 7px 6px 7px 14px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: grid; }
  .nav.is-open .nav__drawer { display: block; }
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: clamp(110px, 11vw, 130px);
  padding-bottom: clamp(58px, 7vw, 84px);
  overflow: hidden;
}
.hero .blob--a { width: 620px; height: 620px; top: -180px; right: -160px; opacity: .5; animation: float-a 9s ease-in-out infinite; }
.hero .blob--b { width: 520px; height: 520px; bottom: -240px; left: -180px; opacity: .34; animation: float-b 11s ease-in-out infinite; }

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px 7px 9px;
  border-radius: 999px;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 26px;
}
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--wine);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--wine) 18%, transparent);
  animation: pulse 2.4s ease-in-out infinite;
  flex: none;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px color-mix(in srgb, var(--wine) 18%, transparent); }
  50%      { box-shadow: 0 0 0 7px color-mix(in srgb, var(--wine) 0%, transparent); }
}

.hero h1 { margin-bottom: 20px; }
.hero h1 .hand {
  font-size: 1.14em;
  color: var(--wine);
  display: inline-block;
  transform: rotate(-2.2deg);
  margin-inline: .06em;
}

.hero__lede { max-width: 50ch; }

.hero__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
  margin-top: 32px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero__specs div {
  padding-right: 26px;
  margin-right: 26px;
  border-right: 1px solid var(--line);
}
.hero__specs div:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.hero__specs dt {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 5px;
}
.hero__specs dd {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.02em;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero__note {
  margin-top: 22px;
  font-size: 14px;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 9px;
}
.hero__note svg { width: 16px; height: 16px; color: var(--steel); flex: none; }

/* Vídeo */
.hero__media { position: relative; }

.videoframe {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--dark);
  box-shadow: var(--sh-3), inset 0 0 0 1px color-mix(in srgb, var(--navy) 16%, transparent);
  aspect-ratio: 9 / 16;
  max-height: 552px;
  margin-inline: auto;
  width: 100%;
  max-width: 340px;
}
.videoframe video { width: 100%; height: 100%; object-fit: cover; }
.videoframe::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(7, 12, 20, .5) 0%, transparent 38%);
}

.videoframe__tag {
  position: absolute;
  left: 16px; bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-radius: 999px;
  background: color-mix(in srgb, #000 42%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
}
.videoframe__tag .dot { background: var(--yellow); box-shadow: 0 0 0 3px color-mix(in srgb, var(--yellow) 22%, transparent); }

.hero__card {
  position: absolute;
  left: max(-6px, -3vw);
  bottom: 42px;
  z-index: 3;
  width: 224px;
  padding: 18px 20px;
  border-radius: var(--r-md);
  background: color-mix(in srgb, #fff 92%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--sh-2), inset 0 0 0 1px color-mix(in srgb, var(--navy) 10%, transparent);
}
.hero__card b {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.hero__card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.hero__card li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -.01em;
}
.hero__card li svg { width: 15px; height: 15px; color: var(--steel); flex: none; }

.scribble {
  position: absolute;
  z-index: 4;
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: 21px;
  line-height: 1.1;
  color: var(--wine);
  pointer-events: none;
}
.scribble svg { width: 40px; height: 34px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; }
.hero__scribble {
  bottom: -46px; right: 0;
  width: 172px;
  transform: rotate(-2.4deg);
  text-align: right;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  justify-content: flex-end;
}
.hero__scribble svg { transform: rotate(148deg); flex: none; margin-top: -6px; }

/* No celular a promessa vem antes do vídeo: título, dados e CTA acima da dobra.
   O vídeo entra logo em seguida, inteiro, sem corte. */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .videoframe { max-width: 320px; max-height: 500px; }
  .hero__card { display: none; }
  .hero__scribble {
    position: static;
    width: auto;
    margin: 22px auto 0;
    justify-content: center;
    text-align: center;
    transform: rotate(-1.6deg);
  }
  .hero__scribble svg { display: none; }
  .hero__specs div { border-right: 0; padding-right: 0; margin-right: 34px; }
}
@media (max-width: 470px) {
  .hero__cta { display: grid; grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; }
}
@media (max-width: 420px) {
  .hero__specs div { margin-right: 22px; }
  .hero__specs dd { font-size: 15.5px; }
}

/* --------------------------------------------------------------------------
   8. Marquee de marcas
   -------------------------------------------------------------------------- */
.brands {
  background: var(--dark);
  color: #fff;
  padding-block: clamp(44px, 6vw, 68px);
  overflow: hidden;
  position: relative;
}
.brands::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(90% 120% at 50% 0%, color-mix(in srgb, var(--navy) 46%, transparent), transparent 62%);
}
.brands__head {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 38px;
}
.brands__head h2 {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  letter-spacing: -.025em;
  color: #fff;
}
.brands__head p {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: color-mix(in srgb, #fff 46%, transparent);
}

.marquee {
  position: relative;
  z-index: 1;
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: clamp(48px, 7vw, 92px);
  padding-right: clamp(48px, 7vw, 92px);
  flex: none;
  animation: slide 34s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes slide { to { transform: translate3d(-100%, 0, 0); } }

/* Todos os logotipos viram uma tinta só: as cores originais não competem */
.brand {
  flex: none;
  height: 42px;
  width: var(--w, 130px);
  background-color: color-mix(in srgb, #fff 68%, transparent);
  -webkit-mask-image: var(--src);
  mask-image: var(--src);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: background-color var(--fast) var(--ease);
}
.brand:hover { background-color: #fff; }

/* As URLs ficam aqui, e não no HTML: em custom property o url() é resolvido
   relativo à folha de estilo, não ao documento. */
.brand--lg           { --src: url(../img/logos/lg.png);           --w: 88px;  }
.brand--perfiltec    { --src: url(../img/logos/perfiltec.png);    --w: 120px; }
.brand--rothenberger { --src: url(../img/logos/rothenberger.png); --w: 172px; }
.brand--pescan       { --src: url(../img/logos/pescan.png);       --w: 136px; }
.brand--centralar    { --src: url(../img/logos/centralar.png);    --w: 152px; }
.brand--epex         { --src: url(../img/logos/epex.png);         --w: 92px;  }

@media (max-width: 640px) {
  .brand { height: 32px; }
  .brand--lg { --w: 68px; }
  .brand--perfiltec { --w: 94px; }
  .brand--rothenberger { --w: 134px; }
  .brand--pescan { --w: 106px; }
  .brand--centralar { --w: 118px; }
  .brand--epex { --w: 72px; }
}

/* --------------------------------------------------------------------------
   9. Cartões genéricos
   -------------------------------------------------------------------------- */
.card {
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 1px var(--line), var(--sh-1);
}

/* Sobre / números */
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: start;
}
.about__body p + p { margin-top: 18px; }

.about__side { display: grid; gap: 14px; }

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about__photo {
  position: relative;
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--surface-2);
  box-shadow: inset 0 0 0 1px var(--line), var(--sh-1);
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__photo figcaption {
  position: absolute;
  left: 14px; bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, #000 42%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
}
.stat {
  padding: 26px 24px 24px;
  border-radius: var(--r-md);
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: transform var(--med) var(--ease), box-shadow var(--med) var(--ease);
}
.stat:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--navy) 22%, transparent), var(--sh-1); }
.stat b {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  font-weight: 600;
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 10px;
}
.stat span { font-size: 14.5px; color: var(--ink-2); display: block; line-height: 1.45; }

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

/* --------------------------------------------------------------------------
   10. Bancada — scroll horizontal
   -------------------------------------------------------------------------- */
.practice { overflow: hidden; }
.practice .blob--c { width: 400px; height: 400px; top: 40px; left: -160px; opacity: .2; }

.practice__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.test-card {
  padding: 24px 26px 26px;
  min-height: 190px;
  border-radius: var(--r-md);
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line);
  display: flex;
  flex-direction: column;
  transition: transform var(--med) var(--ease), box-shadow var(--med) var(--ease);
}
.test-card:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--navy) 26%, transparent), var(--sh-2);
}
.test-card__n {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--ink-3);
  margin-bottom: auto;
}
.test-card h3 {
  font-size: 20px;
  letter-spacing: -.03em;
  margin-top: 26px;
  transition: color var(--fast) var(--ease);
}
.test-card:hover h3 { color: var(--navy); }
.test-card p { margin-top: 9px; font-size: 14.5px; color: var(--ink-2); line-height: 1.5; }

@media (max-width: 940px) { .practice__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .practice__grid { grid-template-columns: 1fr; } .test-card { min-height: 0; } .test-card h3 { margin-top: 18px; } }

/* O trilho começa alinhado à coluna de texto e sangra até a borda direita
   da tela — o corte fica proposital em vez de acidental. */
.bleed {
  width: 100%;
  padding-left: max(var(--gutter), calc((100% - var(--maxw)) / 2 + var(--gutter)));
  padding-right: 0;
}

.rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 22px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.rail::-webkit-scrollbar { display: none; }
.rail::after { content: ''; flex: none; width: max(var(--gutter), calc((100% - var(--maxw)) / 2 + var(--gutter))); }


/* --------------------------------------------------------------------------
   11. Programa
   -------------------------------------------------------------------------- */
.program__grid {
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.program__side { position: sticky; top: 104px; align-self: start; }

.mod {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.mod:last-child { border-bottom: 1px solid var(--line); }
.mod__n {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--steel);
  padding-top: 4px;
}
.mod h3 { font-size: 19.5px; letter-spacing: -.03em; }
.mod p { margin-top: 8px; color: var(--ink-2); font-size: 15px; }

.chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.chip {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--surface-2);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .04em;
  color: var(--navy);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--navy) 9%, transparent);
}

@media (max-width: 900px) {
  .program__grid { grid-template-columns: 1fr; }
  .program__side { position: static; }
}
@media (max-width: 480px) {
  .mod { grid-template-columns: 1fr; gap: 8px; }
  .mod__n { padding-top: 0; }
}

/* --------------------------------------------------------------------------
   12. Kit do aluno
   -------------------------------------------------------------------------- */
.kit__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.kit-item {
  padding: 28px 24px;
  border-radius: var(--r-md);
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: transform var(--med) var(--ease), box-shadow var(--med) var(--ease);
}
.kit-item:hover { transform: translateY(-4px); box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--navy) 24%, transparent), var(--sh-2); }
.kit-item__ico {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: var(--surface-2);
  color: var(--navy);
  margin-bottom: 20px;
}
.kit-item__ico svg { width: 21px; height: 21px; }
.kit-item h3 { font-size: 17.5px; letter-spacing: -.028em; }
.kit-item p { margin-top: 7px; font-size: 14.5px; color: var(--ink-2); line-height: 1.5; }

.lodging {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 24px 26px;
  border-radius: var(--r-md);
  background: var(--grad);
  color: #fff;
  box-shadow: var(--sh-2);
}
.lodging__ico {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: color-mix(in srgb, #fff 18%, transparent);
}
.lodging__ico svg { width: 21px; height: 21px; }
.lodging h3 { font-size: 18px; letter-spacing: -.028em; color: #fff; }
.lodging p { margin-top: 5px; font-size: 14.5px; color: color-mix(in srgb, #fff 82%, transparent); }

@media (max-width: 900px) { .kit__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 780px) {
  .lodging { grid-template-columns: 44px minmax(0, 1fr); }
  .lodging .btn { grid-column: 1 / -1; }
}
@media (max-width: 460px) { .kit__grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   13. Galeria
   -------------------------------------------------------------------------- */
.gallery { overflow: hidden; }
.gallery__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}
.railnav { display: flex; gap: 8px; flex: none; }
.railnav button {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line);
  color: var(--ink);
  transition: background-color var(--fast) var(--ease), color var(--fast) var(--ease), opacity var(--fast) var(--ease);
}
.railnav button:hover { background: var(--navy); color: #fff; }
.railnav button[disabled] { opacity: .32; pointer-events: none; }
.railnav svg { width: 18px; height: 18px; }

.shots { gap: 6px; }
.shot {
  flex: none;
  width: clamp(196px, 23vw, 258px);
  aspect-ratio: 3 / 4.3;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface-2);
  box-shadow: inset 0 0 0 1px var(--line);
  cursor: zoom-in;
  position: relative;
  transition: transform var(--med) var(--ease), box-shadow var(--med) var(--ease);
}
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.shot:hover { box-shadow: var(--sh-2); }
.shot:hover img { transform: scale(1.045); }
.shot__n {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 9px;
  border-radius: 999px;
  background: color-mix(in srgb, #000 40%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  color: #fff;
  opacity: 0;
  transition: opacity var(--fast) var(--ease);
}
.shot:hover .shot__n { opacity: 1; }

@media (max-width: 640px) {
  .gallery__head { flex-direction: column; align-items: flex-start; }
  .railnav { display: none; }
}

/* Lightbox */
.lb {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 24px;
  background: color-mix(in srgb, var(--dark) 92%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.lb.is-open { display: grid; animation: fade .3s var(--ease); }
@keyframes fade { from { opacity: 0; } }
.lb img {
  max-width: min(94vw, 620px);
  max-height: 84vh;
  width: auto;
  border-radius: var(--r-md);
  box-shadow: var(--sh-3);
}
.lb__close, .lb__prev, .lb__next {
  position: absolute;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: color-mix(in srgb, #fff 12%, transparent);
  color: #fff;
  transition: background-color var(--fast) var(--ease);
}
.lb__close:hover, .lb__prev:hover, .lb__next:hover { background: color-mix(in srgb, #fff 26%, transparent); }
.lb__close { top: 20px; right: 20px; }
.lb__prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb__next { right: 20px; top: 50%; transform: translateY(-50%); }
.lb svg { width: 20px; height: 20px; }
.lb__count {
  position: absolute;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  color: color-mix(in srgb, #fff 66%, transparent);
}
@media (max-width: 640px) {
  .lb__prev { left: 10px; }
  .lb__next { right: 10px; }
}

/* --------------------------------------------------------------------------
   14. Kleber
   -------------------------------------------------------------------------- */
.kleber { overflow: hidden; }
.kleber .blob--a { width: 460px; height: 460px; right: -180px; top: 60px; opacity: .3; }

.kleber__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.kleber__photo {
  position: relative;
  max-width: 356px;
  margin-left: auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-2), inset 0 0 0 1px var(--line);
  background: var(--surface-2);
  aspect-ratio: 27 / 49;
}
.kleber__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }

.kleber__plate {
  position: absolute;
  left: -14px; bottom: 28px;
  padding: 14px 18px;
  border-radius: 18px;
  background: color-mix(in srgb, #fff 93%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--sh-2), inset 0 0 0 1px color-mix(in srgb, var(--navy) 10%, transparent);
}
.kleber__plate b { display: block; font-size: 15.5px; letter-spacing: -.025em; }
.kleber__plate span {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 4px;
}

.kleber__body p + p { margin-top: 18px; }
.kleber__quote {
  margin-top: 30px;
  padding-left: 22px;
  border-left: 3px solid var(--yellow);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  letter-spacing: -.02em;
  line-height: 1.45;
  color: var(--ink);
}
.kleber__sign {
  margin-top: 18px;
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: 27px;
  color: var(--wine);
  transform: rotate(-1.6deg);
  display: inline-block;
}

@media (max-width: 860px) {
  .kleber__grid { grid-template-columns: 1fr; }
  .kleber__photo { max-width: 320px; order: -1; }
  .kleber__plate { left: auto; right: -10px; }
}

/* --------------------------------------------------------------------------
   15. Depoimentos em vídeo
   -------------------------------------------------------------------------- */
.vids__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.vid {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--dark);
  aspect-ratio: 9 / 15;
  box-shadow: inset 0 0 0 1px var(--line);
  transition: box-shadow var(--med) var(--ease), transform var(--med) var(--ease);
}
.vid:hover { box-shadow: var(--sh-2); transform: translateY(-3px); }
.vid video, .vid img { width: 100%; height: 100%; object-fit: cover; }
.vid video { position: absolute; inset: 0; opacity: 0; transition: opacity .3s var(--ease); }
.vid.is-playing video { opacity: 1; }
.vid.is-playing .vid__cover { opacity: 0; pointer-events: none; }

.vid__cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
  transition: opacity .3s var(--ease);
}
.vid__cover::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7, 12, 20, .72) 0%, rgba(7, 12, 20, .08) 46%, rgba(7, 12, 20, .2) 100%);
}
.vid__play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 66px; height: 66px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: color-mix(in srgb, #fff 90%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--navy);
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, .5);
  transition: transform var(--fast) var(--ease), background-color var(--fast) var(--ease);
}
.vid__play svg { width: 22px; height: 22px; margin-left: 3px; }
.vid__cover:hover .vid__play { transform: translate(-50%, -50%) scale(1.09); background: #fff; }
.vid__play::before {
  content: '';
  position: absolute; inset: -8px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, #fff 42%, transparent);
  animation: halo 2.6s ease-out infinite;
}
@keyframes halo {
  0%   { transform: scale(.92); opacity: .8; }
  100% { transform: scale(1.22); opacity: 0; }
}

.vid__meta {
  position: absolute;
  left: 18px; right: 18px; bottom: 18px;
  z-index: 3;
  color: #fff;
  pointer-events: none;
}
.vid__meta b { display: block; font-size: 16px; font-weight: 600; letter-spacing: -.025em; }
.vid__meta span {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: color-mix(in srgb, #fff 68%, transparent);
  margin-top: 4px;
}
.vid.is-playing .vid__meta { opacity: 0; transition: opacity .3s var(--ease); }

@media (max-width: 860px) { .vids__grid { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; } }

/* --------------------------------------------------------------------------
   16. Depoimentos escritos
   -------------------------------------------------------------------------- */
.notes__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.note {
  padding: 32px 30px;
  border-radius: var(--r-md);
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line), var(--sh-1);
  transition: transform var(--med) var(--ease), box-shadow var(--med) var(--ease);
}
.note:nth-child(odd)  { transform: rotate(-.7deg); }
.note:nth-child(even) { transform: rotate(.7deg); }
.note:hover { transform: rotate(0deg) translateY(-3px); box-shadow: inset 0 0 0 1px var(--line), var(--sh-2); }
.note__stars { display: flex; gap: 3px; color: var(--yellow); margin-bottom: 18px; }
.note__stars svg { width: 16px; height: 16px; }
.note p { font-size: 16.5px; line-height: 1.55; letter-spacing: -.012em; }
.note__sign { margin-top: 24px; }
.note__sign hr { width: 32px; height: 1px; border: 0; background: var(--mid); margin: 0 0 8px; }
.note__sign b {
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: 25px;
  color: var(--ink-2);
  letter-spacing: 0;
}
.note__sign span {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 2px;
}
@media (max-width: 760px) { .notes__grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   17. Diferenciais
   -------------------------------------------------------------------------- */
.edge {
  background: var(--dark);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(44px, 6vw, 80px) clamp(24px, 4vw, 64px);
  overflow: hidden;
  position: relative;
}
.edge::before {
  content: '';
  position: absolute;
  width: 620px; height: 620px;
  right: -220px; top: -240px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--navy) 68%, transparent);
  filter: blur(80px);
}
.edge__inner { position: relative; z-index: 1; }
.edge .eyebrow { color: var(--steel); }
.edge h2 { color: #fff; }
.edge .lede { color: color-mix(in srgb, #fff 72%, transparent); }

.edge__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  margin-top: clamp(38px, 5vw, 56px);
  background: color-mix(in srgb, #fff 10%, transparent);
  border-radius: var(--r-md);
  overflow: hidden;
}
.edge-item {
  padding: 32px 28px 34px;
  background: var(--dark);
  transition: background-color var(--med) var(--ease);
}
.edge-item:hover { background: #0D1520; }
.edge-item__n {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .14em;
  color: var(--steel);
  margin-bottom: 26px;
}
.edge-item h3 { font-size: 18.5px; letter-spacing: -.03em; color: #fff; }
.edge-item p { margin-top: 10px; font-size: 14.5px; line-height: 1.55; color: color-mix(in srgb, #fff 62%, transparent); }

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

/* --------------------------------------------------------------------------
   18. Investimento
   -------------------------------------------------------------------------- */
.price__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.price__list { margin: 26px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.price__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; }
.price__list svg { width: 19px; height: 19px; color: var(--steel); flex: none; margin-top: 2px; }

.pricecard {
  position: relative;
  padding: 36px 34px 34px;
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--sh-2), inset 0 0 0 1px var(--line);
}
.pricecard::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  background: var(--grad);
}
.pricecard__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.pricecard__val {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 12px;
}
.pricecard__val small { font-family: var(--font-mono); font-size: 18px; color: var(--ink-2); }
.pricecard__val b {
  font-family: var(--font-mono);
  font-size: clamp(2.6rem, 6vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -.045em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  color: var(--navy);
}
.pricecard__sub { margin-top: 12px; font-size: 14.5px; color: var(--ink-2); }
.pricecard hr { border: 0; height: 1px; background: var(--line); margin: 26px 0; }
.pricecard__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14.5px;
  padding: 7px 0;
}
.pricecard__row span { color: var(--ink-2); }
.pricecard__row b { font-family: var(--font-mono); font-weight: 500; letter-spacing: -.01em; }
.pricecard .btn { margin-top: 26px; }
.pricecard__fine { margin-top: 14px; text-align: center; font-size: 12.5px; color: var(--ink-3); }

.price__scribble {
  position: absolute;
  right: 6px; top: -34px;
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: 22px;
  color: var(--wine);
  transform: rotate(-3deg);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .price__grid { grid-template-columns: 1fr; }
  .price__scribble { display: none; }
}

/* --------------------------------------------------------------------------
   19. FAQ
   -------------------------------------------------------------------------- */
.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 330px) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.faq__list { display: grid; gap: 10px; }
.faq-item {
  background: var(--surface);
  border-radius: var(--r-sm);
  box-shadow: inset 0 0 0 1px var(--line);
  overflow: hidden;
  transition: box-shadow var(--med) var(--ease);
}
.faq-item.is-open { box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--navy) 24%, transparent), var(--sh-1); }
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  text-align: left;
  font-size: 16.5px;
  font-weight: 500;
  letter-spacing: -.02em;
}
.faq-item__q:hover { color: var(--navy); }
.faq-item__ico {
  position: relative;
  width: 20px; height: 20px;
  flex: none;
  transition: transform var(--med) var(--ease);
}
.faq-item__ico::before, .faq-item__ico::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  background: var(--navy);
  border-radius: 2px;
}
.faq-item__ico::before { width: 14px; height: 1.7px; transform: translate(-50%, -50%); }
.faq-item__ico::after  { width: 1.7px; height: 14px; transform: translate(-50%, -50%); }
.faq-item.is-open .faq-item__ico { transform: rotate(45deg); }
.faq-item__a { height: 0; overflow: hidden; transition: height .5s var(--ease); }
.faq-item__a > div { padding: 0 24px 24px; color: var(--ink-2); font-size: 15.5px; line-height: 1.6; max-width: 62ch; }

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

/* --------------------------------------------------------------------------
   20. Local
   -------------------------------------------------------------------------- */
.place__card {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line), var(--sh-1);
}
.place__info { padding: clamp(30px, 4vw, 46px); }
.place__info h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.place__rows { margin-top: 28px; display: grid; gap: 20px; }
.place__row { display: grid; grid-template-columns: 38px minmax(0, 1fr); gap: 14px; align-items: start; }
.place__row .i {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: var(--surface-2);
  color: var(--navy);
}
.place__row .i svg { width: 18px; height: 18px; }
.place__row b { display: block; font-size: 10.5px; font-family: var(--font-mono); letter-spacing: .13em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 3px; }
.place__row span { font-size: 15.5px; color: var(--ink); }
.place__row a { font-size: 15.5px; }
.place__map { min-height: 380px; background: var(--surface-2); position: relative; }
.place__map iframe { width: 100%; height: 100%; border: 0; position: absolute; inset: 0; filter: grayscale(.28) contrast(1.03); }
.place .btn { margin-top: 30px; }

@media (max-width: 860px) {
  .place__card { grid-template-columns: 1fr; }
  .place__map { min-height: 300px; order: -1; }
}

/* --------------------------------------------------------------------------
   21. CTA final
   -------------------------------------------------------------------------- */
.final {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding-block: clamp(76px, 10vw, 132px);
}
.final .blob--b { width: 720px; height: 720px; left: 50%; top: -280px; transform: translateX(-50%); opacity: .55; filter: blur(110px); }
.final .blob--c { width: 380px; height: 380px; right: -100px; bottom: -160px; opacity: .16; }
.final__inner { position: relative; z-index: 1; max-width: 720px; margin-inline: auto; }
.final__badge {
  width: 62px; height: 62px;
  display: grid; place-items: center;
  border-radius: 20px;
  background: color-mix(in srgb, #fff 10%, transparent);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, #fff 16%, transparent);
  margin: 0 auto 30px;
  position: relative;
}
.final__badge svg { width: 26px; height: 26px; color: #fff; }
.final__badge::after {
  content: '';
  position: absolute;
  top: 10px; right: 10px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
}
.final h2 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.4rem); }
.final h2 .hand { color: var(--yellow); font-size: 1.14em; display: inline-block; transform: rotate(-2deg); }
.final p { margin: 22px auto 0; color: color-mix(in srgb, #fff 68%, transparent); max-width: 52ch; }
.final__cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 36px; }
.final__fine {
  margin-top: 26px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: color-mix(in srgb, #fff 42%, transparent);
}

/* --------------------------------------------------------------------------
   22. Rodapé
   -------------------------------------------------------------------------- */
.foot {
  background: var(--dark);
  color: color-mix(in srgb, #fff 62%, transparent);
  padding-block: 56px 40px;
  border-top: 1px solid color-mix(in srgb, #fff 9%, transparent);
}
.foot__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: 40px;
}
.foot .logo-chip { display: inline-grid; padding: 10px 14px; box-shadow: none; }
.foot .logo-chip img { height: 34px; }
.foot__about { margin-top: 22px; font-size: 14.5px; max-width: 40ch; line-height: 1.6; }
.foot h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: color-mix(in srgb, #fff 40%, transparent);
  margin-bottom: 18px;
}
.foot ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 11px; }
.foot a { color: color-mix(in srgb, #fff 70%, transparent); font-size: 14.5px; }
.foot a:hover { color: #fff; }
.foot__bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, #fff 9%, transparent);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .06em;
  color: color-mix(in srgb, #fff 34%, transparent);
}
@media (max-width: 760px) { .foot__grid { grid-template-columns: 1fr 1fr; } .foot__brand { grid-column: 1 / -1; } }

/* --------------------------------------------------------------------------
   23. WhatsApp flutuante
   -------------------------------------------------------------------------- */
.wa {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px 13px 15px;
  border-radius: 999px;
  background: #1FAF54;
  color: #fff;
  font-size: 14.5px;
  font-weight: 500;
  box-shadow: 0 14px 34px -12px rgba(31, 175, 84, .8);
  transform: translateY(90px);
  opacity: 0;
  transition: transform var(--med) var(--ease), opacity var(--med) var(--ease), background-color var(--fast) var(--ease);
}
.wa.is-in { transform: translateY(0); opacity: 1; }
.wa:hover { background: #189446; color: #fff; }
.wa svg { width: 21px; height: 21px; flex: none; }
@media (max-width: 520px) {
  .wa { padding: 14px; right: 14px; bottom: 14px; }
  .wa span { display: none; }
}

/* --------------------------------------------------------------------------
   24. Revelação no scroll
   -------------------------------------------------------------------------- */
.rv {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.rv.is-in { opacity: 1; transform: none; }
.rv-2 { transition-delay: .09s; }
.rv-3 { transition-delay: .18s; }
.rv-4 { transition-delay: .27s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .rv { opacity: 1; transform: none; }
}
