/* ============================================================
   TRIBET CASH POKER · sections.css
   Estilos por bloco, na mesma ordem do HTML.
   ============================================================ */

/* ============================================================
   1 · HEADER FIXO
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  transition: background-color var(--t), border-color var(--t), backdrop-filter var(--t);
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: rgba(15, 11, 11, .88);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
}

/* --- Marca --- */
.brand { display: flex; align-items: center; gap: .7rem; margin-right: auto; }
.brand__chip { width: 38px; height: 38px; flex: none; filter: drop-shadow(0 4px 10px rgba(0,0,0,.6)); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--cream);
}
.brand__sub {
  font-size: .625rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

/* --- Navegação --- */
.nav__list { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2rem); }
.nav__list a {
  position: relative;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--text-soft);
  padding-block: .35rem;
  transition: color var(--t-fast);
}
.nav__list a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.nav__list a:hover { color: var(--cream); }
.nav__list a:hover::after,
.nav__list a.is-active::after { transform: scaleX(1); }
.nav__list a.is-active { color: var(--cream); }

.site-header__actions { display: flex; align-items: center; gap: .6rem; }

.nav-toggle {
  display: none;
  width: 48px; height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--cream);
}
.nav-toggle .ico--close { display: none; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }

  .nav {
    position: fixed;
    top: 72px; left: 0; right: 0;
    padding: .5rem var(--gut) 1.5rem;
    background: rgba(15, 11, 11, .97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--t), transform var(--t), visibility 0s linear var(--t);
  }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list a {
    display: block;
    padding: 1rem .25rem;
    font-size: 1.0625rem;
    border-bottom: 1px solid var(--line-soft);
  }
  .nav__list a::after { display: none; }

  body.nav-open .nav {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition-delay: 0s;
  }
  body.nav-open .nav-toggle .ico--menu { display: none; }
  body.nav-open .nav-toggle .ico--close { display: block; }
}

@media (max-width: 420px) {
  .brand__name { font-size: 1.15rem; }
  /* No mobile o WhatsApp vira ícone, mas o texto permanece no DOM para
     leitores de tela (ver .btn__label--hidden em base.css). */
  .btn--sm { --btn-px: .85rem; min-width: 48px; position: relative; }
  .btn--sm .btn__label {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }
}

/* ============================================================
   2 · HERO
   ============================================================ */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 92vh;
  min-height: min(92svh, 900px);
  padding-top: 120px;
  padding-bottom: clamp(3rem, 8vw, 5.5rem);
  overflow: hidden;
}

.hero__media { position: absolute; inset: 0; z-index: 0; }
/* position/z-index são necessários: o ::before abaixo é posicionado e, sem isto,
   pintaria por cima da foto (elemento estático) e a deixaria invisível. */
.hero__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s var(--ease);
}
.hero__media.is-loaded img { opacity: 1; }

/* Fundo enquanto a foto real não entra (placeholder escuro identificado) */
.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(90% 70% at 20% 0%, rgba(110, 16, 35, .55), transparent 62%),
    radial-gradient(70% 60% at 90% 30%, rgba(74, 12, 24, .5), transparent 65%),
    linear-gradient(180deg, #16100F, #0F0B0B);
}
.hero__media::after {
  content: attr(data-ph);
  position: absolute;
  right: var(--gut); top: 96px;
  font-family: var(--font-display);
  font-size: .6875rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(201, 162, 75, .45);
  border: 1px dashed rgba(201, 162, 75, .3);
  border-radius: var(--r-sm);
  padding: .5rem .8rem;
}
.hero__media.is-loaded::after { display: none; }
/* No mobile o rótulo do placeholder sairia por cima do texto do hero */
@media (max-width: 820px) { .hero__media::after { display: none; } }

/* Overlay escuro 60–70% para garantir contraste do texto */
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15, 11, 11, .38) 0%, rgba(15, 11, 11, .28) 40%, rgba(15, 11, 11, .88) 100%),
    linear-gradient(90deg, rgba(15, 11, 11, .52) 0%, rgba(15, 11, 11, 0) 70%);
}

.hero__inner { position: relative; z-index: 2; }
.hero__inner > .eyebrow,
.hero__inner > .live { display: flex; width: fit-content; max-width: 100%; }

.hero__title {
  margin-top: 1.4rem;
  font-size: clamp(2.4rem, 8.2vw, 5.25rem);
  line-height: .97;
  max-width: 17ch;
  text-wrap: balance;
}
.hero__title em {
  display: block;
  color: var(--gold);
  font-weight: 500;
}

