/* ============================================================
   CHUTE INICIAL CORINTHIANS — Landing Page
   Sistema de design: mono do Timão + vermelho só em detalhe.
   Tipografia única Raleway (300→900) em todo o site.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Cor */
  --ink:      #0B0B0C;   /* preto Timão — fundos escuros e texto */
  --carbon:   #161618;   /* superfície escura elevada */
  --graphite: #202024;   /* cards escuros */
  --white:    #FFFFFF;
  --paper:    #F6F6F7;   /* fundo claro */
  --mist:     #ECECEE;   /* painel claro */
  --fog:      #8A8A90;   /* texto secundário */
  --red:      #E00712;   /* Corinthians — só em detalhe */
  --red-deep: #B4040D;

  --line-dark:  rgba(255,255,255,.14);
  --line-light: rgba(11,11,12,.12);

  /* Tipografia */
  --f-sans: "Raleway", "Segoe UI", system-ui, -apple-system, sans-serif;
  --f-mono: "Raleway", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Layout */
  --wrap: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(72px, 10vw, 140px);
  --radius: 4px;

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur: .7s;
}

/* ---------- Reset base (o host já injeta um reset leve) ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-sans);
  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: none; background: none; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 2px; }

/* ---------- Utilitários de layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; overflow: clip; }
.section--dark { background: var(--ink); color: var(--white); }
.section--carbon { background: var(--carbon); color: var(--white); }
.section--paper { background: var(--paper); color: var(--ink); }
.section--mist { background: var(--mist); color: var(--ink); }

/* Olho-de-seção (eyebrow) — estilo placar */
.eyebrow {
  font-family: var(--f-mono);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: .7em;
  margin: 0 0 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--red);
  display: inline-block;
}
.section--dark .eyebrow, .section--carbon .eyebrow { color: #FF3B44; }

/* Títulos */
.h-display {
  font-weight: 300;
  font-size: clamp(2.1rem, 6vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
}
.h-display b, .h-display strong { font-weight: 800; }
.h-section {
  font-weight: 300;
  font-size: clamp(1.9rem, 4.6vw, 3.3rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}
.h-section b { font-weight: 800; }
.lead {
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  color: var(--fog);
  max-width: 54ch;
  margin: 0;
}
.section--dark .lead, .section--carbon .lead { color: #B9B9C0; }

.section-head { max-width: 62ch; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }

/* ---------- Botões (canto chanfrado tipo etiqueta) ---------- */
.btn {
  --clip: 14px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  padding: 1.02em 1.7em;
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1;
  clip-path: polygon(0 0, calc(100% - var(--clip)) 0, 100% var(--clip), 100% 100%, var(--clip) 100%, 0 calc(100% - var(--clip)));
  transition: transform .3s var(--ease), background-color .3s var(--ease), color .3s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn--light { background: var(--white); color: var(--ink); }
.btn--light:hover { background: var(--mist); }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: var(--carbon); }
.btn--red { background: var(--red); color: var(--white); }
.btn--red:hover { background: var(--red-deep); }
/* Ghost sobre fundo escuro */
.btn--ghost {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1.5px var(--line-dark);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--white); background: rgba(255,255,255,.06); }
/* Ghost sobre fundo claro */
.btn--ghost-dark {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line-light);
}
.btn--ghost-dark:hover { box-shadow: inset 0 0 0 1.5px var(--ink); background: rgba(0,0,0,.04); }
.btn--sm { padding: .82em 1.3em; font-size: .74rem; }
.btn--block { width: 100%; }

.btn-icon { width: 17px; height: 17px; flex: none; }

/* ---------- WhatsApp: sempre verde ---------- */
.btn--wa { background: #25D366; color: #063d1c; }
.btn--wa:hover { background: #1ebe5a; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  /* Tema adaptativo: o JS ajusta estas variáveis conforme a seção sob o header */
  --hdr-bg: transparent;
  --hdr-fg: #FFFFFF;
  --hdr-border: transparent;
  background-color: var(--hdr-bg);
  color: var(--hdr-fg);
  border-bottom: 1px solid var(--hdr-border);
  transition: background-color .55s var(--ease), color .55s var(--ease), border-color .55s var(--ease);
}
.site-header.has-blur { backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
/* Navbar simétrica: 3 seções · escudo (centro) · 3 seções */
.site-header .wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.4rem);
  height: 84px;
}
.brand { display: inline-flex; align-items: center; justify-self: center; z-index: 2; }
.brand__mark { height: 52px; width: auto; transition: transform .4s var(--ease); }
.brand:hover .brand__mark { transform: scale(1.06); }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.4rem); }
.nav--left { justify-content: flex-end; }
.nav--right { justify-content: flex-start; }
.unit-tag { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: #FF3B44; }

/* Páginas de unidade: barra compacta no lugar da hero */
.unit-topbar { background: var(--ink); padding: calc(84px + 1.6rem) 0 1.6rem; border-bottom: 1px solid var(--line-dark); }
.unit-topbar .wrap { display: flex; align-items: center; gap: 1rem; }
.unit-topbar__crest { height: 42px; width: auto; flex: none; }
.unit-topbar__tag { font-family: var(--f-mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: #FF3B44; margin: 0 0 .3rem; }
.unit-topbar__title { font-weight: 300; font-size: clamp(1.2rem, 2.4vw, 1.5rem); letter-spacing: -0.01em; margin: 0; color: var(--white); }
.unit-topbar__title b { font-weight: 800; }
.nav__link {
  color: var(--hdr-fg);
  opacity: .82;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .04em;
  position: relative;
  padding: .3em 0;
  transition: color .55s var(--ease), opacity .25s var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav__link:hover { opacity: 1; }
.nav__link:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: .8rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  z-index: 2;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--white); transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-block: 120px clamp(56px, 9vw, 108px);
  background: var(--ink);
  color: var(--white);
  overflow: clip;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 15%; transform: scaleX(-1); }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11,11,12,.94) 0%, rgba(11,11,12,.72) 34%, rgba(11,11,12,.14) 68%, rgba(11,11,12,.42) 100%),
    linear-gradient(0deg, rgba(11,11,12,.7) 0%, transparent 42%);
}
.hero__pitch {
  position: absolute; z-index: 1;
  right: -6%; top: 50%; transform: translateY(-50%);
  width: min(52vw, 620px); height: auto; opacity: .5;
  pointer-events: none;
  color: rgba(255,255,255,.6);
}
.hero .wrap { position: relative; z-index: 2; width: 100%; }
.hero__eyebrow { color: #FF3B44; }
.hero__title { max-width: 16ch; margin-bottom: 1.4rem; }
.hero__sub { max-width: 40ch; color: #C9C9CF; font-size: clamp(1.02rem, 1.6vw, 1.24rem); margin: 0 0 2.2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero__scroll {
  position: absolute; left: var(--gutter); bottom: 26px; z-index: 2;
  display: inline-flex; align-items: center; gap: .7em;
  font-family: var(--f-mono); font-size: .64rem; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.hero__scroll .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.3;transform:scale(.6)} }

