/* =====================================================================
   SARA FLORIPA ILHA — LANDING PAGE
   Direção: editorial / cartaz / campanha. Azul profundo → elétrico →
   ciano → coral. Tipografia condensada gigante, grain, fotos de Floripa.
   ===================================================================== */

/* ---------- TOKENS ---------- */
:root {
  --navy: #050f33;
  --deep: #08186b;
  --royal: #1230e8;
  --electric: #1f4bff;
  --cyan: #21e6ff;
  --cyan-ink: #003f4d;
  --coral: #ff4b3a;
  --coral-deep: #e63a2a;
  --white: #ffffff;
  --paper: #f3f1ec;
  --ink: #0a0f2c;
  --muted: rgba(255, 255, 255, 0.72);

  --font-display: "Anton", "Impact", "Arial Narrow Bold", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --container: 1280px;
  --gutter: clamp(20px, 4vw, 64px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.6s;

  /* grain: SVG feTurbulence em data URI (leve, sem imagem externa) */
  --grain: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.55'/></svg>");
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--white);
  background: var(--deep);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
h1, h2, h3, p, ol, ul, fieldset, legend, address { margin: 0; padding: 0; }
ol, ul { list-style: none; }
fieldset { border: 0; min-width: 0; }
address { font-style: normal; }
a { color: inherit; }
button, input, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
[hidden] { display: none !important; }

/* grain global (fixo, discreto) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: var(--grain);
  background-size: 180px 180px;
  opacity: 0.16;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 9;
}

/* ---------- UTILITÁRIOS ---------- */
.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.mono { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 100;
  background: var(--coral); color: var(--white); padding: 12px 16px;
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em; text-decoration: none;
}
.skip-link:focus { top: 16px; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }

.section-num {
  display: inline-block;
  color: var(--coral);
  margin-bottom: clamp(20px, 3vw, 36px);
}
.section-num--light { color: var(--cyan); }

.line { display: block; }
.line--accent { color: var(--coral); }
.line--outline {
  color: transparent;
  -webkit-text-stroke: 2px currentColor;
}
.welcome .line--outline { -webkit-text-stroke-color: var(--white); }
.cells .line--outline { -webkit-text-stroke-color: var(--ink); }

/* texto gigante cortado pela viewport */
.giant {
  position: absolute;
  font-family: var(--font-display);
  line-height: 0.8;
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  text-transform: uppercase;
}

/* ---------- BOTÕES ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  min-height: 56px; padding: 0 1.4em;
  font-family: var(--font-mono); font-weight: 500; font-size: 0.82rem;
  letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none;
  border: 2px solid transparent; border-radius: 2px;
  transition: transform 0.25s var(--ease), background-color 0.25s, color 0.25s, border-color 0.25s;
  -webkit-tap-highlight-color: transparent;
}
.btn span[aria-hidden] { transition: transform 0.25s var(--ease); }
.btn:hover span[aria-hidden] { transform: translateX(4px); }
.btn--coral { background: var(--coral); color: var(--white); border-color: var(--coral); }
.btn--coral:hover { background: var(--coral-deep); border-color: var(--coral-deep); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn--ghost:hover { border-color: var(--white); }
.btn--dark { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn--dark:hover { background: var(--navy); }
.btn--small { min-height: 48px; font-size: 0.74rem; }
.btn:disabled { opacity: 0.6; cursor: wait; }

/* =====================================================================
   01 — HERO
   ===================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column;
  isolation: isolate;
  overflow: hidden;
}
.hero__photo { position: absolute; inset: 0; z-index: -2; }
.hero__photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: 55% 62%;
  filter: saturate(0.9) contrast(1.05);
}
/* duotone azul + gradiente que "afunda" a foto no azul profundo */
.hero__tint {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(8,24,107,0.45) 0%, rgba(8,24,107,0.15) 35%, rgba(8,24,107,0.62) 70%, var(--deep) 100%),
    linear-gradient(90deg, rgba(5,15,51,0.55) 0%, rgba(5,15,51,0) 60%);
}
.hero__tint::after {
  content: ""; position: absolute; inset: 0;
  background: var(--royal); mix-blend-mode: color; opacity: 0.45;
}

