/* ============================================================
   styles.css — SS.Concept Landing Page (Cliente de Manutenção)
   Seção 1 — HERO
   Fontes aproximadas (Google Fonts):
     Cormorant Garamond ≈ Ornely Demo (títulos serifados)
     Dancing Script     ≈ Country Club (script de assinatura)
     Helvetica Neue     = corpo/UI (system)
   Paleta da marca:
     Verde profundo  #0b2315
     Bordô           #410c14
     Off-white       #f7f0e8
     Dourado         #c9a24b (acento)
============================================================ */

/* ---------- RESET (uma única vez no arquivo unificado) ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* Impede que blocos full-bleed (100vw) gerem rolagem horizontal
   quando a barra de rolagem vertical está presente no desktop. */
html, body { max-width: 100%; overflow-x: hidden; }

:root {
  --verde: #0b2315;
  --bordo: #410c14;
  --off: #f7f0e8;
  --dourado: #c9a24b;
  --dourado-claro: #e2c682;
  --fonte-titulo: "Cormorant Garamond", Georgia, serif;
  --fonte-script: "Dancing Script", cursive;
  --fonte-corpo: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* ============================================================
   SEÇÃO 1 — HERO
============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  background-color: var(--verde);
  color: var(--off);
  font-family: var(--fonte-corpo);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("imagens/hero-fundo-mobile.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  /* trava a altura do fundo no maior viewport possível, então
     esconder/mostrar a barra do navegador não recalcula a imagem */
  height: 100lvh;
  min-height: 100%;
}

/* Container central: no mobile a coluna de texto fica à esquerda,
   sobre a metade esquerda do fundo (o retrato está à direita). */
.hero__container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  min-height: 100svh;
  padding: calc(var(--header-h) + 0.75rem) clamp(1.5rem, 6vw, 3rem) clamp(1.5rem, 6vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* ---------- Marca / logo ---------- */
.hero__brand {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.6rem;
  align-items: center;
  margin-bottom: clamp(2rem, 9vw, 3.5rem);
}
.hero__brand-mark {
  grid-row: 1 / 3;
  width: clamp(34px, 10vw, 46px);
  aspect-ratio: 1;
  /* inserir símbolo da rosa/duplo-S — placeholder de contorno dourado */
  border: 1.5px solid var(--dourado);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-2deg);
  opacity: 0.9;
}
.hero__brand-name {
  align-self: end;
  font-family: var(--fonte-titulo);
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: clamp(1.4rem, 5.5vw, 1.9rem);
  color: var(--dourado);
  line-height: 1;
}
.hero__brand-tag {
  grid-column: 2;
  font-size: clamp(0.7rem, 2.6vw, 0.85rem);
  letter-spacing: 0.14em;
  color: var(--dourado);
  opacity: 0.85;
}

/* ---------- Conteúdo textual ---------- */
.hero__content {
  max-width: 60%;
}

.hero__title {
  font-family: var(--fonte-titulo);
  font-weight: 500;
  color: var(--dourado);
  font-size: clamp(2.2rem, 10vw, 5rem);
  line-height: 1;
  letter-spacing: 0.005em;
  margin-bottom: clamp(0.8rem, 2.5vw, 1.75rem);
  text-shadow: 0 1px 12px rgba(0,0,0,0.35);
}

.hero__subtitle {
  font-family: var(--fonte-corpo);
  font-weight: 400;
  color: var(--off);
  font-size: clamp(0.95rem, 3.8vw, 1.4rem);
  line-height: 1.3;
  margin-bottom: clamp(1.1rem, 4vw, 2rem);
}

.hero__script {
  font-family: var(--fonte-script);
  font-weight: 600;
  color: var(--dourado);
  font-size: clamp(1.3rem, 5.5vw, 2rem);
  line-height: 1.2;
  margin-bottom: clamp(1.3rem, 4.5vw, 2.5rem);
  padding-bottom: 0.4rem;
  width: fit-content;
  text-decoration: underline;
  text-decoration-color: var(--dourado);
  text-decoration-thickness: 0.5px;
  text-underline-offset: 0.25em;
}

/* ---------- Botão CTA ---------- */
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: clamp(0.85rem, 3.5vw, 1.05rem) clamp(1.5rem, 5vw, 2rem);
  border: 1.5px solid var(--dourado);
  border-radius: 999px;
  background: transparent;
  color: var(--dourado);
  font-family: var(--fonte-corpo);
  font-size: clamp(1rem, 4vw, 1.2rem);
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background-color .25s ease, color .25s ease;
  cursor: pointer;
}
.hero__cta:hover,
.hero__cta:focus-visible {
  background: var(--dourado);
  color: var(--verde);
}
.hero__cta-icon {
  width: 1.35em;
  height: 1.35em;
  fill: currentColor;
  flex-shrink: 0;
}

/* ============================================================
   DESKTOP (inferido — sem imagem completa de referência)
   Fundo troca para a versão horizontal; retrato fica à direita,
   texto num container central alinhado à esquerda.
============================================================ */
@media (min-width: 1024px) {
  .hero {
    background-image: url("imagens/hero-fundo-desktop.png");
  }
  .hero__container {
    max-width: 100%;
    padding-left: clamp(4rem, 11vw, 12rem);
    padding-right: clamp(2rem, 5vw, 4rem);
    padding-block: clamp(3rem, 7vh, 5rem);
    justify-content: center;
  }
  .hero__content {
    max-width: 600px;
  }
  .hero__title {
    font-size: clamp(3.5rem, 5vw, 5.5rem);
    max-width: 11ch;
  }
  .hero__subtitle {
    font-size: clamp(1.15rem, 1.6vw, 1.45rem);
    max-width: 34ch;
  }
  .hero__subtitle br { display: none; }
  .hero__script {
    font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  }
  .hero__script br { display: none; }
}

/* Telas muito largas: segura a legibilidade do retrato à direita */
@media (min-width: 1600px) {
  .hero__content { max-width: 600px; }
  .hero__container { padding-left: clamp(8rem, 14vw, 16rem); }
}