/* ============================================================
   TICKER (faixa de escassez)
   ============================================================ */
.ticker {
  background: var(--ink);
  color: var(--white);
  border-block: 1px solid var(--line-dark);
  padding-block: 1.05rem;
  overflow: hidden;
  position: relative;
}
.ticker__track { display: flex; width: max-content; animation: ticker 34s linear infinite; }
.ticker:hover .ticker__track, .ticker:focus-within .ticker__track { animation-play-state: paused; }
.ticker__item {
  display: inline-flex; align-items: center; gap: 1.2rem;
  padding-inline: 1.6rem;
  font-family: var(--f-mono);
  font-size: .8rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  white-space: nowrap;
}
.ticker__item .sep { width: 7px; height: 7px; background: var(--red); transform: rotate(45deg); flex: none; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   BENEFÍCIOS RÁPIDOS
   ============================================================ */
.bene-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-light); border: 1px solid var(--line-light); }
.bene {
  background: var(--paper);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  display: flex; flex-direction: column; gap: .9rem;
  transition: background-color .35s var(--ease);
}
.bene:hover { background: var(--white); }
.bene__icon { width: 40px; height: 40px; color: var(--ink); }
.bene__icon .accent { stroke: var(--red); }
.bene__num { font-family: var(--f-mono); font-size: .7rem; color: var(--fog); letter-spacing: .1em; }
.bene__title { font-weight: 800; font-size: 1.12rem; letter-spacing: -0.01em; }
.bene__text { color: var(--fog); font-size: .95rem; margin: 0; }

