@charset "UTF-8";
/* ==========================================================================
   FastPass — Gestão de Acesso
   Folha de estilo única. Sem framework, sem dependências.

   Sumário
   01. Tokens
   02. Reset e base
   03. Tipografia
   04. Layout
   05. Botões
   06. Componentes
   07. Formulários
   08. Cabeçalho e navegação
   09. Hero
   10. Seções da home
   11. Páginas internas
   12. Rodapé
   13. Elementos flutuantes
   14. Animação de entrada
   15. Utilitários
   ========================================================================== */

/* ==========================================================================
   01. Tokens
   ========================================================================== */
:root {
  /* Marca — amarelo do logotipo */
  --brand:          #ffe500;
  --brand-strong:   #ffd60a;
  --brand-deep:     #d4bc00;
  --brand-ink:      #14160b;              /* texto sobre o amarelo */
  --brand-soft:     rgba(255, 229, 0, .12);
  --brand-softer:   rgba(255, 229, 0, .06);
  --brand-line:     rgba(255, 229, 0, .28);

  /* Superfícies escuras */
  --ink-950:        #07080a;
  --ink-900:        #0b0d10;
  --ink-850:        #0f1216;
  --ink-800:        #14181d;
  --ink-700:        #1b2027;
  --ink-600:        #242b34;

  /* Superfície clara (documentos, formulários) */
  --paper:          #ffffff;
  --paper-alt:      #f4f6f8;
  --paper-ink:      #13171c;
  --paper-muted:    #545d68;
  --paper-line:     #e2e6ea;

  /* Texto sobre escuro */
  --text:           #eef1f5;
  --text-muted:     #a2abb6;
  /* #7a848f garante 4.9:1 sobre a superfície clara (--ink-850),
     acima do mínimo 4.5:1 da WCAG 2.1 AA para texto normal. */
  --text-dim:       #7a848f;

  /* Linhas e sombras */
  --line:           rgba(255, 255, 255, .09);
  --line-strong:    rgba(255, 255, 255, .16);
  --shadow-sm:      0 1px 2px rgba(0, 0, 0, .3);
  --shadow-md:      0 8px 24px -8px rgba(0, 0, 0, .5);
  --shadow-lg:      0 24px 56px -20px rgba(0, 0, 0, .65);
  --shadow-brand:   0 16px 40px -16px rgba(255, 229, 0, .35);

  /* Estados */
  --success:        #34d399;
  --success-bg:     rgba(52, 211, 153, .12);
  --danger:         #f87171;
  --danger-bg:      rgba(248, 113, 113, .12);
  --info:           #60a5fa;

  /* Tipografia */
  --font-sans:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-display:   'Sora', var(--font-sans);

  /* Ritmo */
  --container:      1200px;
  --container-narrow: 820px;
  --gutter:         clamp(1.25rem, 4vw, 2.5rem);
  --section-y:      clamp(4rem, 9vw, 7.5rem);

  /* Raios */
  --r-sm:           .5rem;
  --r-md:           .875rem;
  --r-lg:           1.25rem;
  --r-xl:           1.75rem;
  --r-pill:         999px;

  /* Transições */
  --ease:           cubic-bezier(.22, .61, .36, 1);
  --t-fast:         .16s var(--ease);
  --t:              .28s var(--ease);
  --t-slow:         .5s var(--ease);
}

/* ==========================================================================
   02. Reset e base
   ========================================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* compensa o cabeçalho fixo ao pular para âncoras */
  scroll-padding-top: 6rem;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--ink-900);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img,
picture,
video,
svg { display: block; max-width: 100%; }

img { height: auto; }

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button { cursor: pointer; }

a {
  color: var(--brand);
  text-decoration: none;
  transition: color var(--t-fast);
}

a:hover { color: var(--brand-strong); }

ul, ol { padding: 0; list-style: none; }

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2rem 0;
}

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

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

/* Link de pular para o conteúdo (leitores de tela / teclado) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: .75rem 1.25rem;
  background: var(--brand);
  color: var(--brand-ink);
  font-weight: 600;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
}

.skip-link:focus { top: 0; color: var(--brand-ink); }

/* ==========================================================================
   03. Tipografia
   ========================================================================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.02em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.25rem, 5.2vw, 3.85rem); font-weight: 700; }
h2 { font-size: clamp(1.85rem, 3.8vw, 2.85rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.125rem; }

p { text-wrap: pretty; }

strong, b { font-weight: 600; color: #fff; }

small { font-size: .875rem; }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.6;
  color: var(--text-muted);
  text-wrap: pretty;
}

.muted  { color: var(--text-muted); }
.dim    { color: var(--text-dim); }
.accent { color: var(--brand); }

/* Etiqueta de seção */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.1rem;
  font-family: var(--font-sans);
  font-size: .775rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
}