/* ============================================================
   SEÇÃO 2 — CONEXÃO / DOR
   Mobile: texto na metade superior (fundo verde liso); o espelho
   com o retrato vive na base da própria imagem de fundo.
   Sem CTA. Ícones de check recriados em CSS/SVG.
============================================================ */
.conexao {
  position: relative;
  width: 100%;
  padding-top: 1px;
  background-image: url("imagens/conexao-fundo-mobile.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-color: var(--verde);
  color: var(--off);
  font-family: var(--fonte-corpo);
}

.conexao__separador {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 3vw, 1.25rem);
  width: min(82%, 560px);
  margin: 0 auto clamp(2.5rem, 8vw, 4rem);
  padding: 0;
}
.conexao__separador-linha {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dourado) 60%);
  opacity: 0.7;
}
.conexao__separador-linha:last-child {
  background: linear-gradient(90deg, var(--dourado) 40%, transparent);
}
.conexao__separador-losango {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  background: var(--dourado);
  transform: rotate(45deg);
  opacity: 0.9;
}

.conexao__container {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(2.5rem, 8vw, 4rem) clamp(1.5rem, 6vw, 2.5rem) clamp(3rem, 10vw, 5rem);
  /* No mobile o conteúdo ocupa a faixa de cima; a imagem já reserva a base
     para o espelho, então empurramos pouco o texto para baixo. */
}

.conexao__eyebrow {
  text-align: center;
  color: var(--dourado);
  font-size: clamp(0.72rem, 3vw, 0.9rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.9rem;
}

.conexao__diamond {
  display: block;
  width: 12px;
  height: 12px;
  margin: 0 auto clamp(1rem, 3.5vw, 1.5rem);
  background: var(--dourado);
  transform: rotate(45deg);
  opacity: 0.9;
}

.conexao__title {
  text-align: center;
  font-family: var(--fonte-titulo);
  font-weight: 500;
  color: var(--off);
  font-size: clamp(1.8rem, 8vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: 0.005em;
  margin-bottom: clamp(1.25rem, 4vw, 1.75rem);
}

/* Divisória dourada com losango no centro */
.conexao__rule {
  display: block;
  position: relative;
  width: min(80%, 520px);
  height: 1px;
  margin: 0 auto clamp(1.75rem, 6vw, 2.75rem);
  background: linear-gradient(90deg, transparent, var(--dourado) 20%, var(--dourado) 80%, transparent);
  opacity: 0.75;
}
.conexao__rule::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--dourado);
  transform: translate(-50%, -50%) rotate(45deg);
}

/* Checklist */
.conexao__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(1.1rem, 4vw, 1.5rem);
  max-width: 640px;
  margin-inline: auto;
}
.conexao__item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: clamp(0.9rem, 3.5vw, 1.25rem);
}

/* Ícone de check em círculo dourado (SVG via mask-free CSS) */
.conexao__check {
  position: relative;
  width: clamp(30px, 8vw, 38px);
  height: clamp(30px, 8vw, 38px);
  border: 1.5px solid var(--dourado);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.1em;
}
.conexao__check::after {
  content: "";
  position: absolute;
  top: 46%;
  left: 50%;
  width: 34%;
  height: 60%;
  border-right: 2px solid var(--dourado);
  border-bottom: 2px solid var(--dourado);
  transform: translate(-50%, -55%) rotate(45deg);
}

.conexao__text {
  color: var(--off);
  font-size: clamp(1rem, 4vw, 1.15rem);
  line-height: 1.4;
  opacity: 0.95;
}

/* ---------- DESKTOP (inferido) ----------
   O fundo desktop tem o espelho ao centro/baixo. Passamos o texto
   para uma coluna à esquerda para não cobrir o retrato central. */
@media (min-width: 1024px) {
  .conexao {
    background-image: url("imagens/conexao-fundo-desktop.png");
    background-size: 100% 108%;
    background-position: center bottom;
    display: flex;
    align-items: center;
  }
  .conexao__container {
    max-width: 1200px;
    padding-block: clamp(3rem, 8vh, 5rem);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .conexao__title,
  .conexao__rule { text-align: center; }

  .conexao__title,
  .conexao__rule,
  .conexao__list {
    max-width: 720px;
    margin-inline: auto;
  }
  .conexao__title {
    font-size: clamp(2.4rem, 3.6vw, 3.4rem);
  }
  .conexao__rule {
    background: linear-gradient(90deg, transparent, var(--dourado) 20%, var(--dourado) 80%, transparent);
  }
  .conexao__rule::after { left: 50%; }
}

/* ============================================================
   SEÇÃO 4 — SERVIÇOS DE CABELO · Dobra 1: CORTES
   Fundo de mármore verde. Cabeçalho da seção (título dourado +
   subtítulo off-white) e rótulo "Cortes". Cards em creme com
   foto (placeholder), descrição e preço dourado em destaque.
   Sem molduras ornamentadas.
============================================================ */
.cortes {
  position: relative;
  width: 100%;
  background-color: var(--verde);
  color: var(--off);
  font-family: var(--fonte-corpo);
  padding-block: clamp(3rem, 10vw, 5rem);
}

/* Cada categoria carrega o mesmo mármore verde individualmente,
   cobrindo só a própria altura (sem esticar a seção inteira). */
.cortes__cat {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("imagens/cortes-fundo-mobile.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: clamp(2.5rem, 9vw, 4rem);
}
/* O conteúdo interno volta à largura de leitura da página. */
.cortes__cat > * {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2rem);
}

.cortes__container {
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2rem);
}

/* ---------- Cabeçalho da seção ---------- */
.cortes__intro { text-align: center; margin-bottom: clamp(2rem, 7vw, 3rem); }

.cortes__title {
  font-family: var(--fonte-titulo);
  font-weight: 600;
  color: var(--dourado);
  font-size: clamp(1.9rem, 8vw, 2.9rem);
  line-height: 1.1;
  margin-bottom: clamp(0.9rem, 3vw, 1.25rem);
}