.topbar {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: clamp(18px, 3vw, 36px) var(--gutter);
}
.topbar__logo img { width: clamp(130px, 14vw, 178px); height: auto; }
.topbar__tagline { text-align: right; line-height: 1.7; margin: 0; }
.topbar__tagline span { display: inline-block; margin-left: 1.6em; }

.hero__grid {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  padding: clamp(24px, 4vw, 56px) var(--gutter) clamp(32px, 5vw, 72px);
  width: min(100%, 1480px);
  margin-inline: auto;
}

.hero__copy { padding-bottom: clamp(8px, 2vw, 40px); }
.eyebrow { display: flex; flex-wrap: wrap; gap: 0.9em; color: var(--cyan); margin-bottom: clamp(16px, 2vw, 28px); }
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.6rem, 9.2vw, 9.5rem);
  line-height: 0.94;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
/* padding+margin negativa: a máscara não corta cedilha/acentos */
.hero__title .line { overflow: hidden; padding: 0.08em 0.05em 0.04em 0; margin: -0.08em 0 -0.04em 0; }
.hero__title .line > span { display: inline-block; transform: translateY(110%); animation: rise 0.9s var(--ease) forwards; }
.hero__title .line:nth-child(2) > span { animation-delay: 0.08s; }
.hero__title .line:nth-child(3) > span { animation-delay: 0.16s; }
@keyframes rise { to { transform: translateY(0); } }
.hero__sub {
  max-width: 34ch;
  margin-top: clamp(18px, 2.5vw, 32px);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--muted);
}
.hero__hint { margin-top: clamp(24px, 4vw, 56px); color: var(--cyan); opacity: 0.85; }