.eyebrow::before {
  content: '';
  width: 1.75rem;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.eyebrow--center { justify-content: center; }

/* Palavra destacada com traço amarelo */
.mark {
  position: relative;
  display: inline-block;
  color: var(--brand);
}

/* ==========================================================================
   04. Layout
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-y); }

.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.section--alt  { background: var(--ink-850); }
.section--deep { background: var(--ink-950); }

.section__head {
  max-width: 46rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section__head--center {
  margin-inline: auto;
  text-align: center;
}

.section__head p { margin-top: 1rem; }

/* Grade utilitária */
.grid { display: grid; gap: clamp(1rem, 2vw, 1.5rem); }

.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr)); }

/* Duas colunas com texto + mídia */
.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

@media (min-width: 62rem) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-text { grid-template-columns: 1.15fr .85fr; }
  .split--reverse > :first-child { order: 2; }
}

/* ==========================================================================
   05. Botões
   ========================================================================== */
.btn {
  --btn-bg: var(--brand);
  --btn-fg: var(--brand-ink);
  --btn-bd: var(--brand);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .85rem 1.6rem;
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1.5px solid var(--btn-bd);
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: transform var(--t-fast), background var(--t-fast),
              border-color var(--t-fast), color var(--t-fast),
              box-shadow var(--t-fast);
}

.btn:hover {
  color: var(--btn-fg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn .icon {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
  transition: transform var(--t-fast);
}

.btn:hover .icon--shift { transform: translateX(3px); }

.btn--primary:hover {
  --btn-bg: var(--brand-strong);
  --btn-bd: var(--brand-strong);
  box-shadow: var(--shadow-brand);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  --btn-bd: var(--line-strong);
}

.btn--ghost:hover {
  --btn-bg: rgba(255, 255, 255, .06);
  --btn-bd: var(--brand);
  --btn-fg: #fff;
}

.btn--outline {
  --btn-bg: transparent;
  --btn-fg: var(--brand);
  --btn-bd: var(--brand-line);
}

.btn--outline:hover {
  --btn-bg: var(--brand-soft);
  --btn-bd: var(--brand);
}

.btn--on-light {
  --btn-bg: transparent;
  --btn-fg: var(--paper-ink);
  --btn-bd: var(--paper-line);
}

.btn--on-light:hover {
  --btn-bg: var(--paper-alt);
  --btn-bd: var(--paper-muted);
  --btn-fg: var(--paper-ink);
}

.btn--lg { padding: 1.05rem 2.1rem; font-size: 1rem; }
.btn--sm { padding: .6rem 1.15rem; font-size: .85rem; }
.btn--block { width: 100%; }

.btn[disabled],
.btn[aria-disabled='true'] {
  opacity: .55;
  pointer-events: none;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  align-items: center;
}

/* Link com seta */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 600;
  font-size: .95rem;
  color: var(--brand);
}

.link-arrow .icon {
  width: 1.1em;
  height: 1.1em;
  transition: transform var(--t-fast);
}

.link-arrow:hover .icon { transform: translateX(4px); }

/* ==========================================================================
   06. Componentes
   ========================================================================== */

/* --- Selo / pílula ------------------------------------------------------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .9rem .4rem .75rem;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
}

.pill .icon { width: 1rem; height: 1rem; color: var(--brand); }

.pill--brand {
  color: var(--brand);
  background: var(--brand-soft);
  border-color: var(--brand-line);
}

/* --- Cartão base --------------------------------------------------------- */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 2.6vw, 2rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t), transform var(--t), background var(--t);
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(90% 60% at 50% 0%, var(--brand-softer), transparent 70%);
  opacity: 0;
  transition: opacity var(--t);
  pointer-events: none;
}

.card:hover {
  border-color: var(--brand-line);
  transform: translateY(-4px);
}

.card:hover::after { opacity: 1; }

.card__icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.25rem;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid var(--brand-line);
  border-radius: var(--r-md);
  flex-shrink: 0;
}

.card__icon .icon { width: 1.5rem; height: 1.5rem; }

.card__title { margin-bottom: .6rem; }

.card__text {
  color: var(--text-muted);
  font-size: .95rem;
}

.card__foot { margin-top: auto; padding-top: 1.5rem; }

/* Cartão inteiro clicável mantendo semântica de link */
.card--link { padding-bottom: 1.5rem; }

.card--link .card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* --- Lista de checagem --------------------------------------------------- */
.check-list { display: grid; gap: .8rem; }

.check-list li {
  position: relative;
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  color: var(--text-muted);
  font-size: .95rem;
}

.check-list .icon {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: .22rem;
  color: var(--brand);
  flex-shrink: 0;
}

.check-list--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr)); }