.cortes__divider {
  display: block;
  position: relative;
  width: min(60%, 300px);
  height: 1px;
  margin: 0 auto clamp(0.9rem, 3vw, 1.25rem);
  background: linear-gradient(90deg, transparent, var(--dourado) 25%, var(--dourado) 75%, transparent);
  opacity: 0.7;
}
.cortes__divider::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 8px; height: 8px;
  background: var(--dourado);
  transform: translate(-50%, -50%) rotate(45deg);
}

/* Separador dourado entre a última categoria e o CTA de fecho */
.cortes__divider--fecho {
  width: min(70%, 420px);
  margin-top: clamp(2.5rem, 9vw, 4rem);
  margin-bottom: clamp(2rem, 7vw, 3rem);
  opacity: 0.8;
}

.cortes__subtitle {
  color: var(--off);
  font-size: clamp(0.95rem, 3.8vw, 1.1rem);
  line-height: 1.45;
  max-width: 46ch;
  margin-inline: auto;
  opacity: 0.92;
}

/* ---------- Rótulo da subcategoria ---------- */
.cortes__label {
  font-family: var(--fonte-titulo);
  font-weight: 600;
  color: var(--dourado);
  text-align: center;
  font-size: clamp(2rem, 9vw, 3rem);
  line-height: 1;
  margin-bottom: clamp(1.5rem, 5vw, 2.25rem);
}

/* ---------- Cards ---------- */
.cortes__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.1rem, 4vw, 1.75rem);
}

.cortes-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(0.5rem, 2vw, 0.75rem);
  background: var(--off);
  color: var(--verde);
  border-radius: 18px;
  padding: clamp(1.4rem, 5vw, 1.9rem) clamp(1.25rem, 4vw, 1.75rem);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.cortes-card__photo {
  display: none;
}
/* placeholders específicos por card — troque os arquivos em imagens/
   Nomenclatura: imagens/[subcategoria]-card-N.png
   Cortes: cortes-card-1..3
   Escovas: escovas-card-1..5
   Tratamentos: tratamentos-card-1..6
   Coloração: coloracao-card-1
   Mechas: mechas-card-1..2
   Alinhamento: alinhamento-card-1..2 */
.cortes-card__photo[data-img="cortes-card-1"] { background-image: url("imagens/cortes-card-1.png"); }
.cortes-card__photo[data-img="cortes-card-2"] { background-image: url("imagens/cortes-card-2.png"); }
.cortes-card__photo[data-img="cortes-card-3"] { background-image: url("imagens/cortes-card-3.png"); }
.cortes-card__photo[data-img="escovas-card-1"] { background-image: url("imagens/escovas-card-1.png"); }
.cortes-card__photo[data-img="escovas-card-2"] { background-image: url("imagens/escovas-card-2.png"); }
.cortes-card__photo[data-img="escovas-card-3"] { background-image: url("imagens/escovas-card-3.png"); }
.cortes-card__photo[data-img="escovas-card-4"] { background-image: url("imagens/escovas-card-4.png"); }
.cortes-card__photo[data-img="escovas-card-5"] { background-image: url("imagens/escovas-card-5.png"); }
.cortes-card__photo[data-img="tratamentos-card-1"] { background-image: url("imagens/tratamentos-card-1.png"); }
.cortes-card__photo[data-img="tratamentos-card-2"] { background-image: url("imagens/tratamentos-card-2.png"); }
.cortes-card__photo[data-img="tratamentos-card-3"] { background-image: url("imagens/tratamentos-card-3.png"); }
.cortes-card__photo[data-img="tratamentos-card-4"] { background-image: url("imagens/tratamentos-card-4.png"); }
.cortes-card__photo[data-img="tratamentos-card-5"] { background-image: url("imagens/tratamentos-card-5.png"); }
.cortes-card__photo[data-img="tratamentos-card-6"] { background-image: url("imagens/tratamentos-card-6.png"); }
.cortes-card__photo[data-img="coloracao-card-1"] { background-image: url("imagens/coloracao-card-1.png"); }
.cortes-card__photo[data-img="mechas-card-1"] { background-image: url("imagens/mechas-card-1.png"); }
.cortes-card__photo[data-img="mechas-card-2"] { background-image: url("imagens/mechas-card-2.png"); }
.cortes-card__photo[data-img="alinhamento-card-1"] { background-image: url("imagens/alinhamento-card-1.png"); }
.cortes-card__photo[data-img="alinhamento-card-2"] { background-image: url("imagens/alinhamento-card-2.png"); }

.cortes-card__body {
  min-width: 0;
  display: contents;
}
.cortes-card__name  { order: 1; }
.cortes-card__desc  { order: 2; }
.cortes-card__line  { order: 3; }
.cortes-card__price { order: 4; }

.cortes-card__name {
  font-family: var(--fonte-titulo);
  font-weight: 600;
  color: var(--verde);
  font-size: clamp(1.15rem, 4.6vw, 1.55rem);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.cortes-card__line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--dourado);
  opacity: 0.8;
  margin: 0.35rem auto;
}
.cortes-card__desc {
  font-size: clamp(0.82rem, 3.3vw, 0.95rem);
  line-height: 1.35;
  color: #2a3b30;
}

.cortes-card__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  column-gap: 0.2rem;
  color: var(--dourado);
  font-family: var(--fonte-titulo);
  white-space: nowrap;
}
.cortes-card__from {
  grid-column: 1 / -1;
  font-family: var(--fonte-corpo);
  font-style: italic;
  font-size: clamp(0.62rem, 2.4vw, 0.72rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0.85;
  margin-bottom: -0.15rem;
}
.cortes-card__currency {
  font-size: clamp(0.85rem, 3.2vw, 1.05rem);
  font-weight: 600;
}
.cortes-card__value {
  font-size: clamp(1.8rem, 8vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
}

/* Tarja bordô da marca entre categorias (full-bleed, com separador dourado) */
.cortes__tarja {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bordo);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 3vw, 1.25rem);
  padding: clamp(1.5rem, 6vw, 2.5rem) clamp(1.25rem, 5vw, 2rem);
  margin-block: 0;
}
.cortes__tarja-linha {
  width: clamp(48px, 22vw, 160px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dourado) 70%);
  opacity: 0.85;
}
.cortes__tarja-linha:last-child {
  background: linear-gradient(90deg, var(--dourado) 30%, transparent);
}
.cortes__tarja-losango {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  background: var(--dourado);
  transform: rotate(45deg);
  opacity: 0.9;
}