/* ---------- FORMULÁRIO (integrado à composição) ---------- */
.connect {
  position: relative;
  background: var(--navy);
  padding: clamp(24px, 3vw, 40px) clamp(20px, 3vw, 44px) clamp(28px, 3vw, 44px);
  border-top: 6px solid var(--coral);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  max-width: 620px;
  width: 100%;
  justify-self: end;
}
.connect::before {
  /* halftone discreto no canto */
  content: ""; position: absolute; right: 0; top: 0; width: 160px; height: 160px;
  background-image: radial-gradient(rgba(33,230,255,0.28) 1.2px, transparent 1.4px);
  background-size: 9px 9px;
  -webkit-mask-image: linear-gradient(225deg, #000 0%, transparent 70%);
  mask-image: linear-gradient(225deg, #000 0%, transparent 70%);
  pointer-events: none;
}
.connect__head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.connect__label { color: var(--cyan); }
.progress { display: flex; gap: 1.2em; }
.progress__step { color: rgba(255,255,255,0.35); transition: color 0.3s; }
.progress__step.is-done { color: var(--cyan); }
.progress__step.is-current { color: var(--white); }
.progress__step.is-current::after { content: ""; display: block; height: 2px; background: var(--coral); margin-top: 4px; }
.progress__bar { height: 2px; background: rgba(255,255,255,0.12); margin: 14px 0 clamp(20px, 3vw, 32px); }
.progress__bar span { display: block; height: 100%; width: 33.33%; background: linear-gradient(90deg, var(--cyan), var(--coral)); transition: width 0.5s var(--ease); }

.hp { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }

.step { display: none; }
.step.is-active { display: block; animation: stepIn 0.45s var(--ease); }
@keyframes stepIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.step__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: clamp(18px, 2.5vw, 28px);
  outline: none;
}

.field { margin-bottom: clamp(16px, 2vw, 22px); }
.field label, .field--group > legend {
  display: block;
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 8px;
}
.field--group > legend { margin-bottom: 10px; }
.req { color: var(--coral); }
.opt { color: rgba(255,255,255,0.45); margin-left: 0.4em; font-size: 0.62rem; }

.field input[type="text"], .field input[type="tel"], .field input[type="email"], .field textarea {
  width: 100%;
  min-height: 54px;
  padding: 12px 0;
  font-size: 1.05rem; /* ≥16px → sem zoom no iOS */
  background: transparent;
  border: 0; border-bottom: 2px solid rgba(255,255,255,0.28);
  border-radius: 0;
  color: var(--white);
  transition: border-color 0.25s;
  appearance: none; -webkit-appearance: none;
}
.field textarea { resize: vertical; line-height: 1.5; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.3); }
.field input:focus, .field textarea:focus { outline: none; border-bottom-color: var(--cyan); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-bottom-color: var(--coral); }
.field__error { margin-top: 6px; font-size: 0.82rem; color: #ffb3ab; min-height: 0; }
.field__error:empty { display: none; }
.field__count { margin-top: 6px; color: rgba(255,255,255,0.4); text-align: right; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* chips (radio / checkbox) */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; display: inline-flex; }
.chip input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.chip span {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 16px;
  border: 1.5px solid rgba(255,255,255,0.28); border-radius: 999px;
  font-size: 0.9rem; font-weight: 500; line-height: 1.2;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s, transform 0.2s var(--ease);
  cursor: pointer; user-select: none;
}
.chip--wide span { text-transform: uppercase; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; }
.chips--services .chip span { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; }
.chip:hover span { border-color: var(--white); }
.chip input:checked + span { background: var(--coral); border-color: var(--coral); color: var(--white); }
.chip input:focus-visible + span { outline: 3px solid var(--cyan); outline-offset: 2px; }
.chip:active span { transform: scale(0.97); }

/* consentimento */
.consent { margin: 4px 0 clamp(18px, 2vw, 24px); padding: 16px; border: 1px solid rgba(255,255,255,0.14); }
.consent__label { display: grid; grid-template-columns: 24px 1fr; gap: 12px; font-size: 0.9rem; line-height: 1.45; cursor: pointer; }
.consent__label input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.consent__box { width: 24px; height: 24px; border: 2px solid var(--cyan); border-radius: 2px; margin-top: 1px; display: grid; place-items: center; transition: background-color 0.2s; }
.consent__box::after { content: ""; width: 12px; height: 7px; border-left: 3px solid var(--navy); border-bottom: 3px solid var(--navy); transform: rotate(-45deg) translate(1px, -1px); opacity: 0; }
.consent__label input:checked ~ .consent__box { background: var(--cyan); }
.consent__label input:checked ~ .consent__box::after { opacity: 1; }
.consent__label input:focus-visible ~ .consent__box { outline: 3px solid var(--coral); outline-offset: 2px; }
.consent__note { margin-top: 10px; color: rgba(255,255,255,0.5); text-transform: none; letter-spacing: 0.02em; font-size: 0.72rem; }

.step__actions { display: flex; justify-content: space-between; gap: 12px; margin-top: clamp(16px, 2vw, 24px); }
.step__actions .btn { flex: 1 1 auto; justify-content: center; }
.btn--submit .btn__loading { display: none; }
.btn--submit.is-loading .btn__label { display: none; }
.btn--submit.is-loading .btn__loading { display: inline; }

/* painéis sucesso / erro */
.panel { outline: none; animation: stepIn 0.5s var(--ease); }
.panel__kicker { color: var(--cyan); margin-bottom: 14px; }
.panel__title { font-family: var(--font-display); font-size: clamp(2rem, 3.4vw, 2.8rem); line-height: 1.02; text-transform: uppercase; }
.panel__title--big { font-size: clamp(2.6rem, 4.6vw, 3.8rem); color: var(--coral); }
.panel__text { margin-top: 16px; color: var(--muted); max-width: 40ch; }
.panel__detail { margin-top: 10px; color: rgba(255,255,255,0.45); text-transform: none; letter-spacing: 0.02em; }
.panel__detail:empty { display: none; }
.panel--error .btn { margin-top: 22px; }
.next-services { margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.14); }
.next-services__label { color: var(--cyan); margin-bottom: 10px; }
.next-services__list { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 8px 16px; }
.next-services__list li { font-family: var(--font-display); font-size: 1.35rem; text-transform: uppercase; line-height: 1.1; }
.next-services__list li small { display: block; font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.14em; color: rgba(255,255,255,0.55); }
.panel__links { display: grid; gap: 10px; margin-top: 24px; }
.panel__links .btn { justify-content: space-between; }

/* =====================================================================
   02 — BEM-VINDO (azul elétrico)
   ===================================================================== */