.hero__sub {
  margin-top: 1.5rem;
  max-width: 52ch;
  font-size: clamp(1.0625rem, 2.1vw, 1.1875rem);
  color: var(--text-soft);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2.1rem;
}
.hero__cta .btn { flex: 1 1 auto; }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.75rem;
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  font-size: .875rem;
  color: var(--text-dim);
}
.hero__trust li { display: flex; align-items: center; gap: .55rem; }
.hero__trust .ico { width: 17px; height: 17px; color: var(--gold); }

@media (min-width: 720px) {
  .hero__cta .btn { flex: 0 0 auto; }
}

/* ============================================================
   3 · PROVA DE MOVIMENTO
   ============================================================ */
/* Bloco de foto com placeholder escuro identificado.
   Quando a imagem real carregar, o JS marca .is-loaded e o rótulo some. */
.shot {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  border: 1px solid var(--line-soft);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(110, 16, 35, .38), transparent 60%),
    linear-gradient(180deg, #1A1313, #100C0C);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}
.shot::after {
  content: attr(data-ph);
  position: absolute;
  inset: 10px;
  display: grid;
  place-items: center;
  padding: 1rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: .6875rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(201, 162, 75, .5);
  border: 1px dashed rgba(201, 162, 75, .22);
  border-radius: var(--r-sm);
}
.shot img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.shot.is-loaded img { opacity: 1; }
.shot.is-loaded::after { display: none; }
.shot:hover img { transform: scale(1.03); }

.shot figcaption {
  position: absolute;
  z-index: 3;
  left: 0; right: 0; bottom: 0;
  padding: 2.5rem 1rem .9rem;
  font-size: .8125rem;
  letter-spacing: .02em;
  color: var(--cream);
  background: linear-gradient(180deg, transparent, rgba(10, 7, 7, .92));
}

.proof-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
/* Todas as fotos são 16:9 — mantenha essa proporção ao trocar os arquivos */
.proof-grid .shot { aspect-ratio: 16 / 9; }

@media (min-width: 860px) {
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .shot--wide { grid-column: span 2; }   /* a foto do dealer ocupa a linha toda */
}

/* --- Faixa de números --- */
.stats {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: clamp(2rem, 4vw, 3rem);
  background: var(--line-soft);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.stat {
  background: var(--bg-2);
  padding: 1.5rem 1.25rem;
  text-align: center;
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.05rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .01em;
}
.stat__label {
  display: block;
  margin-top: .4rem;
  font-size: .8125rem;
  color: var(--text-dim);
  line-height: 1.4;
}
@media (min-width: 780px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   4 · PROGRAMAÇÃO & STAKES
   ============================================================ */
.schedule {
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--surface);
}

.schedule__table th,
.schedule__table td { text-align: left; }

/* --- Desktop: tabela --- */
@media (min-width: 761px) {
  .schedule__table thead th {
    font-family: var(--font-display);
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 1rem 1.25rem;
    background: rgba(110, 16, 35, .18);
    border-bottom: 1px solid var(--line);
  }
  .schedule__table tbody tr { border-bottom: 1px solid var(--line-soft); transition: background-color var(--t-fast); }
  .schedule__table tbody tr:last-child { border-bottom: 0; }
  .schedule__table tbody tr:hover { background: rgba(241, 233, 220, .04); }
  .schedule__table tbody th,
  .schedule__table tbody td { padding: 1.05rem 1.25rem; font-size: .9375rem; }
  .schedule__table tbody th {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--cream);
    white-space: nowrap;
  }
  .schedule__table tbody td { color: var(--text-soft); }
  .schedule__table tbody tr.is-peak { background: rgba(110, 16, 35, .16); }
  .schedule__table tbody tr.is-peak th { box-shadow: inset 3px 0 0 var(--gold); }
}

/* --- Mobile: cards empilhados (nunca scroll horizontal) --- */
@media (max-width: 760px) {
  .schedule { border: 0; background: none; border-radius: 0; }
  .schedule__table,
  .schedule__table tbody,
  .schedule__table tr,
  .schedule__table th,
  .schedule__table td { display: block; }
  .schedule__table thead { display: none; }

  .schedule__table tr {
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: var(--bg-3);
    padding: 1.1rem 1.15rem;
    margin-bottom: .85rem;
  }
  .schedule__table tr.is-peak {
    background: linear-gradient(180deg, rgba(110, 16, 35, .3), rgba(26, 20, 20, .9));
    border-color: rgba(201, 162, 75, .4);
  }
  .schedule__table tbody th {
    font-family: var(--font-display);
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding-bottom: .8rem;
    margin-bottom: .55rem;
    border-bottom: 1px solid var(--line);
  }
  .schedule__table td {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: .4rem 0;
    font-size: .9375rem;
    color: var(--cream);
  }
  .schedule__table td::before {
    content: attr(data-label);
    flex: none;
    font-family: var(--font-display);
    font-size: .6875rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
  }
}

.tag {
  display: inline-block;
  margin-left: .5rem;
  padding: .2rem .5rem;
  border: 1px solid rgba(201, 162, 75, .45);
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: .625rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  vertical-align: middle;
}

/* ============================================================
   5 · COMO FUNCIONA
   ============================================================ */
.steps {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 1.75rem 1.5rem 1.6rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  background: var(--bg-3);
  overflow: hidden;
  transition: border-color var(--t), transform var(--t);
}
.step:hover { border-color: var(--line); transform: translateY(-3px); }
.step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--wine), var(--gold));
  opacity: .5;
}
.step__num {
  position: absolute;
  top: .5rem; right: 1rem;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(241, 233, 220, .05);
}
.step h3 { margin: 1rem 0 .55rem; color: var(--cream); }
.step p { color: var(--text-soft); font-size: .9375rem; }