/* Rótulo de subcategoria (2ª em diante: um pouco menor, com respiro no topo) */
.cortes__label--sub {
  margin-top: 0;
  font-size: clamp(1.7rem, 8vw, 2.6rem);
}

/* Microcopy de autoridade (Tratamentos, Mechas) */
.cortes__authority {
  text-align: center;
  color: var(--off);
  font-size: clamp(0.9rem, 3.6vw, 1.05rem);
  line-height: 1.4;
  max-width: 46ch;
  margin: 0 auto clamp(1rem, 3.5vw, 1.5rem);
  opacity: 0.9;
}

/* Faixa de selos de marcas (Tratamentos) */
.cortes__brands {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem clamp(1rem, 4vw, 1.75rem);
  margin-bottom: clamp(1.5rem, 5vw, 2rem);
}
.cortes__brands li {
  font-family: var(--fonte-titulo);
  color: var(--dourado);
  font-size: clamp(0.95rem, 3.8vw, 1.15rem);
  letter-spacing: 0.04em;
  opacity: 0.92;
}

/* Card único destacado (Coloração) */
.cortes-card--highlight {
  border: 1px solid rgba(201,162,75,0.45);
  box-shadow: 0 12px 36px rgba(0,0,0,0.45);
}

/* CTA de fecho da Seção 4 */
.cortes__closing {
  text-align: center;
  margin-top: clamp(2.5rem, 9vw, 4rem);
}
.cortes__closing-text {
  font-family: var(--fonte-titulo);
  color: var(--dourado);
  font-size: clamp(1.3rem, 5.5vw, 1.8rem);
  line-height: 1.2;
  margin-bottom: clamp(1.1rem, 4vw, 1.5rem);
}
.cortes__cta {
  /* herda de .hero__cta; centralizado */
  margin-inline: auto;
}

/* ---------- DESKTOP (inferido) ---------- */
@media (min-width: 1024px) {
  .cortes__cat {
    background-image: url("imagens/cortes-fundo-desktop.png");
  }
  .cortes__cat > * { max-width: 920px; }
  .cortes__container { max-width: 920px; }
  .cortes__cards {
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.25rem, 2.5vw, 1.75rem);
  }
  .cortes-card__desc { max-width: 42ch; }
  /* Coloração é card único: ocupa as duas colunas e fica centralizado */
  .cortes-card--highlight {
    grid-column: 1 / -1;
    max-width: 760px;
    margin-inline: auto;
  }
}

/* ============================================================
   SEÇÃO 5 — PROVA / CONFIANÇA · Dobra 1: "Por que sai sempre igual"
   Fundo de mármore verde. Título dourado + subtítulo. 4 cards
   verticais com borda dourada sutil, ícone circular (SVG) no topo,
   título dourado e descrição off-white. Card 3 traz selos de marcas.
============================================================ */
.prova {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  background-image: url("imagens/prova-fundo-mobile.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--off);
  font-family: var(--fonte-corpo);
  padding-top: clamp(1.75rem, 6vw, 3rem);
  padding-bottom: clamp(3rem, 10vw, 5rem);
}

.prova__container {
  width: 100%;
  max-width: 640px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2rem);
}

.prova__intro { text-align: center; margin-bottom: clamp(2rem, 7vw, 3rem); }
.prova__title {
  font-family: var(--fonte-titulo);
  font-weight: 500;
  color: var(--dourado);
  font-size: clamp(2.4rem, 12vw, 4rem);
  line-height: 1.02;
  margin-bottom: clamp(0.6rem, 2.5vw, 1rem);
}
.prova__subtitle {
  color: var(--off);
  font-size: clamp(1rem, 4vw, 1.2rem);
  opacity: 0.92;
}

.prova__cards {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 6vw, 2.5rem);
}

/* Card com borda dourada e ícone circular sobreposto no topo */
.prova-card {
  position: relative;
  border: 1px solid rgba(201,162,75,0.5);
  border-radius: 20px;
  background: rgba(6,26,17,0.35);
  padding: clamp(3rem, 10vw, 3.75rem) clamp(1.5rem, 6vw, 2.5rem) clamp(1.75rem, 6vw, 2.25rem);
  margin-top: clamp(1.75rem, 6vw, 2.25rem); /* espaço para o ícone que sobe */
  text-align: center;
}

.prova-card__icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(64px, 18vw, 84px);
  height: clamp(64px, 18vw, 84px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(201,162,75,0.6);
  border-radius: 50%;
  background: #0b2315;
  color: var(--dourado);
  box-shadow: 0 0 0 6px rgba(11,35,21,0.9);
}
.prova-card__icon svg {
  width: 52%;
  height: 52%;
}

.prova-card__title {
  font-family: var(--fonte-titulo);
  font-weight: 500;
  color: var(--dourado);
  font-size: clamp(1.35rem, 6vw, 1.9rem);
  line-height: 1.1;
  margin-bottom: clamp(0.75rem, 3vw, 1rem);
}
.prova-card__desc {
  color: var(--off);
  font-size: clamp(0.92rem, 3.7vw, 1.05rem);
  line-height: 1.45;
  max-width: 42ch;
  margin-inline: auto;
  opacity: 0.92;
}

/* Selos de marcas dentro do card 3 */
.prova-card__brands {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem clamp(0.75rem, 3vw, 1.25rem);
  margin-top: clamp(1.1rem, 4vw, 1.5rem);
}
.prova-card__brands li {
  border: 1px solid rgba(201,162,75,0.5);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-family: var(--fonte-titulo);
  color: var(--dourado);
  font-size: clamp(0.82rem, 3.2vw, 0.98rem);
  letter-spacing: 0.03em;
  opacity: 0.95;
}