.welcome {
  position: relative; overflow: hidden;
  background: var(--royal);
  padding-bottom: clamp(80px, 12vw, 180px);
}
.welcome__photo { position: relative; aspect-ratio: 1920 / 435; overflow: hidden; }
.welcome__photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85); }
.welcome__photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,48,232,0) 30%, var(--royal) 100%), var(--electric);
  mix-blend-mode: multiply; opacity: 0.85;
}
.welcome__body {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px); align-items: end;
  margin-top: clamp(-60px, -6vw, -120px);
}
.welcome__title {
  grid-column: 1;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(3.4rem, 10vw, 10.5rem); line-height: 0.95; text-transform: uppercase;
}
.welcome__body .section-num { grid-column: 1 / -1; color: var(--cyan); }
.welcome__text { max-width: 44ch; font-size: clamp(1.02rem, 1.3vw, 1.2rem); color: rgba(255,255,255,0.86); display: grid; gap: 1em; padding-bottom: 0.4em; }
.giant--welcome {
  right: -0.06em; bottom: -0.32em;
  font-size: clamp(9rem, 24vw, 26rem);
  color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,0.22);
}

/* =====================================================================
   03 — PRIMEIRA VEZ (papel)
   ===================================================================== */
.first { background: var(--paper); color: var(--ink); padding: clamp(64px, 9vw, 140px) 0; position: relative; }
.first__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.first__head { position: sticky; top: 40px; }
.first__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(3.4rem, 8vw, 8rem); line-height: 0.95; text-transform: uppercase; color: var(--royal); }
.first__intro { margin-top: 22px; max-width: 34ch; font-size: 1.05rem; color: rgba(10,15,44,0.72); }
.first__list li {
  display: grid; grid-template-columns: 56px 1fr; gap: 16px; align-items: start;
  padding: clamp(18px, 2.4vw, 30px) 0;
  border-top: 1px solid rgba(10,15,44,0.18);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem); line-height: 1.4;
}
.first__list li:last-child { border-bottom: 1px solid rgba(10,15,44,0.18); }
.first__list li .mono { color: var(--coral); font-size: 0.8rem; padding-top: 0.35em; }

/* =====================================================================
   04 — CULTOS (posters)
   ===================================================================== */
.services { background: var(--navy); padding-top: clamp(64px, 9vw, 140px); position: relative; }
.services__head { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 24px; margin-bottom: clamp(32px, 5vw, 64px); }
.services__head .section-num { grid-column: 1 / -1; }
.services__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(3.4rem, 8vw, 8rem); line-height: 0.95; text-transform: uppercase; }
.services__addr { color: rgba(255,255,255,0.55); line-height: 1.7; text-align: right; }

.posters { display: grid; grid-template-columns: repeat(3, 1fr); }
.poster {
  position: relative; overflow: hidden;
  min-height: clamp(360px, 42vw, 640px);
  padding: clamp(24px, 3vw, 48px);
  display: flex; flex-direction: column; justify-content: space-between;
  isolation: isolate;
}
.poster::before {
  /* halftone */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image: radial-gradient(rgba(0,0,0,0.18) 1.3px, transparent 1.5px);
  background-size: 8px 8px;
  -webkit-mask-image: linear-gradient(200deg, transparent 40%, #000 100%);
  mask-image: linear-gradient(200deg, transparent 40%, #000 100%);
}
.poster--blue { background: var(--electric); color: var(--white); }
.poster--coral { background: var(--coral); color: var(--white); }
.poster--cyan { background: var(--cyan); color: var(--cyan-ink); }
.poster__day { font-family: var(--font-display); font-size: clamp(1.6rem, 2.6vw, 2.6rem); line-height: 1; text-transform: uppercase; }
.poster__time {
  font-family: var(--font-display); line-height: 0.8; text-transform: uppercase;
  font-size: clamp(7rem, 17vw, 19rem); letter-spacing: -0.03em;
  align-self: flex-end; margin-right: -0.08em; transform: translateY(0.06em);
}
.poster__time small { font-size: 0.32em; vertical-align: top; margin-left: 0.05em; letter-spacing: 0; }
.poster__time--double { display: grid; align-self: stretch; font-size: clamp(4.6rem, 10.5vw, 11.5rem); line-height: 0.95; margin-right: 0; }
.poster__time--double span:first-child { justify-self: start; margin-left: -0.04em; }
.poster__time--double span:last-child { justify-self: end; }
.poster__meta { opacity: 0.75; }

/* =====================================================================
   05 — CÉLULAS (coral)
   ===================================================================== */
.cells { background: var(--coral); color: var(--ink); padding: clamp(72px, 10vw, 160px) 0; position: relative; overflow: hidden; }
.cells__grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 80px); align-items: end; }
.cells__grid .section-num { grid-column: 1 / -1; color: var(--white); }
.cells__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(3.2rem, 8.4vw, 8.6rem); line-height: 0.96; text-transform: uppercase; color: var(--white); }
.cells__title .line--outline { color: transparent; }
.cells__text { display: grid; gap: 1em; font-size: clamp(1.02rem, 1.3vw, 1.2rem); max-width: 42ch; color: rgba(10,15,44,0.9); }
.cells__text .btn { justify-self: start; margin-top: 8px; }