/* --- Números / estatísticas --------------------------------------------- */
.stat {
  padding: 1.5rem 0;
  border-top: 2px solid var(--brand);
}

.stat__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.03em;
  color: #fff;
}

.stat__label {
  margin-top: .5rem;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text);
}

.stat__hint {
  margin-top: .3rem;
  font-size: .825rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* --- Etapas numeradas --------------------------------------------------- */
.steps {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  counter-reset: step;
}

@media (min-width: 48rem) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 72rem) {
  .steps { grid-template-columns: repeat(4, 1fr); }
}

.step {
  position: relative;
  padding-top: 2.75rem;
  counter-increment: step;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand);
}

.step::after {
  content: '';
  position: absolute;
  top: .75rem;
  left: 2.5rem;
  right: -1rem;
  height: 1px;
  background: linear-gradient(90deg, var(--brand-line), transparent);
}

.step:last-child::after { display: none; }

@media (max-width: 71.9375rem) {
  .step::after { display: none; }
}

.step__title { margin-bottom: .5rem; font-size: 1.1rem; }

.step__text { color: var(--text-muted); font-size: .925rem; }

/* --- Segmentos (chips com ícone) ---------------------------------------- */
.segment {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1.05rem 1.25rem;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: .95rem;
  font-weight: 500;
  transition: border-color var(--t-fast), background var(--t-fast);
}

.segment:hover {
  border-color: var(--brand-line);
  background: var(--brand-softer);
}

.segment .icon {
  width: 1.4rem;
  height: 1.4rem;
  color: var(--brand);
  flex-shrink: 0;
}

/* --- Faixa de chamada --------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--ink-850);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 120% at 15% 0%, rgba(255, 229, 0, .13), transparent 60%),
    radial-gradient(50% 100% at 100% 100%, rgba(255, 229, 0, .07), transparent 60%);
  pointer-events: none;
}

.cta-band__inner {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: center;
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

@media (min-width: 60rem) {
  .cta-band__inner { grid-template-columns: 1.4fr auto; }
}

/* --- Aviso / alerta ----------------------------------------------------- */
.alert {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  margin-bottom: 1.75rem;
  font-size: .925rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .03);
}

.alert .icon { width: 1.25rem; height: 1.25rem; margin-top: .15rem; flex-shrink: 0; }

.alert--success {
  color: #d6fbec;
  background: var(--success-bg);
  border-color: rgba(52, 211, 153, .35);
}

.alert--success .icon { color: var(--success); }

.alert--error {
  color: #ffe1e1;
  background: var(--danger-bg);
  border-color: rgba(248, 113, 113, .35);
}

.alert--error .icon { color: var(--danger); }

.alert__title { font-weight: 600; margin-bottom: .2rem; color: #fff; }

.alert ul { margin-top: .5rem; display: grid; gap: .3rem; }

.alert li { padding-left: 1rem; position: relative; }

.alert li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .62em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

/* --- Trilha de navegação ------------------------------------------------ */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
  font-size: .825rem;
  color: var(--text-dim);
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--brand); }

.breadcrumb .icon { width: .85rem; height: .85rem; opacity: .5; }

.breadcrumb [aria-current] { color: var(--text); }

/* --- Sanfona (perguntas / listas longas) -------------------------------- */
.accordion { display: grid; gap: .75rem; }

.accordion__item {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .025);
  overflow: hidden;
}

.accordion__item[open] { border-color: var(--brand-line); }

.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.1rem 1.35rem;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  text-align: left;
  color: var(--text);
  cursor: pointer;
  list-style: none;
}

.accordion__trigger::-webkit-details-marker { display: none; }

.accordion__trigger .icon {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--brand);
  flex-shrink: 0;
  transition: transform var(--t-fast);
}

.accordion__item[open] .accordion__trigger .icon { transform: rotate(180deg); }

.accordion__body {
  padding: 0 1.35rem 1.35rem;
  color: var(--text-muted);
  font-size: .95rem;
}

/* --- Documento em superfície clara (páginas legais) --------------------- */
.doc {
  padding: clamp(1.75rem, 4vw, 3.25rem);
  color: var(--paper-ink);
  background: var(--paper);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}

.doc > * + * { margin-top: 1.05rem; }