/* ---------- DESKTOP (inferido) ---------- */
@media (min-width: 1024px) {
  .prova {
    background-image: url("imagens/prova-fundo-desktop.png");
  }
  .prova__container { max-width: 1100px; }
  .prova__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2.5rem, 4vw, 3.25rem) clamp(1.5rem, 3vw, 2.5rem);
  }
  /* card 3 (marcas) ocupa a largura toda para os selos respirarem */
  .prova-card:nth-child(3) { grid-column: 1 / -1; }
}

/* ============================================================
   SEÇÃO 5 — PROVA / CONFIANÇA · Dobra 2: DEPOIMENTOS (Google)
   Fundo de mármore. Selo Google Reviews (G em SVG) + 5 estrelas.
   3 cards de depoimento (aspa dourada, estrelas, texto, nome + Local Guide).
   Sem números, sem fotos, sem logo Ornely Demo.
============================================================ */
.depo {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  background-image: url("imagens/depoimentos-fundo-mobile.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--off);
  font-family: var(--fonte-corpo);
  padding-block: clamp(3rem, 10vw, 5rem);
}
.depo__container {
  width: 100%;
  max-width: 680px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2rem);
}

.depo__intro { text-align: center; margin-bottom: clamp(2rem, 7vw, 3rem); }
.depo__eyebrow {
  font-family: var(--fonte-script);
  color: var(--dourado);
  font-size: clamp(1.15rem, 4.6vw, 1.5rem);
  margin-bottom: 0.5rem;
  opacity: 0.95;
}
.depo__title {
  font-family: var(--fonte-titulo);
  font-weight: 500;
  color: var(--off);
  font-size: clamp(1.9rem, 8.5vw, 3rem);
  line-height: 1.08;
  margin-bottom: clamp(1.1rem, 4vw, 1.5rem);
}
.depo__brand { color: var(--dourado); font-weight: 600; }

/* Selo Google Reviews */
.depo__google {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(201,162,75,0.45);
  border-radius: 999px;
  background: rgba(6,26,17,0.4);
}
.depo__g { width: 1.15rem; height: 1.15rem; display: grid; place-items: center; }
.depo__g svg { width: 100%; height: 100%; }
.depo__google-text {
  color: var(--off);
  font-size: clamp(0.85rem, 3.4vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.depo__stars { display: inline-flex; gap: 2px; margin-left: 0.25rem; }
.depo__stars svg { width: 0.95rem; height: 0.95rem; fill: var(--dourado); }

/* Cards */
.depo__cards {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 5vw, 1.75rem);
}
.depo-card {
  position: relative;
  border: 1px solid rgba(201,162,75,0.4);
  border-radius: 18px;
  background: rgba(6,26,17,0.35);
  padding: clamp(1.75rem, 6vw, 2.5rem) clamp(1.5rem, 5vw, 2rem) clamp(1.5rem, 5vw, 2rem);
  text-align: center;
}
.depo-card__quote {
  display: block;
  font-family: var(--fonte-titulo);
  color: var(--dourado);
  font-size: clamp(3rem, 12vw, 4rem);
  line-height: 0.6;
  height: 0.5em;
  margin-bottom: 0.4rem;
}
.depo-card__stars { display: inline-flex; gap: 3px; margin-bottom: clamp(0.75rem, 3vw, 1rem); }
.depo-card__stars svg { width: 1.05rem; height: 1.05rem; fill: var(--dourado); }
.depo-card__text {
  color: var(--off);
  font-size: clamp(1rem, 4.1vw, 1.2rem);
  line-height: 1.45;
  font-style: italic;
  max-width: 44ch;
  margin: 0 auto clamp(1rem, 4vw, 1.35rem);
}
.depo-card__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.depo-card__name {
  font-family: var(--fonte-script);
  color: var(--dourado);
  font-size: clamp(1.5rem, 6vw, 2rem);
  line-height: 1;
}
.depo-card__badge {
  font-family: var(--fonte-corpo);
  color: var(--off);
  font-size: clamp(0.62rem, 2.6vw, 0.72rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
}

.depo__footnote {
  text-align: center;
  margin-top: clamp(1.75rem, 6vw, 2.5rem);
}
.depo__footnote a {
  font-family: var(--fonte-script);
  color: var(--dourado);
  font-size: clamp(1.05rem, 4.2vw, 1.35rem);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,162,75,0.5);
  padding-bottom: 2px;
}
.depo__footnote a:hover { opacity: 0.85; }

/* ---------- DESKTOP (inferido) ---------- */
@media (min-width: 1024px) {
  .depo { background-image: url("imagens/depoimentos-fundo-desktop.png"); }
  .depo__container { max-width: 1100px; }
  .depo__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
  }
  .depo-card { display: flex; flex-direction: column; }
  .depo-card__author { margin-top: auto; }
}

/* ============================================================
   SEÇÃO 6 — OBJEÇÕES / FAQ  (acordeão details/summary)
============================================================ */
.faq {
  position: relative;
  width: 100%;
  background-image: url("imagens/secoes-fundo-mobile.png");
  background-size: cover;
  background-position: center;
  color: var(--off);
  font-family: var(--fonte-corpo);
  padding-block: clamp(3rem, 10vw, 5rem);
}
.faq__container { width: 100%; max-width: 760px; margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 2rem); }
.faq__intro { text-align: center; margin-bottom: clamp(2rem, 7vw, 3rem); }
.faq__eyebrow {
  color: var(--dourado); text-transform: uppercase; letter-spacing: 0.22em;
  font-size: clamp(0.68rem, 2.8vw, 0.85rem); margin-bottom: 0.8rem;
}
.faq__title {
  font-family: var(--fonte-titulo); font-weight: 500; color: var(--off);
  font-size: clamp(2.1rem, 10vw, 3.4rem); line-height: 1.05; margin-bottom: 0.75rem;
}
.faq__subtitle {
  color: var(--dourado); text-transform: uppercase; letter-spacing: 0.18em;
  font-size: clamp(0.72rem, 3vw, 0.9rem);
}
.faq__list { display: flex; flex-direction: column; gap: clamp(0.9rem, 3vw, 1.25rem); }