@media (min-width: 640px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .steps { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   6 · ESTRUTURA & AMBIENTE
   ============================================================ */
.split { display: grid; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; }
@media (min-width: 940px) { .split { grid-template-columns: 1fr 1fr; } }

.checks { margin-top: 1.75rem; display: grid; gap: .85rem; }
.checks li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9375rem;
  color: var(--text-soft);
}
.checks .ico { width: 18px; height: 18px; margin-top: 4px; color: var(--gold); }

/* Foto única da seção estrutura */
.shot--feature { aspect-ratio: 16 / 9; box-shadow: var(--shadow-lg); }

/* ============================================================
   7 · POR QUE O TRIBET
   ============================================================ */
.features {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
.feature {
  padding: 1.85rem 1.6rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  background: linear-gradient(180deg, rgba(241, 233, 220, .04), rgba(241, 233, 220, .012));
  transition: border-color var(--t), transform var(--t), background-color var(--t);
}
.feature:hover { border-color: var(--line); transform: translateY(-3px); }
.feature h3 { margin: 1.05rem 0 .5rem; color: var(--cream); }
.feature p { color: var(--text-soft); font-size: .9375rem; }

@media (min-width: 660px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .features { grid-template-columns: repeat(3, 1fr); } }

.quotes {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  margin-top: 14px;
}
.quote {
  padding: 1.75rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(110, 16, 35, .14);
}
.quote blockquote {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--cream);
  text-wrap: pretty;
}
.quote figcaption {
  margin-top: 1.1rem;
  padding-top: .9rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
@media (min-width: 860px) { .quotes { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   8 · LOCALIZAÇÃO
   ============================================================ */
.local { display: grid; gap: clamp(1.75rem, 4vw, 2.5rem); }
@media (min-width: 940px) { .local { grid-template-columns: 1.15fr .85fr; align-items: start; } }

.map {
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--bg-3);
  box-shadow: var(--shadow);
}
.map iframe {
  width: 100%;
  aspect-ratio: 16 / 11;
  border: 0;
  filter: grayscale(.85) invert(.9) contrast(.86) hue-rotate(175deg) brightness(.92);
}

/* Fachada exibida no lugar do mapa até a pessoa clicar */
.map__facade {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  width: 100%;
  aspect-ratio: 16 / 11;
  padding: 1.5rem;
  text-align: center;
  color: var(--cream);
  background:
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(201, 162, 75, .07) 38px 39px),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(201, 162, 75, .07) 38px 39px),
    radial-gradient(120% 90% at 50% 0%, rgba(110, 16, 35, .34), transparent 62%),
    linear-gradient(180deg, #1A1313, #100C0C);
  transition: background-color var(--t-fast);
}
.map__facade:hover { background-color: rgba(201, 162, 75, .05); }
.map__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.map__note { font-size: .8125rem; color: var(--text-dim); max-width: 30ch; }

.local__info { display: grid; gap: 1px; background: var(--line-soft); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.local__info li {
  display: flex;
  gap: 1rem;
  padding: 1.35rem 1.4rem;
  background: var(--bg-2);
}
.local__info h3 { font-size: 1rem; color: var(--cream); margin-bottom: .3rem; }
.local__info p { font-size: .9375rem; color: var(--text-soft); }

/* ============================================================
   9 · FAQ
   ============================================================ */
.faq { border-top: 1px solid var(--line-soft); }
.faq__item { border-bottom: 1px solid var(--line-soft); }

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  min-height: 48px;
  padding: 1.35rem .25rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.0625rem, 2.4vw, 1.2rem);
  font-weight: 500;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color var(--t-fast);
}
.faq__q:hover { color: var(--gold); }
.faq__chev { color: var(--gold); transition: transform var(--t); }
.faq__item[data-open] .faq__chev { transform: rotate(180deg); }

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .34s var(--ease);
}
.faq__a > p {
  overflow: hidden;
  visibility: hidden;
  color: var(--text-soft);
  font-size: 1rem;
  padding-bottom: 1.5rem;
  transition: visibility 0s linear .34s;
}
.faq__item[data-open] .faq__a { grid-template-rows: 1fr; }
.faq__item[data-open] .faq__a > p { visibility: visible; transition-delay: 0s; }