.doc p,
.doc li { color: #2d353e; font-size: 1rem; line-height: 1.75; }

.doc strong,
.doc b { color: var(--paper-ink); }

.doc h2,
.doc h3,
.doc h4 {
  margin-top: 2.25rem;
  color: var(--paper-ink);
}

.doc h2 { font-size: 1.5rem; }
.doc h3 { font-size: 1.25rem; }
.doc h4 { font-size: 1.05rem; }

.doc ul,
.doc ol {
  display: grid;
  gap: .55rem;
  padding-left: 1.5rem;
}

.doc ul { list-style: disc; }
.doc ol { list-style: decimal; }

.doc li::marker { color: var(--brand-deep); }

/* Âmbar escurecido: 4.9:1 sobre o branco do documento (WCAG AA). */
.doc a {
  color: #856f00;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.doc a:hover { color: #5e4f00; }

.doc hr { border-top-color: var(--paper-line); }

.doc table {
  width: 100%;
  border-collapse: collapse;
  font-size: .925rem;
}

.doc th,
.doc td {
  padding: .7rem .85rem;
  border: 1px solid var(--paper-line);
  text-align: left;
  vertical-align: top;
}

.doc th { background: var(--paper-alt); font-weight: 600; }

.doc blockquote {
  padding: .25rem 0 .25rem 1.25rem;
  border-left: 3px solid var(--brand);
  color: var(--paper-muted);
}

/* ==========================================================================
   07. Formulários
   ========================================================================== */
.form { display: grid; gap: 1.15rem; }

.form-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
}

.field { display: grid; gap: .45rem; }

.field--full { grid-column: 1 / -1; }

.field__label {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
}

.field__label .req { color: var(--brand); margin-left: .15rem; }

.field__hint { font-size: .8rem; color: var(--text-dim); }

.field__error {
  font-size: .8rem;
  font-weight: 500;
  color: var(--danger);
}

.input,
.textarea,
.select {
  width: 100%;
  padding: .85rem 1.05rem;
  font-size: .95rem;
  color: var(--text);
  background: rgba(255, 255, 255, .04);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-md);
  transition: border-color var(--t-fast), background var(--t-fast),
              box-shadow var(--t-fast);
  appearance: none;
}

.input::placeholder,
.textarea::placeholder { color: var(--text-dim); }

.input:hover,
.textarea:hover,
.select:hover { border-color: rgba(255, 255, 255, .26); }

.input:focus,
.textarea:focus,
.select:focus {
  outline: none;
  border-color: var(--brand);
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 0 0 4px var(--brand-soft);
}

.input[aria-invalid='true'],
.textarea[aria-invalid='true'],
.select[aria-invalid='true'] { border-color: var(--danger); }

.textarea { min-height: 9.5rem; resize: vertical; }

.select {
  padding-right: 2.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a2abb6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9.5l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.1rem;
  cursor: pointer;
}

.select option { color: #14171a; background: #fff; }

/* Grupo de caixas de seleção (serviços de interesse) */
.checkgroup {
  display: grid;
  gap: .6rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
}

.checkgroup__item {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  padding: .8rem 1rem;
  font-size: .9rem;
  background: rgba(255, 255, 255, .03);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast);
}

.checkgroup__item:hover { border-color: var(--line-strong); }

.checkgroup__item:has(input:checked) {
  border-color: var(--brand);
  background: var(--brand-soft);
}

.checkgroup__item:has(input:focus-visible) {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* Caixa de seleção estilizada */
.checkbox {
  display: grid;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  margin: .15rem 0 0;
  flex-shrink: 0;
  background: transparent;
  border: 1.5px solid var(--line-strong);
  border-radius: .3rem;
  appearance: none;
  cursor: pointer;
  transition: background var(--t-fast), border-color var(--t-fast);
}

.checkbox::before {
  content: '';
  width: .6rem;
  height: .32rem;
  border-left: 2px solid var(--brand-ink);
  border-bottom: 2px solid var(--brand-ink);
  transform: rotate(-45deg) scale(0);
  transform-origin: center;
  transition: transform var(--t-fast);
  margin-top: -.12rem;
}

.checkbox:checked {
  background: var(--brand);
  border-color: var(--brand);
}

.checkbox:checked::before { transform: rotate(-45deg) scale(1); }

/* Consentimento LGPD */
.consent {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.consent a { text-decoration: underline; text-underline-offset: 2px; }

/* Honeypot: invisível para humanos, presente para robôs */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Bloco de formulário em cartão */
.form-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .015));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}

.form-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-top: .5rem;
}

/* reCAPTCHA responsivo em telas pequenas */
.captcha { min-height: 78px; }

@media (max-width: 26rem) {
  .captcha > div { transform: scale(.85); transform-origin: 0 0; }
}

/* ==========================================================================
   08. Cabeçalho e navegação
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 13, 16, .72);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  transition: background var(--t), border-color var(--t), box-shadow var(--t);
}

.header.is-stuck {
  background: rgba(8, 10, 12, .92);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-md);
}

.header__bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 4.75rem;
}

.header.is-stuck .header__bar { min-height: 4.15rem; }

.header__bar,
.header__bar * { transition: min-height var(--t), height var(--t); }

/* Logotipo */
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
}