.faq-item {
  border: 1px solid rgba(201,162,75,0.4);
  border-radius: 14px;
  background: rgba(6,26,17,0.32);
  overflow: hidden;
}
.faq-item__q {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(0.75rem, 3vw, 1.1rem);
  padding: clamp(1rem, 4vw, 1.4rem) clamp(1.1rem, 4vw, 1.6rem);
  cursor: pointer;
  list-style: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__num {
  display: grid; place-items: center;
  width: 2rem; height: 2rem; flex-shrink: 0;
  border: 1px solid var(--dourado); border-radius: 50%;
  color: var(--dourado); font-family: var(--fonte-titulo);
  font-size: 1.05rem;
}
.faq-item__label {
  font-family: var(--fonte-titulo); color: var(--off);
  font-size: clamp(1.1rem, 4.4vw, 1.4rem); line-height: 1.15;
}
.faq-item__icon { position: relative; width: 20px; height: 20px; flex-shrink: 0; }
.faq-item__icon::before,
.faq-item__icon::after {
  content: ""; position: absolute; background: var(--dourado);
  top: 50%; left: 50%; transition: transform .25s ease;
}
.faq-item__icon::before { width: 16px; height: 1.5px; transform: translate(-50%,-50%); }
.faq-item__icon::after  { width: 1.5px; height: 16px; transform: translate(-50%,-50%); }
.faq-item[open] .faq-item__icon::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-item__a {
  padding: 0 clamp(1.1rem, 4vw, 1.6rem) clamp(1.1rem, 4vw, 1.5rem) clamp(3.9rem, 12vw, 4.7rem);
  color: var(--off); font-style: italic; line-height: 1.5;
  font-size: clamp(0.92rem, 3.6vw, 1.05rem); opacity: 0.92;
}

/* ============================================================
   SEÇÃO 7 — CONVENIÊNCIA "TUDO NUM SÓ LUGAR"  (fundo bordô)
============================================================ */
.conv {
  width: 100%;
  background: var(--bordo);
  color: var(--off);
  font-family: var(--fonte-corpo);
  padding-block: clamp(3rem, 10vw, 4.5rem);
}
.conv__container { max-width: 1100px; margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 2rem); }

/* Cabeçalho centralizado no topo (largura total) */
.conv__head { text-align: center; margin-bottom: clamp(2.25rem, 8vw, 3.5rem); }
.conv__title {
  font-family: var(--fonte-titulo); font-weight: 500; color: var(--dourado);
  font-size: clamp(1.8rem, 8vw, 2.8rem); line-height: 1.1; margin-bottom: clamp(1rem, 4vw, 1.5rem);
}
.conv__text {
  font-size: clamp(1rem, 4vw, 1.15rem); line-height: 1.5; opacity: 0.95;
  max-width: 60ch; margin: 0 auto;
}

/* Grid: mobile empilha (info em cima, mapa embaixo); desktop 2 colunas */
.conv__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 8vw, 3rem);
  align-items: center;
}

/* Coluna de contatos + botão */
.conv__contacts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 4vw, 1.75rem);
  margin-bottom: clamp(1.75rem, 6vw, 2.5rem);
}
.conv__contact {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: clamp(0.75rem, 3vw, 1rem);
}
.conv__icon {
  width: clamp(28px, 7vw, 34px);
  height: clamp(28px, 7vw, 34px);
  flex-shrink: 0;
  color: var(--dourado);
  display: grid;
  place-items: center;
  margin-top: 0.15rem;
}
.conv__icon svg { width: 100%; height: 100%; }
.conv__contact-body { display: flex; flex-direction: column; min-width: 0; }
.conv__contact-label {
  font-family: var(--fonte-titulo);
  color: var(--dourado);
  font-size: clamp(1.05rem, 4.2vw, 1.25rem);
  line-height: 1.2;
  margin-bottom: 0.15rem;
}
.conv__contact-value {
  font-size: clamp(0.92rem, 3.7vw, 1.05rem);
  line-height: 1.45;
  opacity: 0.95;
  color: var(--off);
}
.conv__contact-link { color: var(--dourado); text-decoration: none; }
.conv__contact-link:hover { text-decoration: underline; }

.conv__cta { margin-inline: auto; }

/* Mapa */
.conv__map {
  border: 1px solid rgba(201,162,75,0.4);
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.conv__map iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(0.9); }

@media (min-width: 1024px) {
  .conv__grid { grid-template-columns: 1fr 1.15fr; gap: clamp(2.5rem, 5vw, 4rem); }
  .conv__col--info { text-align: left; }
  .conv__cta { margin-inline: 0; }
  .conv__map { aspect-ratio: 4 / 3; max-height: 440px; }
}

/* ============================================================
   SEÇÃO 8 — TABELA EXPANSÍVEL "DEMAIS SERVIÇOS"
============================================================ */
.tabela {
  width: 100%;
  background-image: url("imagens/secoes-fundo-mobile.png");
  background-size: cover; background-position: center;
  color: var(--off); font-family: var(--fonte-corpo);
  padding-block: clamp(3rem, 10vw, 5rem);
}
.tabela__container { max-width: 760px; margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 2rem); }
.tabela__intro { text-align: center; margin-bottom: clamp(2rem, 7vw, 3rem); }
.tabela__title {
  font-family: var(--fonte-titulo); font-weight: 500; color: var(--dourado);
  font-size: clamp(2rem, 9vw, 3rem); line-height: 1.05; margin-bottom: 0.6rem;
}
.tabela__subtitle { color: var(--off); opacity: 0.9; font-size: clamp(0.95rem, 3.8vw, 1.1rem); }
.tabela__list { display: flex; flex-direction: column; gap: clamp(0.7rem, 2.5vw, 1rem); }