/* =====================================================================
   06 — LOCALIZAÇÃO (foto duotone da ilha)
   ===================================================================== */
.where { position: relative; overflow: hidden; isolation: isolate; min-height: 80svh; display: grid; align-items: center; padding: clamp(72px, 10vw, 160px) 0; background: var(--royal); }
.where__photo { position: absolute; inset: 0; z-index: -2; }
.where__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 100%; filter: saturate(0.9); }
.where::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(8,24,107,0.95) 0%, rgba(8,24,107,0.6) 50%, rgba(8,24,107,0.25) 100%); }
.where::after { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--royal); mix-blend-mode: color; opacity: 0.6; }
.giant--where { right: -0.05em; top: 50%; transform: translateY(-50%); font-size: clamp(10rem, 30vw, 34rem); color: var(--cyan); opacity: 0.18; }
.where__body { position: relative; }
.where__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(3.4rem, 8vw, 8rem); line-height: 0.95; text-transform: uppercase; }
.where__addr { margin: 24px 0 28px; font-size: clamp(1.1rem, 1.6vw, 1.45rem); line-height: 1.4; color: rgba(255,255,255,0.9); }

/* =====================================================================
   07 — REDES (papel)
   ===================================================================== */
.social { background: var(--paper); color: var(--ink); padding: clamp(64px, 9vw, 140px) 0; }
.social__row {
  display: grid; grid-template-columns: 1fr auto auto; align-items: baseline; gap: clamp(12px, 3vw, 40px);
  padding: clamp(14px, 2vw, 24px) 0; border-top: 2px solid var(--ink); text-decoration: none;
  transition: color 0.25s, padding-left 0.35s var(--ease);
}
.social__row:last-of-type { border-bottom: 2px solid var(--ink); }
.social__row:hover { color: var(--royal); padding-left: 0.3em; }
.social__row:hover .social__arrow { transform: translateX(6px) rotate(-45deg); color: var(--coral); }
.social__name { font-family: var(--font-display); font-size: clamp(2.8rem, 8vw, 8rem); line-height: 0.9; text-transform: uppercase; }
.social__handle { font-size: clamp(0.72rem, 1.2vw, 1rem); text-transform: none; letter-spacing: 0.06em; }
.social__arrow { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 4rem); line-height: 1; transition: transform 0.35s var(--ease), color 0.25s; }
.social__note { margin-top: 24px; color: rgba(10,15,44,0.7); max-width: 44ch; }

/* =====================================================================
   08 — FOOTER / MANIFESTO
   ===================================================================== */