/* O logotipo é um lockup com tagline (proporção ~1.9:1), por isso precisa
   de uma altura maior que um logotipo só de símbolo para ficar legível. */
.brand img {
  width: auto;
  height: 3.4rem;
  transition: height var(--t);
}

.header.is-stuck .brand img { height: 2.9rem; }

@media (max-width: 30rem) {
  .brand img { height: 2.9rem; }
}

/* Navegação em telas grandes */
.nav { display: none; }

@media (min-width: 62rem) {
  .nav {
    display: flex;
    align-items: center;
    gap: .35rem;
  }
}

.nav__link {
  position: relative;
  padding: .55rem .9rem;
  font-size: .925rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}

.nav__link:hover { color: #fff; background: rgba(255, 255, 255, .05); }

.nav__link[aria-current] { color: var(--brand); }

.nav__link[aria-current]::after {
  content: '';
  position: absolute;
  left: .9rem;
  right: .9rem;
  bottom: .1rem;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}

/* Ações do cabeçalho */
.header__actions {
  display: none;
  align-items: center;
  gap: .75rem;
}

@media (min-width: 62rem) {
  .header__actions { display: flex; }
}

.header__phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .925rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.header__phone .icon { width: 1.15rem; height: 1.15rem; color: var(--brand); }
.header__phone:hover { color: var(--brand); }

/* Botão do menu mobile */
.nav-toggle {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-left: auto;
  color: var(--text);
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}

.nav-toggle .icon { width: 1.4rem; height: 1.4rem; }
.nav-toggle .icon--close { display: none; }

.nav-toggle[aria-expanded='true'] .icon--menu  { display: none; }
.nav-toggle[aria-expanded='true'] .icon--close { display: block; }

@media (min-width: 62rem) {
  .nav-toggle { display: none; }
}

/* Gaveta mobile */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: grid;
  grid-template-rows: 4.75rem 1fr;
  background: var(--ink-950);
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--t), visibility var(--t);
}

.drawer.is-open { visibility: visible; opacity: 1; }

@media (min-width: 62rem) {
  .drawer { display: none; }
}

.drawer__body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1.5rem var(--gutter) 3rem;
  overflow-y: auto;
}

.drawer__nav { display: grid; gap: .25rem; }

.drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.05rem .25rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(12px);
}

.drawer.is-open .drawer__link {
  animation: drawer-in .45s var(--ease) forwards;
}

.drawer.is-open .drawer__link:nth-child(1) { animation-delay: .04s; }
.drawer.is-open .drawer__link:nth-child(2) { animation-delay: .08s; }
.drawer.is-open .drawer__link:nth-child(3) { animation-delay: .12s; }
.drawer.is-open .drawer__link:nth-child(4) { animation-delay: .16s; }
.drawer.is-open .drawer__link:nth-child(5) { animation-delay: .2s; }
.drawer.is-open .drawer__link:nth-child(6) { animation-delay: .24s; }

@keyframes drawer-in {
  to { opacity: 1; transform: translateY(0); }
}

.drawer__link .icon { width: 1.15rem; height: 1.15rem; color: var(--brand); }
.drawer__link[aria-current] { color: var(--brand); }

.drawer__foot { display: grid; gap: 1rem; margin-top: auto; }

.drawer__contact {
  display: grid;
  gap: .6rem;
  font-size: .95rem;
  color: var(--text-muted);
}

.drawer__contact a {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: var(--text-muted);
}

.drawer__contact a:hover { color: var(--brand); }
.drawer__contact .icon { width: 1.1rem; height: 1.1rem; color: var(--brand); }

/* ==========================================================================
   09. Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink-950);
  isolation: isolate;
}

/* Brilho amarelo + textura de grade */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(48% 55% at 78% 8%, rgba(255, 229, 0, .2), transparent 62%),
    radial-gradient(38% 48% at 8% 92%, rgba(255, 229, 0, .08), transparent 60%),
    linear-gradient(180deg, #0a0c0e 0%, #0b0d10 60%, var(--ink-900) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(85% 75% at 50% 25%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(85% 75% at 50% 25%, #000 25%, transparent 78%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  padding-block: clamp(3.5rem, 9vw, 7rem) clamp(3rem, 7vw, 5.5rem);
}

.hero__grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 64rem) {
  .hero__grid { grid-template-columns: 1.08fr .92fr; }
}

.hero h1 { margin-bottom: 1.35rem; }

.hero__lead { max-width: 34rem; margin-bottom: 2.25rem; }

.hero__actions { margin-bottom: 2.5rem; }

/* Prova social / confiança abaixo do CTA */
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

/* Painel visual do hero */
.hero__panel {
  position: relative;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: linear-gradient(160deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
  border: 1px solid var(--line-strong);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}

.hero__panel::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, var(--brand-line), transparent 45%);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none;
}