/* Sem JS o painel continua recolhido pelo atributo [hidden] */
.faq__a[hidden] { display: none; }

.legal-line {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-top: 2rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: rgba(110, 16, 35, .16);
  font-size: .9375rem;
  color: var(--text-soft);
}
.legal-line .ico { color: var(--gold); }

/* ============================================================
   10 · CTA FINAL
   ============================================================ */
.final-cta {
  position: relative;
  padding-block: clamp(4rem, 9vw, 6.5rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(110, 16, 35, .85), transparent 70%),
    linear-gradient(180deg, var(--wine-deep), #24070E 70%, var(--bg));
  text-align: center;
  overflow: hidden;
}
.final-cta__inner { position: relative; z-index: 1; }
.final-cta__title {
  margin-top: 1rem;
  font-size: clamp(2.4rem, 8vw, 4.5rem);
  color: var(--cream);
  text-wrap: balance;
}
.final-cta__sub {
  margin: 1rem auto 2.25rem;
  max-width: 46ch;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(241, 233, 220, .82);
}
.final-cta__note {
  margin-top: 1.25rem;
  font-size: .8125rem;
  letter-spacing: .04em;
  color: rgba(241, 233, 220, .5);
}

/* ============================================================
   11 · RODAPÉ
   ============================================================ */
.site-footer { background: var(--bg); padding-top: clamp(3rem, 6vw, 4.5rem); }

.site-footer__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  grid-template-columns: 1fr;
}
@media (min-width: 700px)  { .site-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .site-footer__grid { grid-template-columns: 1.4fr .8fr .9fr 1.1fr; } }

.site-footer__brand img {
  width: 132px;
  height: auto;
  border-radius: var(--r-sm);
  border: 1px solid var(--line-soft);
}
.site-footer__brand p {
  margin-top: 1.1rem;
  max-width: 34ch;
  font-size: .9375rem;
  color: var(--text-dim);
}

.site-footer__col h3 {
  font-size: .75rem;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.site-footer__col ul { display: grid; gap: .7rem; }
.site-footer__col a {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .9375rem;
  color: var(--text-soft);
  transition: color var(--t-fast);
}
.site-footer__col a:hover { color: var(--gold); }
.site-footer__col .ico { width: 17px; height: 17px; }

.site-footer__legal {
  font-size: .8125rem;
  line-height: 1.6;
  color: var(--text-dim);
  margin-bottom: .9rem;
}
.age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  margin-right: .6rem;
  float: left;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: .8125rem;
  font-weight: 600;
  color: var(--gold);
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem 1.5rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-block: 1.5rem;
  padding-bottom: 6.5rem;              /* espaço para o botão flutuante */
  border-top: 1px solid var(--line);
  font-size: .8125rem;
  color: var(--text-dim);
}
@media (min-width: 700px) { .site-footer__bottom { padding-bottom: 1.5rem; } }

/* ============================================================
   BOTÃO WHATSAPP FLUTUANTE
   ============================================================ */
.fab {
  position: fixed;
  z-index: 95;
  right: clamp(1rem, 4vw, 1.75rem);
  bottom: clamp(1rem, 4vw, 1.75rem);
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  min-height: 56px;
  min-width: 56px;
  padding: .9rem 1.25rem;
  border-radius: var(--r-pill);
  background: var(--wa);
  color: #06210F;
  font-family: var(--font-display);
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 16px 34px -14px rgba(37, 211, 102, .8), var(--shadow);
  transition: transform var(--t), background-color var(--t-fast);
}
.fab:hover { background: var(--wa-dark); transform: translateY(-3px); }
.fab .ico { width: 26px; height: 26px; stroke: none; fill: currentColor; }

@media (max-width: 560px) {
  .fab { padding: 0; width: 58px; height: 58px; justify-content: center; }
  .fab__label { display: none; }
}