/* ============================================================
   POSICIONAMENTO (institucional com imagem)
   ============================================================ */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split--rev { grid-template-columns: 1fr 1.05fr; }
.split__media { position: relative; }
.frame { position: relative; }
.frame::before {
  content: ""; position: absolute; inset: 0;
  translate: 18px 18px; border: 1.5px solid var(--red); z-index: 0;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
}
.frame img {
  position: relative; z-index: 1; width: 100%; aspect-ratio: 4/5; object-fit: cover;
  filter: grayscale(1) contrast(1.04);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
}
.pos__body p { color: inherit; opacity: .85; margin: 0 0 1.1rem; max-width: 52ch; }
.section--dark .pos__body p { color: #C9C9CF; opacity: 1; }
.stat-row { display: flex; gap: clamp(1.6rem, 4vw, 3rem); margin-top: 2rem; flex-wrap: wrap; }
.stat__num { font-weight: 800; font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1; letter-spacing: -0.02em; }
.stat__num .u { color: var(--red); }
.stat__label { font-family: var(--f-mono); font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--fog); margin-top: .5em; }
.section--dark .stat__label { color: #9A9AA2; }

/* Fundo fotográfico (seção com imagem em preto e branco) */
.section--has-bg { isolation: isolate; }
.section-bg { position: absolute; inset: 0; z-index: 0; }
.section-bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05) brightness(.85); }
.section-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,12,.86) 0%, rgba(11,11,12,.93) 55%, var(--ink) 100%);
}
.section--has-bg .wrap { position: relative; z-index: 2; }

/* Marca-d'água flat do escudo (gracinha) */
.watermark {
  position: absolute; z-index: 0; pointer-events: none;
  opacity: .05; width: clamp(280px, 40vw, 560px);
}
.watermark--tr { top: -6%; right: -8%; }
.watermark--bl { bottom: -10%; left: -8%; }
.watermark img { width: 100%; filter: grayscale(1) brightness(2); }
.section--dark .watermark { opacity: .06; }

/* ============================================================
   MÉTODO (3 etapas)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 3vw, 2.4rem); position: relative; }
.step { position: relative; padding-top: 2.2rem; }
.step__num {
  font-family: var(--f-mono); font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4rem); line-height: .8;
  color: transparent; -webkit-text-stroke: 1.5px var(--red); letter-spacing: -0.02em;
  display: block; margin-bottom: 1rem;
}
.step__icon { width: 34px; height: 34px; color: var(--ink); margin-bottom: 1rem; }
.step__title { font-weight: 800; font-size: 1.35rem; letter-spacing: -0.01em; margin-bottom: .6rem; }
.step__text { color: var(--fog); margin: 0; max-width: 34ch; }
.step__line { position: absolute; top: 1rem; left: 100%; width: clamp(1.4rem,3vw,2.4rem); height: 1.5px; background: var(--line-light); overflow: hidden; }
.step__line::after { content:""; position:absolute; inset:0; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .8s var(--ease) .3s; }
.step.is-visible .step__line::after { transform: scaleX(1); }

/* ============================================================
   INSTITUCIONAL (3 pilares)
   ============================================================ */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); position: relative; z-index: 1; }