.tabela-cat {
  border: 1px solid rgba(201,162,75,0.35);
  border-radius: 12px;
  background: var(--off);
  overflow: hidden;
}
.tabela-cat__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: clamp(0.9rem, 3.5vw, 1.25rem) clamp(1.1rem, 4vw, 1.5rem);
  cursor: pointer; list-style: none;
  background: var(--verde);
}
.tabela-cat__head::-webkit-details-marker { display: none; }
.tabela-cat__name {
  font-family: var(--fonte-titulo); color: var(--dourado);
  font-size: clamp(1.1rem, 4.4vw, 1.4rem);
}
.tabela-cat__icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.tabela-cat__icon::before,
.tabela-cat__icon::after {
  content: ""; position: absolute; background: var(--dourado); top: 50%; left: 50%;
  transition: transform .25s ease;
}
.tabela-cat__icon::before { width: 14px; height: 1.5px; transform: translate(-50%,-50%); }
.tabela-cat__icon::after  { width: 1.5px; height: 14px; transform: translate(-50%,-50%); }
.tabela-cat[open] .tabela-cat__icon::after { transform: translate(-50%,-50%) scaleY(0); }

.tabela-cat__items { list-style: none; padding: 0 clamp(1.1rem, 4vw, 1.5rem) clamp(0.9rem, 3vw, 1.25rem); }
.tabela-cat__items li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: 0.7rem 0; border-top: 1px solid rgba(11,35,21,0.18);
  font-size: clamp(0.9rem, 3.6vw, 1.02rem);
}
.tabela-cat__items li:first-child { border-top: 0; }
.tabela-cat__items li span:first-child { color: var(--verde); opacity: 1; }
.tabela-cat__price {
  color: var(--dourado); font-family: var(--fonte-titulo);
  font-weight: 700; font-size: clamp(1.05rem, 4.2vw, 1.25rem);
  white-space: nowrap;
}

/* ============================================================
   SEPARADOR DE TRANSIÇÃO — mármore verde → bordô
   Faixa dividida ao meio (verde em cima, bordô embaixo) com
   linhas e losango dourados centralizados sobre a divisão.
============================================================ */
.separador-transicao {
  position: relative;
  width: 100%;
  height: clamp(56px, 16vw, 84px);
  display: block;
}
.separador-transicao__verde {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: var(--verde);
}
.separador-transicao__bordo {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: var(--bordo);
}
.separador-transicao__ornamento {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 3vw, 1.25rem);
  width: min(82%, 560px);
}
.separador-transicao__linha {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dourado) 70%);
  opacity: 0.85;
}
.separador-transicao__linha:last-child {
  background: linear-gradient(90deg, var(--dourado) 30%, transparent);
}
.separador-transicao__losango {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background: var(--dourado);
  transform: rotate(45deg);
  opacity: 0.9;
}

/* ============================================================
   SEÇÃO 9 — CTA FINAL + LOCALIZAÇÃO
============================================================ */
.final {
  width: 100%;
  background-image: url("imagens/secoes-fundo-mobile.png");
  background-size: cover; background-position: center;
  color: var(--off); font-family: var(--fonte-corpo);
  padding-block: clamp(3rem, 10vw, 5rem);
}
.final__container { max-width: 760px; margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 2rem); }
.final__cta { text-align: center; }
.final__title {
  font-family: var(--fonte-titulo); font-weight: 500; color: var(--dourado);
  font-size: clamp(2.1rem, 10vw, 3.4rem); line-height: 1.05; margin-bottom: clamp(0.9rem, 3vw, 1.25rem);
}
.final__subtitle {
  font-size: clamp(1rem, 4vw, 1.2rem); line-height: 1.45; opacity: 0.95;
  max-width: 46ch; margin: 0 auto clamp(1rem, 4vw, 1.5rem);
}
.final__script {
  font-family: var(--fonte-script); color: var(--dourado);
  font-size: clamp(1.5rem, 6vw, 2rem); margin-bottom: clamp(1.75rem, 6vw, 2.25rem);
}
.final__button { margin-inline: auto; }

/* ---------- DESKTOP (inferido) para seções 6–9 ---------- */
@media (min-width: 1024px) {
  .faq, .tabela, .final { background-image: url("imagens/secoes-fundo-desktop.png"); }
  .faq__container, .tabela__container { max-width: 860px; }
  .final__container { max-width: 900px; }
}

/* ============================================================
   HEADER FIXO + BOTÃO FLUTUANTE + ALTERNÂNCIA DE FUNDOS
   (bloco adicionado na revisão)
============================================================ */

/* Header fixo sobrepõe o topo do Hero (sem empurrar o conteúdo).
   O respiro do texto sob a barra é feito pelo padding do .hero__container. */
:root { --header-h: 64px; }
@media (min-width: 1024px) { :root { --header-h: 72px; } }

/* ---------- Header fixo ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(11,35,21,0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,162,75,0.25);
}
.site-header__inner {
  height: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.site-header__mark {
  width: 26px; height: 26px;
  border: 1.4px solid var(--dourado);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-2deg);
  opacity: 0.9;
  flex-shrink: 0;
}
.site-header__name {
  font-family: var(--fonte-titulo);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--dourado);
  font-size: clamp(1.05rem, 4.5vw, 1.35rem);
  line-height: 1;
}
.site-header__logo {
  display: block;
  height: clamp(24px, 6vw, 32px);
  width: auto;
  object-fit: contain;
}
.site-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.15rem;
  border: 1.4px solid var(--dourado);
  border-radius: 999px;
  background: var(--dourado);
  color: var(--verde);
  text-decoration: none;
  font-size: clamp(0.85rem, 3.6vw, 1rem);
  font-weight: 600;
  transition: background-color .25s ease, color .25s ease;
  white-space: nowrap;
}
.site-header__cta:hover,
.site-header__cta:focus-visible { background: transparent; color: var(--dourado); }
.site-header__cta-icon { width: 1.15em; height: 1.15em; fill: currentColor; flex-shrink: 0; }
/* Mobile: mostra só "Agendar" (esconde o " no WhatsApp") */
.site-header__cta-full { display: none; }
@media (min-width: 1024px) {
  .site-header__cta {
    background: transparent;
    color: var(--dourado);
    font-weight: 500;
  }
  .site-header__cta:hover,
  .site-header__cta:focus-visible { background: var(--dourado); color: var(--verde); }
  .site-header__cta-full { display: inline; }
}