.hero__panel img {
  width: 100%;
  border-radius: var(--r-lg);
}

/* Cartão flutuante sobre o painel */
.hero__float {
  position: absolute;
  bottom: -1.25rem;
  left: -1rem;
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .9rem 1.15rem;
  background: rgba(10, 12, 14, .92);
  border: 1px solid var(--brand-line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
}

/* Em telas estreitas o cartão sai da sobreposição e entra no fluxo,
   para não cobrir a imagem. */
@media (max-width: 48rem) {
  .hero__float {
    position: static;
    margin-top: 1rem;
    justify-content: center;
  }
}

.hero__float .icon { width: 1.5rem; height: 1.5rem; color: var(--brand); }

.hero__float-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.2;
}

.hero__float-label { font-size: .78rem; color: var(--text-dim); }

/* Cabeçalho das páginas internas */
.page-head {
  position: relative;
  padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(2rem, 4vw, 3rem);
  background: var(--ink-950);
  overflow: hidden;
}

.page-head::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(55% 90% at 85% 0%, rgba(255, 229, 0, .13), transparent 62%),
    linear-gradient(180deg, #0a0c0e, var(--ink-900));
}

.page-head__inner { position: relative; max-width: 52rem; }

.page-head .breadcrumb { margin-bottom: 1.5rem; }

.page-head h1 { margin-bottom: 1.1rem; }

/* ==========================================================================
   10. Seções da home
   ========================================================================== */

/* Faixa de números */
.stats {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
}

/* Grade de soluções: o primeiro item ocupa o dobro em telas largas */
.solutions {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17.5rem), 1fr));
}

@media (min-width: 64rem) {
  .solutions { grid-template-columns: repeat(6, 1fr); }
  .solutions > * { grid-column: span 2; }
  .solutions > *:nth-child(1) { grid-column: span 3; }
  .solutions > *:nth-child(2) { grid-column: span 3; }
}

/* Cartão de solução: dois pontos de destaque abaixo do texto */
.card__points {
  display: grid;
  gap: .55rem;
  margin-top: 1.15rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}

.card__points li {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-size: .85rem;
  line-height: 1.5;
  color: var(--text-dim);
}

.card__points .icon {
  width: 1rem;
  height: 1rem;
  margin-top: .2rem;
  color: var(--brand);
  flex-shrink: 0;
}

/* Seção "A FastPass" com imagem de ambiente */
.about__media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line-strong);
}

.about__media img { width: 100%; }

/* Foto de produto com fundo transparente (recorte) */
.product-shot {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(2rem, 5vw, 3.5rem) 1.5rem;
  isolation: isolate;
}

/* Brilho suave atrás do produto, sem moldura */
.product-shot::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(48% 42% at 50% 42%, var(--brand-soft), transparent 70%);
}

.product-shot img {
  width: auto;
  max-height: 27rem;
  filter: drop-shadow(0 28px 40px rgba(0, 0, 0, .6));
}

.product-shot figcaption {
  display: flex;
  gap: .6rem;
  align-items: center;
  max-width: 17rem;
  margin-top: 1.75rem;
  padding: .7rem 1.1rem;
  font-size: .85rem;
  color: var(--text-muted);
  text-align: left;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
}

.product-shot figcaption .icon {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--brand);
  flex-shrink: 0;
}

/* Galeria */
.gallery {
  display: grid;
  gap: clamp(.75rem, 1.5vw, 1.15rem);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 15rem), 1fr));
}

.gallery__item {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--ink-800);
  border: 1px solid var(--line);
}

.gallery__item img,
.gallery__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow), opacity var(--t);
}

.gallery__item:hover img,
.gallery__item:hover video { transform: scale(1.05); }

/* Selo de "play" sobre os itens de vídeo */
.gallery__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  color: var(--brand-ink);
  background: var(--brand);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, .6);
  transition: transform var(--t-fast), background var(--t-fast);
  pointer-events: none;
}

.gallery__play svg { width: 1.6rem; height: 1.6rem; margin-left: .12rem; }

.gallery__item--video:hover .gallery__play {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--brand-strong);
}

/* O gradiente de hover não deve cobrir o selo de play */
.gallery__item--video::after { z-index: 1; }

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, .75));
  opacity: 0;
  transition: opacity var(--t);
}

.gallery__item:hover::after { opacity: 1; }

.gallery__caption {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 1rem;
  font-size: .875rem;
  font-weight: 500;
  color: #fff;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--t), transform var(--t);
}

.gallery__item:hover .gallery__caption { opacity: 1; transform: translateY(0); }

.gallery__empty {
  padding: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-lg);
  color: var(--text-muted);
}