.footer { position: relative; overflow: hidden; background: var(--deep); padding: clamp(72px, 9vw, 140px) 0 clamp(200px, 30vw, 420px); }
.footer__grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 80px); align-items: start; position: relative; z-index: 1; }
.footer__manifesto { font-family: var(--font-display); font-size: clamp(2.6rem, 6.4vw, 6.6rem); line-height: 0.98; text-transform: uppercase; }
.footer__info { display: grid; gap: 14px; justify-items: start; color: rgba(255,255,255,0.75); padding-top: 0.5em; }
.footer__info .btn { margin-top: 10px; }
.footer__info a:not(.btn) { text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.3); }
.footer__info a:not(.btn):hover { color: var(--cyan); border-color: var(--cyan); }
.footer__legal { margin-top: 16px; color: rgba(255,255,255,0.4); }
.giant--footer {
  left: -0.03em; bottom: -0.42em;
  font-size: clamp(11rem, 52vw, 60rem);
  text-transform: none; letter-spacing: -0.04em;
  background: linear-gradient(90deg, var(--royal), var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* CTA fixo mobile */
.sticky-cta {
  position: fixed; left: 16px; right: 16px; bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 50; display: none; justify-content: center; align-items: center; min-height: 56px;
  background: var(--coral); color: var(--white); text-decoration: none;
  font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35); border-radius: 2px;
  transform: translateY(120%); transition: transform 0.4s var(--ease);
}
.sticky-cta.is-visible { transform: none; }

/* =====================================================================
   REVEALS (IntersectionObserver adiciona .is-in)
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-img { clip-path: inset(0 0 100% 0); transition: clip-path 1.1s var(--ease); }
.reveal-img.is-in { clip-path: inset(0 0 0 0); }
.first__list li:nth-child(2) { transition-delay: 0.06s; }
.first__list li:nth-child(3) { transition-delay: 0.12s; }
.first__list li:nth-child(4) { transition-delay: 0.18s; }
.first__list li:nth-child(5) { transition-delay: 0.24s; }
.poster:nth-child(2) { transition-delay: 0.1s; }
.poster:nth-child(3) { transition-delay: 0.2s; }

/* =====================================================================
   RESPONSIVO
   ===================================================================== */
@media (max-width: 1100px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .hero__title { font-size: clamp(3.2rem, 7.6vw, 7rem); }
}

@media (max-width: 900px) {
  .hero { min-height: 0; }
  .hero__photo { height: 68svh; inset: 0 0 auto 0; }
  .hero__photo img { object-position: 60% 45%; }
  .hero__tint { height: 68svh; inset: 0 0 auto 0; }
  .topbar__tagline { display: none; }
  .hero__grid {
    grid-template-columns: 1fr; gap: 0; padding: 0; width: 100%;
  }
  .hero__copy { padding: 28vh var(--gutter) 28px; }
  .hero__title { font-size: clamp(3.4rem, 15vw, 5.6rem); }
  .hero__hint { display: none; }
  .connect { max-width: none; box-shadow: none; padding-inline: var(--gutter); }
  .field-row { grid-template-columns: 1fr; gap: 0; }

  .welcome__photo { aspect-ratio: 4 / 3; }
  .welcome__body { grid-template-columns: 1fr; margin-top: -8vw; }
  .welcome__title { font-size: clamp(3.4rem, 15vw, 6.5rem); }
  .giant--welcome { font-size: 40vw; }

  .first__grid { grid-template-columns: 1fr; }
  .first__head { position: static; }
  .first__list li { grid-template-columns: 40px 1fr; }

  .services__head { grid-template-columns: 1fr; }
  .services__addr { text-align: left; }
  .posters { grid-template-columns: 1fr; }
  .poster { min-height: 0; padding: 28px var(--gutter) 32px; }
  .poster__time { font-size: clamp(6rem, 30vw, 9rem); }
  .poster__time--double { font-size: clamp(4rem, 20vw, 6.4rem); }

  .cells__grid { grid-template-columns: 1fr; }
  .where { min-height: 0; }
  .where::before { background: linear-gradient(180deg, rgba(8,24,107,0.9) 0%, rgba(8,24,107,0.55) 100%); }
  .poster__time--double { margin-top: 24px; }

  .social__row { grid-template-columns: 1fr auto; }
  .social__name { grid-column: 1; grid-row: 1; }
  .social__handle { grid-column: 1; grid-row: 2; }
  .social__arrow { grid-column: 2; grid-row: 1 / span 2; align-self: center; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer { padding-bottom: 38vw; }
  .sticky-cta { display: flex; }
}

@media (max-width: 480px) {
  .step__actions { flex-direction: column-reverse; }
  .btn { width: 100%; justify-content: center; }
  .chips .chip { flex: 1 1 calc(50% - 8px); }
  .chips .chip span { width: 100%; justify-content: center; text-align: center; }
  .chips .chip--wide { flex-basis: 100%; }
}

/* =====================================================================
   MOVIMENTO REDUZIDO
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-delay: 0s !important; transition-duration: 0.001ms !important; }
  .reveal, .reveal-img { opacity: 1; transform: none; clip-path: none; }
  .hero__title .line > span { transform: none; animation: none; }
}