/* ---------- Botão flutuante WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: clamp(0.9rem, 4vw, 1.5rem);
  bottom: clamp(0.9rem, 4vw, 1.5rem);
  z-index: 1000;
  width: clamp(52px, 14vw, 60px);
  height: clamp(52px, 14vw, 60px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #1faf52;                 /* verde WhatsApp */
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 12px 30px rgba(0,0,0,0.5); }
.wa-float svg { width: 58%; height: 58%; fill: currentColor; }
/* pulso sutil */
.wa-float::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(31,175,82,0.55);
  animation: wa-pulse 2.4s infinite;
}
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(31,175,82,0.5); }
  70%  { box-shadow: 0 0 0 16px rgba(31,175,82,0); }
  100% { box-shadow: 0 0 0 0 rgba(31,175,82,0); }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float::after { animation: none; }
}


/* ============================================================
   ESQUEMA DE FUNDOS (revisão validada)
   Mármore verde: Hero, Cortes, Tabela        (mantêm regra base)
   Verde sólido : Conexão, Prova, FAQ
   Bordô chapado: Depoimentos, Conveniência
   Mármore bordô: Final (imagem enviada)
   Regras abaixo VENCEM as bases e os media-queries desktop.
============================================================ */

/* ---- Verde sólido puro (#0b2315) ---- */
.conexao,
.prova,
.faq {
  background-image: none !important;
  background-color: var(--verde);
}

/* ---- Bordô chapado (respiro) ---- */
/* Conveniência já é cor sólida bordô por padrão (.conv).
   Depoimentos passa a bordô chapado via modificador. */
.depo.depo--solido {
  background-image: none !important;
  background-color: var(--bordo);
}

/* ---- Mármore bordô (imagem) no Final ---- */
.final.final--marmore-bordo {
  background-image: url("imagens/final-fundo-bordo-mobile.png") !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* No desktop não há versão horizontal do mármore bordô: usamos a mesma
   imagem com posição centralizada (cobre bem por ser textura sem foco). */
@media (min-width: 1024px) {
  .final.final--marmore-bordo {
    background-image: url("imagens/final-fundo-bordo-mobile.png") !important;
    background-position: center;
  }
}

/* Ajuste de contraste: cards de depoimento sobre bordô chapado */
.depo--solido .depo-card {
  background: rgba(0,0,0,0.18);
  border-color: rgba(201,162,75,0.5);
}

/* ============================================================
   RODAPÉ — assinatura, links legais, aviso e redes sociais
   Fundo verde profundo da marca; acentos dourados.
============================================================ */
.rodape {
  width: 100%;
  background: var(--verde);
  color: var(--off);
  font-family: var(--fonte-corpo);
  padding-block: clamp(3rem, 10vw, 4.5rem);
  border-top: 1px solid rgba(201,162,75,0.25);
}
.rodape__container {
  max-width: 860px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 4vw, 1.5rem);
}

/* Marca */
.rodape__brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
}
.rodape__mark {
  width: clamp(38px, 11vw, 48px);
  aspect-ratio: 1;
  border: 1.5px solid var(--dourado);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-2deg);
  opacity: 0.9;
}
.rodape__name {
  font-family: var(--fonte-titulo);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--dourado);
  font-size: clamp(1.3rem, 5.5vw, 1.7rem);
  line-height: 1;
  margin-top: 0.3rem;
}
.rodape__tag {
  font-size: clamp(0.68rem, 2.8vw, 0.82rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dourado);
  opacity: 0.8;
}
.rodape__logo {
  display: block;
  height: clamp(56px, 16vw, 78px);
  width: auto;
  object-fit: contain;
}


/* Linha de responsável / assinatura */
.rodape__resp {
  font-size: clamp(0.9rem, 3.6vw, 1.02rem);
  line-height: 1.45;
  opacity: 0.92;
}

/* Links legais */
.rodape__links {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.rodape__links a {
  color: var(--off);
  text-decoration: none;
  font-size: clamp(0.9rem, 3.6vw, 1.02rem);
  border-bottom: 1px solid rgba(201,162,75,0.5);
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}
.rodape__links a:hover { color: var(--dourado); border-color: var(--dourado); }
.rodape__sep { color: var(--dourado); opacity: 0.6; }

/* Bloco de aviso legal */
.rodape__aviso {
  border: 1px solid rgba(201,162,75,0.3);
  border-radius: 14px;
  background: rgba(6,26,17,0.4);
  padding: clamp(1.25rem, 5vw, 1.75rem) clamp(1.25rem, 5vw, 2rem);
  max-width: 640px;
}
.rodape__aviso p {
  font-size: clamp(0.8rem, 3.2vw, 0.92rem);
  line-height: 1.55;
  opacity: 0.82;
}
.rodape__aviso strong { color: var(--dourado); font-weight: 600; }

/* Redes sociais */
.rodape__social {
  display: inline-flex;
  gap: clamp(0.75rem, 3vw, 1.1rem);
}
.rodape__social-link {
  width: clamp(40px, 11vw, 46px);
  height: clamp(40px, 11vw, 46px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(201,162,75,0.5);
  border-radius: 50%;
  color: var(--dourado);
  transition: background-color .25s ease, color .25s ease;
}
.rodape__social-link:hover { background: var(--dourado); color: var(--verde); }
.rodape__social-link svg { width: 48%; height: 48%; }
.rodape__social-link svg[fill="none"] { fill: none; }
.rodape__social-link svg:not([fill="none"]) { fill: currentColor; }

/* Copyright */
.rodape__copy {
  font-size: clamp(0.75rem, 3vw, 0.85rem);
  letter-spacing: 0.02em;
  opacity: 0.6;
}