/* Visualizador de imagem (lightbox) */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(5, 6, 7, .93);
  backdrop-filter: blur(6px);
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--t), visibility var(--t);
}

.lightbox.is-open { visibility: visible; opacity: 1; }

.lightbox__img,
.lightbox__video {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
}

.lightbox__video {
  width: min(100%, 68rem);
  background: #000;
}

.lightbox__img[hidden],
.lightbox__video[hidden] { display: none; }

.lightbox__caption {
  margin-top: 1rem;
  text-align: center;
  font-size: .925rem;
  color: var(--text-muted);
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition: background var(--t-fast), border-color var(--t-fast);
}

.lightbox__close:hover,
.lightbox__nav:hover { background: var(--brand); color: var(--brand-ink); border-color: var(--brand); }

.lightbox__close { top: 1.25rem; right: 1.25rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 1.25rem; }
.lightbox__nav--next { right: 1.25rem; }

/* A seta "anterior" reaproveita o chevron, girado */
.lightbox__nav--prev .icon { transform: rotate(180deg); }

.lightbox__close .icon,
.lightbox__nav .icon { width: 1.35rem; height: 1.35rem; }

/* ==========================================================================
   11. Páginas internas
   ========================================================================== */

/* Layout com conteúdo + coluna lateral */
.with-aside {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

@media (min-width: 64rem) {
  .with-aside { grid-template-columns: minmax(0, 1fr) 20rem; }
}

.aside { display: grid; gap: 1.25rem; }

@media (min-width: 64rem) {
  .aside { position: sticky; top: 6.5rem; }
}

.aside__card {
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .015));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}

.aside__title {
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.aside__list { display: grid; gap: .15rem; }

.aside__list a {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .65rem .75rem;
  font-size: .925rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--r-sm);
  transition: background var(--t-fast), color var(--t-fast);
}

.aside__list a:hover { background: rgba(255, 255, 255, .05); color: #fff; }

.aside__list a[aria-current] {
  color: var(--brand);
  background: var(--brand-soft);
}

.aside__list .icon { width: 1.15rem; height: 1.15rem; flex-shrink: 0; }

/* Bloco de contato na coluna lateral */
.contact-list { display: grid; gap: 1rem; }

.contact-list__item {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  font-size: .925rem;
}

.contact-list__item .icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: .15rem;
  color: var(--brand);
  flex-shrink: 0;
}

.contact-list__label {
  display: block;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: .1rem;
}

.contact-list a { color: var(--text); }
.contact-list a:hover { color: var(--brand); }

/* Recursos da solução em duas colunas */
.features {
  display: grid;
  gap: .85rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr));
}

.feature {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  padding: 1rem 1.15rem;
  font-size: .925rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, .028);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}

.feature .icon {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: .18rem;
  color: var(--brand);
  flex-shrink: 0;
}

/* Destaques da solução */
.highlights {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-block: 2rem;
  background: var(--brand-softer);
  border: 1px solid var(--brand-line);
  border-radius: var(--r-lg);
}

.highlight {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  font-size: .975rem;
  font-weight: 500;
  color: var(--text);
}

.highlight .icon {
  width: 1.3rem;
  height: 1.3rem;
  margin-top: .1rem;
  color: var(--brand);
  flex-shrink: 0;
}

/* Navegação entre soluções (anterior / próxima) */
.pager {
  display: grid;
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

@media (min-width: 40rem) {
  .pager { grid-template-columns: 1fr 1fr; }
}

.pager__item {
  display: grid;
  gap: .3rem;
  padding: 1.15rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color var(--t-fast), background var(--t-fast);
}

.pager__item:hover { border-color: var(--brand-line); background: var(--brand-softer); }

.pager__item--next { text-align: right; }

.pager__label {
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.pager__title { font-family: var(--font-display); font-weight: 600; color: var(--text); }

/* Página de erro / obrigado */
.centered-page {
  display: grid;
  place-items: center;
  min-height: 60vh;
  padding-block: var(--section-y);
  text-align: center;
}

.centered-page__inner { max-width: 34rem; }

.centered-page__code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 14vw, 8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--brand);
  opacity: .22;
  margin-bottom: -1rem;
}

.centered-page__icon {
  display: grid;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1.75rem;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid var(--brand-line);
  border-radius: 50%;
}

.centered-page__icon .icon { width: 2.25rem; height: 2.25rem; }

/* ==========================================================================
   12. Rodapé
   ========================================================================== */
.footer {
  padding-top: clamp(3rem, 6vw, 4.5rem);
  background: var(--ink-950);
  border-top: 1px solid var(--line);
  font-size: .925rem;
}

.footer__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

@media (min-width: 48rem) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (min-width: 68rem) {
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }
}

.footer__brand img { height: 3.6rem; width: auto; margin-bottom: 1.25rem; }