.pillar { background: var(--ink); padding: clamp(2rem, 4vw, 3rem) clamp(1.6rem,3vw,2.4rem); transition: background-color .4s var(--ease); }
.pillar:hover { background: var(--carbon); }
.pillar__k { font-family: var(--f-mono); color: var(--red); font-size: .74rem; letter-spacing: .2em; margin-bottom: 1.4rem; }
.pillar__title { font-weight: 300; font-size: 1.7rem; letter-spacing: -0.01em; margin-bottom: .8rem; }
.pillar__title b { font-weight: 800; }
.pillar__text { color: #B9B9C0; margin: 0; font-size: .96rem; }
.pillars-cta { text-align: center; margin-top: clamp(2rem, 4vw, 3rem); }

/* ============================================================
   TURMAS / DIFERENCIAIS (cards)
   ============================================================ */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.4rem); }
.cards--5 { grid-template-columns: repeat(5, 1fr); }
.card {
  border: 1px solid var(--line-light);
  padding: clamp(1.5rem, 2.6vw, 2rem);
  background: var(--white);
  display: flex; flex-direction: column; gap: .7rem;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: var(--ink); }
.card__k { font-family: var(--f-mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--red); }
.card__icon { width: 30px; height: 30px; color: var(--ink); margin-bottom: .3rem; }
.card__title { font-weight: 800; font-size: 1.15rem; }
.card__text { color: var(--fog); font-size: .92rem; margin: 0; }

/* ============================================================
   ESCOLA OURO (selos das unidades)
   ============================================================ */
.ouro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.ouro-item {
  display: block; position: relative; overflow: hidden; aspect-ratio: 9/16;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  transition: transform .4s var(--ease);
}
.ouro-item:hover { transform: translateY(-8px); }
.ouro-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================================
   CTA em bloco de foto (intermediário e final)
   ============================================================ */