.footer__about {
  max-width: 24rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.footer__title {
  margin-bottom: 1.15rem;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
}

.footer__list { display: grid; gap: .65rem; }

.footer__list a { color: var(--text-muted); }
.footer__list a:hover { color: var(--brand); }

.footer__contact { display: grid; gap: .85rem; }

.footer__contact a,
.footer__contact span {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  color: var(--text-muted);
}

.footer__contact a:hover { color: var(--brand); }

.footer__contact .icon {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: .22rem;
  color: var(--brand);
  flex-shrink: 0;
}

/* Redes sociais */
.social { display: flex; gap: .6rem; }

.social a {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: all var(--t-fast);
}

.social a:hover {
  color: var(--brand-ink);
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-2px);
}

.social .icon { width: 1.15rem; height: 1.15rem; }

/* Barra inferior */
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: .85rem;
  color: var(--text-dim);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.25rem;
}

.footer__legal a { color: var(--text-dim); }
.footer__legal a:hover { color: var(--brand); }

.footer__partner {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--text-dim);
}

.footer__partner img { height: 1.35rem; width: auto; opacity: .75; transition: opacity var(--t-fast); }
.footer__partner:hover img { opacity: 1; }

/* ==========================================================================
   13. Elementos flutuantes
   ========================================================================== */
.float-stack {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 90;
  display: grid;
  gap: .75rem;
  justify-items: center;
}

/* WhatsApp */
.wa {
  position: relative;
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  color: #fff;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 10px 28px -8px rgba(37, 211, 102, .6);
  transition: transform var(--t-fast);
}

.wa:hover { transform: scale(1.06); color: #fff; }

.wa .icon { width: 1.85rem; height: 1.85rem; }

.wa::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: wa-pulse 2.2s ease-out infinite;
  pointer-events: none;
}

@keyframes wa-pulse {
  0%   { transform: scale(1);    opacity: .7; }
  100% { transform: scale(1.65); opacity: 0; }
}

/* Voltar ao topo */
.to-top {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--text);
  background: rgba(20, 24, 29, .9);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--t);
  backdrop-filter: blur(8px);
}

.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

.to-top:hover { color: var(--brand-ink); background: var(--brand); border-color: var(--brand); }

.to-top .icon { width: 1.2rem; height: 1.2rem; }

/* Aviso de cookies */
.cookie {
  position: fixed;
  left: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 95;
  max-width: 27rem;
  padding: 1.35rem 1.5rem;
  background: rgba(15, 18, 22, .97);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
  transform: translateY(130%);
  transition: transform var(--t-slow);
}

.cookie.is-visible { transform: translateY(0); }

.cookie__text {
  font-size: .875rem;
  color: var(--text-muted);
  margin-bottom: 1.15rem;
}

.cookie__text a { text-decoration: underline; text-underline-offset: 2px; }

.cookie__actions { display: flex; flex-wrap: wrap; gap: .6rem; }

@media (max-width: 30rem) {
  .cookie { left: 1rem; right: 1rem; max-width: none; bottom: 6rem; }
}

/* ==========================================================================
   14. Animação de entrada
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}

[data-reveal].is-revealed { opacity: 1; transform: none; }

[data-reveal-delay='1'] { transition-delay: .07s; }
[data-reveal-delay='2'] { transition-delay: .14s; }
[data-reveal-delay='3'] { transition-delay: .21s; }
[data-reveal-delay='4'] { transition-delay: .28s; }
[data-reveal-delay='5'] { transition-delay: .35s; }

/* Respeita quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  [data-reveal] { opacity: 1; transform: none; }
}

/* ==========================================================================
   15. Utilitários
   ========================================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.mx-auto    { margin-inline: auto; }
.mt-0       { margin-top: 0; }
.mt-1       { margin-top: .5rem; }
.mt-2       { margin-top: 1rem; }
.mt-3       { margin-top: 1.5rem; }
.mt-4       { margin-top: 2rem; }
.mt-6       { margin-top: 3rem; }
.mb-2       { margin-bottom: 1rem; }
.mb-3       { margin-bottom: 1.5rem; }
.mb-4       { margin-bottom: 2rem; }

.stack      { display: grid; gap: 1rem; }
.stack-lg   { display: grid; gap: 1.75rem; }

.max-42     { max-width: 42rem; }
.max-56     { max-width: 56rem; }

.icon       { width: 1.25rem; height: 1.25rem; }

/* Impressão */
@media print {
  .header, .footer, .float-stack, .cookie, .drawer,
  .cta-band, .lightbox { display: none !important; }

  body { background: #fff; color: #000; }

  .doc { box-shadow: none; padding: 0; }

  a { color: #000; text-decoration: underline; }
}