.cta-band {
  position: relative; overflow: clip;
  background: var(--ink); color: var(--white);
  padding-block: clamp(4.5rem, 9vw, 8rem);
  text-align: center;
}
.cta-band__media { position: absolute; inset: 0; z-index: 0; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); opacity: .32; }
.cta-band__media::after { content:""; position:absolute; inset:0; background: radial-gradient(120% 100% at 50% 40%, rgba(11,11,12,.4), rgba(11,11,12,.9)); }
.cta-band .wrap { position: relative; z-index: 2; }
.cta-band__title { font-weight: 300; font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.05; letter-spacing: -0.02em; margin: 0 auto 1.2rem; max-width: 18ch; }
.cta-band__title b { font-weight: 800; }
.cta-band__sub { color: #C9C9CF; max-width: 48ch; margin: 0 auto 2.2rem; font-size: 1.08rem; }
.cta-band__actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   GALERIA (mosaico)
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.g-item--wide { grid-column: 1 / -1; aspect-ratio: 16 / 8.5; }
.g-item {
  position: relative; overflow: hidden; background: var(--mist);
  aspect-ratio: 6 / 5;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}
.g-item img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.03); transition: filter .5s var(--ease), transform .6s var(--ease); }
.g-item:hover img { filter: grayscale(0); transform: scale(1.05); }
.g-item__tag { position: absolute; left: 12px; bottom: 12px; font-family: var(--f-mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: #fff; background: rgba(11,11,12,.72); padding: .4em .7em; }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.quote { border: 1px solid var(--line-dark); padding: clamp(1.8rem, 3vw, 2.4rem); background: var(--carbon); display: flex; flex-direction: column; gap: 1.2rem; }
.quote__mark { font-family: var(--f-mono); color: var(--red); font-size: 2.4rem; line-height: .5; height: .5em; }
.quote__text { font-size: 1.05rem; line-height: 1.6; color: #E3E3E7; margin: 0; flex: 1; }
.quote__who { display: flex; align-items: center; gap: .8rem; }
.quote__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--graphite); display: grid; place-items: center; font-weight: 800; color: var(--red); font-size: .9rem; flex: none; overflow: hidden; }
.quote__avatar img { width: 100%; height: 100%; object-fit: cover; }
.quote__name { font-weight: 700; font-size: .92rem; }
.quote__role { font-family: var(--f-mono); font-size: .64rem; letter-spacing: .1em; color: var(--fog); text-transform: uppercase; }
.placeholder-note { font-family: var(--f-mono); font-size: .6rem; letter-spacing: .1em; color: var(--fog); text-transform: uppercase; margin-top: 1.4rem; opacity: .7; }

/* ============================================================
   UNIDADES
   ============================================================ */
.units-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.unit-card {
  position: relative;
  background: var(--ink); color: var(--white);
  border: 1px solid var(--line-dark);
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform .4s var(--ease);
}
.unit-card:hover { transform: translateY(-6px); }
.unit-card__map { position: relative; aspect-ratio: 16/7; overflow: hidden; background: var(--graphite); }
.unit-card__map-embed { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.3) contrast(1.05); transition: filter .5s var(--ease); }
.unit-card:hover .unit-card__map-embed { filter: grayscale(0) contrast(1); }
.unit-card__code {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  font-family: var(--f-mono); font-weight: 700; font-size: .7rem; letter-spacing: .18em;
  background: var(--red); color: #fff; padding: .4em .7em;
  pointer-events: none;
}
.unit-card__map-btn {
  position: absolute; left: 12px; bottom: 12px; z-index: 2;
  display: inline-flex; align-items: center; gap: .4em;
  font-family: var(--f-mono); font-weight: 700; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  background: var(--white); color: var(--ink);
  padding: .6em .9em;
  box-shadow: 0 4px 14px rgba(0,0,0,.28);
  transition: transform .25s var(--ease), background-color .25s, color .25s;
}
.unit-card__map-btn svg { width: 13px; height: 13px; }
.unit-card__map-btn:hover { background: var(--red); color: #fff; transform: translateY(-2px); }
.unit-card__body { padding: clamp(1.4rem, 2.4vw, 1.9rem); display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.unit-card__name { font-weight: 800; font-size: 1.3rem; letter-spacing: -0.01em; }
.unit-card__region { font-family: var(--f-mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: #FF3B44; }
.unit-card__addr { color: #B9B9C0; font-size: .92rem; margin: .3rem 0 0; display: flex; gap: .55rem; }
.unit-card__addr svg { width: 15px; height: 15px; flex: none; margin-top: .18rem; color: var(--fog); }
.unit-card__phone { font-family: var(--f-mono); font-size: .92rem; color: #fff; display: flex; align-items: center; gap: .55rem; }
.unit-card__phone svg { width: 15px; height: 15px; color: #25D366; }
.unit-card__actions { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-top: auto; padding-top: 1.2rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: var(--white); padding-top: clamp(3.5rem, 7vw, 6rem); border-top: 1px solid var(--line-dark); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(1.6rem, 4vw, 3rem); padding-bottom: 3.5rem; }
.footer-brand__mark { height: 48px; margin-bottom: 1.1rem; }
.footer-brand p { color: #9A9AA2; font-size: .92rem; max-width: 32ch; margin: 0; }
.footer-col h4 { font-family: var(--f-mono); font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--red); margin: 0 0 1.2rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .7rem; }
.footer-col a, .footer-col li { color: #B9B9C0; font-size: .92rem; transition: color .25s; }
.footer-col a:hover { color: #fff; }
.socials { display: flex; gap: .7rem; flex-wrap: wrap; }
.social { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line-dark); color: #B9B9C0; transition: color .3s, border-color .3s, background-color .3s; }
.social:hover { color: #fff; border-color: var(--red); background: var(--red); }
.social svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid var(--line-dark); padding-block: 1.6rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { margin: 0; font-family: var(--f-mono); font-size: .66rem; letter-spacing: .08em; color: var(--fog); text-transform: uppercase; }

/* ============================================================
   BOTÃO FLUTUANTE WHATSAPP (sempre verde, só ícone)
   ============================================================ */
.wa-float {
  position: fixed; z-index: 55; right: clamp(16px, 3vw, 28px); bottom: clamp(16px, 3vw, 28px);
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.28);
  transform: translateY(120px); opacity: 0;
  transition: transform .5s var(--ease), opacity .4s, box-shadow .3s;
}
.wa-float.is-in { transform: translateY(0); opacity: 1; }
.wa-float:hover { box-shadow: 0 14px 38px rgba(37,211,102,.5); }
.wa-float svg { width: 30px; height: 30px; }
.wa-float::before { content:""; position:absolute; inset:0; border-radius:50%; border:2px solid #25D366; animation: waPulse 2.4s infinite; }
@keyframes waPulse { 0%{transform:scale(1);opacity:.6} 100%{transform:scale(1.6);opacity:0} }

/* ============================================================
   MODAL WhatsApp (pop-up em todos os botões)
   ============================================================ */
.modal { position: fixed; inset: 0; z-index: 100; display: none; }
.modal.is-open { display: block; }
.modal__overlay { position: absolute; inset: 0; background: rgba(6,6,7,.72); backdrop-filter: blur(4px); opacity: 0; transition: opacity .3s; }
.modal.is-open .modal__overlay { opacity: 1; }
.modal__dialog {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -46%);
  width: min(560px, calc(100vw - 40px)); max-height: calc(100svh - 40px); overflow-y: auto;
  background: var(--white); color: var(--ink);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  opacity: 0; transition: opacity .35s var(--ease), transform .35s var(--ease);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}
.modal.is-open .modal__dialog { opacity: 1; transform: translate(-50%, -50%); }
.modal__close { position: absolute; top: 14px; right: 16px; width: 40px; height: 40px; display: grid; place-items: center; color: var(--ink); }
.modal__close svg { width: 20px; height: 20px; }
.modal__eyebrow { font-family: var(--f-mono); color: var(--red); font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; }
.modal__title { font-weight: 300; font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -0.02em; margin: .5rem 0 .4rem; }
.modal__title b { font-weight: 800; }
.modal__desc { color: var(--fog); font-size: .95rem; margin: 0 0 1.6rem; }
.modal__units { display: flex; flex-direction: column; gap: .6rem; }
.modal-unit {
  display: flex; align-items: center; gap: .9rem;
  padding: 1rem 1.1rem; border: 1px solid var(--line-light);
  transition: border-color .25s, background-color .25s, transform .25s var(--ease); text-align: left;
}
.modal-unit__crest { width: 60px; height: 60px; flex: none; object-fit: contain; }
.modal-unit:hover { border-color: #25D366; background: #f5fdf8; transform: translateX(3px); }
.modal-unit__info { flex: 1; display: flex; flex-direction: column; gap: .15rem; }
.modal-unit__name { font-weight: 800; font-size: 1rem; }
.modal-unit__meta { font-family: var(--f-mono); font-size: .68rem; letter-spacing: .04em; color: var(--fog); }
.modal-unit__go { display: inline-flex; align-items: center; gap: .5em; color: #128C42; font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; flex: none; }
.modal-unit__go svg { width: 18px; height: 18px; }

/* ============================================================
   ANIMAÇÕES DE REVELAÇÃO (entrada e saída — bidirecional)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-x { opacity: 0; transform: translateX(-40px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease); }
.reveal-x.from-right { transform: translateX(40px); }
.reveal-x.is-visible { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(.94); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease); }
.reveal-scale.is-visible { opacity: 1; transform: none; }
/* Stagger — via data-stagger nos filhos */
[data-stagger] > * { opacity: 0; transform: translateY(28px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-stagger].is-visible > * { opacity: 1; transform: none; }

/* Draw-on das linhas de campo (gracinha) */
.pitch-draw path, .pitch-draw circle, .pitch-draw line { stroke-dasharray: 1400; stroke-dashoffset: 1400; transition: stroke-dashoffset 1.6s var(--ease); }
.pitch-draw.is-visible path, .pitch-draw.is-visible circle, .pitch-draw.is-visible line { stroke-dashoffset: 0; }

/* Rotação lenta da marca flat (gracinha) */
.spin-slow { animation: spin 60s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.float-y { animation: floaty 7s ease-in-out infinite; }
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }

/* Divisor com grafismo de linha de campo */
.field-divider { position: relative; height: 1px; background: var(--line-light); margin-block: 0; }
.section--dark .field-divider, .section--carbon .field-divider { background: var(--line-dark); }

/* ============================================================
   ASSET-SLOT PLACEHOLDER (build estrutura-primeiro)
   O <img> tem onerror que o esconde; o slot texturizado aparece.
   Assim que o arquivo correto for adicionado, a foto aparece sozinha.
   ============================================================ */
.img-wrap { position: relative; overflow: hidden; }
.img-wrap > img { position: relative; z-index: 1; }
.img-slot {
  position: absolute; inset: 0; z-index: 0;
  display: grid; place-items: center; gap: .8rem;
  background:
    repeating-linear-gradient(135deg, rgba(0,0,0,.028) 0 12px, transparent 12px 24px),
    var(--mist);
  color: var(--fog);
}
.section--dark .img-slot, .section--carbon .img-slot, .unit-card .img-slot, .cta-band .img-slot {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.03) 0 12px, transparent 12px 24px),
    var(--graphite);
  color: #6d6d75;
}
.img-slot__icon { width: 46px; height: 46px; opacity: .5; }
.img-slot__label { font-family: var(--f-mono); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; opacity: .7; padding-inline: 1rem; text-align: center; }

/* Hero load-in inicial */
.hero__eyebrow, .hero__title, .hero__sub, .hero__cta { opacity: 0; transform: translateY(24px); }
body.boot .hero__eyebrow { animation: heroIn .8s var(--ease) .15s forwards; }
body.boot .hero__title   { animation: heroIn .9s var(--ease) .3s forwards; }
body.boot .hero__sub     { animation: heroIn .9s var(--ease) .48s forwards; }
body.boot .hero__cta     { animation: heroIn .9s var(--ease) .62s forwards; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
  .bene-grid { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .hero__pitch { opacity: .3; }
}

@media (max-width: 860px) {
  /* Mobile: só o escudo centralizado, sem navegação e sem hamburguer */
  .site-header .nav { display: none; }
  .site-header .wrap { display: flex; justify-content: center; height: 72px; }
  .hero__media img { transform: none; object-position: center 15%; }
  .unit-topbar { padding-top: calc(72px + 1.4rem); }

  .split, .split--rev { grid-template-columns: 1fr; }
  .split--rev .split__media { order: -1; }
  .steps { grid-template-columns: 1fr; gap: 2rem; }
  .step__line { display: none; }
  .pillars { grid-template-columns: 1fr; }
  .units-grid { grid-template-columns: 1fr; }
  .ouro-grid { grid-template-columns: 1fr; max-width: 320px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .frame img { aspect-ratio: 4/3; }
}

@media (max-width: 560px) {
  /* Páginas de unidade: esconde o link de texto no header apertado */
  .site-header .header-actions .nav__link { display: none; }
}

@media (max-width: 520px) {
  .bene-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .hero__sub { font-size: .88rem; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .cta-band__actions { flex-direction: column; }
  .cta-band__actions .btn { width: 100%; }
  .unit-card__actions { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   REDUZIR MOVIMENTO
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .ticker__track { animation: none !important; }
  .reveal, .reveal-x, .reveal-scale, [data-stagger] > * { opacity: 1 !important; transform: none !important; }
  .pitch-draw path, .pitch-draw circle, .pitch-draw line { stroke-dashoffset: 0 !important; }
}
