/* =============================================================================
   Elegance Pools & Outdoors — Landing Page de conversao

   Direcao visual: o ouro da marca (amostrado do logo: #85591F a #D1A367)
   sobre uma base escura fria, para que o azul das piscinas nas fotos seja a
   unica cor saturada da pagina. Serif editorial nos titulos, sans em tudo que
   e funcional. Sem azul de interface, sem gradiente azul-e-dourado.
   ========================================================================== */

/* ---------- Fontes (self-hosted, font-display: swap) ---------------------- */
@font-face {
  font-family: 'Fraunces';
  src: url('../assets/fonts/fraunces.woff2') format('woff2-variations');
  font-weight: 300 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'InterVar';
  src: url('../assets/fonts/inter.woff2') format('woff2-variations');
  font-weight: 300 700; font-style: normal; font-display: swap;
}

/* ---------- Tokens -------------------------------------------------------- */
:root {
  --ink:        #0A0E10;
  --surface:    #11171A;
  --surface-2:  #182025;
  --paper:      #F4F1EA;
  --paper-2:    #E7E0D4;

  /* Ouro da marca. --gold e a versao legivel sobre escuro; --gold-deep sobre
     claro (contraste AA em texto de apoio). */
  --gold:       #C9A268;
  --gold-lift:  #E2C596;
  --gold-deep:  #8A5E24;
  --gold-wash:  rgba(201, 162, 104, .14);

  --on-dark:        #EDEAE3;
  --on-dark-muted:  #9AA0A2;
  --on-light:       #14181A;
  --on-light-muted: #5A6062;

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

  --display: 'Fraunces', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --sans: 'InterVar', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --gutter: clamp(1.25rem, 5vw, 2.5rem);
  --measure: 62ch;
  --shell: 1240px;
  --radius: 3px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
ol, ul { list-style: none; padding: 0; }

body {
  font-family: var(--sans);
  font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
  line-height: 1.6;
  color: var(--on-dark);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---------- Primitivas ---------------------------------------------------- */
.shell { width: min(100% - var(--gutter) * 2, var(--shell)); margin-inline: auto; }
.shell--narrow { width: min(100% - var(--gutter) * 2, 860px); margin-inline: auto; }

section { padding-block: clamp(3.5rem, 9vw, 7rem); }

.band--paper { background: var(--paper); color: var(--on-light); }
.band--paper .muted { color: var(--on-light-muted); }
.band--surface { background: var(--surface); }
.muted { color: var(--on-dark-muted); }
.lc { text-transform: none; letter-spacing: 0; }

.eyebrow {
  font-size: .75rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem;
}
.eyebrow::after { content: ''; flex: 1; height: 1px; background: currentColor; opacity: .3; }
.band--paper .eyebrow { color: var(--gold-deep); }
.eyebrow--dark { color: #3A2A10; }

h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: 1.08; letter-spacing: -.015em; text-wrap: balance; }
h1 { font-size: clamp(1.9rem, 1.1rem + 3.3vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 1.1rem + 2.5vw, 2.75rem); }
h3 { font-size: clamp(1.1rem, 1rem + .55vw, 1.35rem); line-height: 1.25; }
p { text-wrap: pretty; }
.lede { font-size: clamp(1.0625rem, 1rem + .4vw, 1.2rem); line-height: 1.55; max-width: var(--measure); }

/* ---------- Botoes -------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1.05rem 1.8rem; border-radius: var(--radius);
  font-family: var(--sans); font-size: .95rem; font-weight: 600; letter-spacing: .01em;
  text-decoration: none; text-align: center; border: 1px solid transparent;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .12s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--gold); color: #17120A; }
.btn--primary:hover { background: var(--gold-lift); }
.btn--phone { background: rgba(255,255,255,.06); color: var(--on-dark); border-color: rgba(255,255,255,.28); }
.btn--phone:hover { border-color: var(--gold); color: var(--gold); }
.btn--ghost { background: transparent; color: var(--on-dark); border-color: rgba(255,255,255,.2); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--dark { background: #17120A; color: #F2E6D2; }
.btn--dark:hover { background: #241C10; }
.btn--outline-dark { background: transparent; color: #2B2008; border-color: rgba(30,22,6,.35); }
.btn--outline-dark:hover { background: rgba(30,22,6,.08); }
.band--paper .btn--phone { color: var(--on-light); border-color: var(--line-light); background: transparent; }
.band--paper .btn--phone:hover { border-color: var(--gold-deep); color: var(--gold-deep); }
.btn--block { width: 100%; }
.btn--lg { padding: 1.15rem 2rem; font-size: 1rem; }
.btn__num { font-variant-numeric: tabular-nums; }

/* =============================================================================
   BLOCO 1 — Hero com o formulario dentro
   ========================================================================== */
.hero {
  position: relative; isolation: isolate;
  padding-block: clamp(1.25rem, 3vw, 2rem) clamp(3rem, 7vw, 5rem);
  display: flex; flex-direction: column;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
/* A foto esta atras do texto e do cartao, entao o enquadramento privilegia a
   agua: o topo (telhado e entulho de obra) fica fora da area visivel. */
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 78%; }
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(94deg, rgba(10,14,16,.95) 0%, rgba(10,14,16,.88) 28%, rgba(10,14,16,.42) 62%, rgba(10,14,16,.22) 100%),
    linear-gradient(180deg, rgba(10,14,16,.5) 0%, rgba(10,14,16,.05) 30%, rgba(10,14,16,.72) 100%);
}
/* No celular o texto ocupa a largura toda, entao o veu precisa ser parelho.
   O enquadramento desloca para a direita porque e onde esta a agua: no
   recorte vertical do celular, o centro da foto e pilar e parede. */
@media (max-width: 999px) {
  .hero__bg img { object-position: 68% 82%; }
  .hero__bg::after {
    background: linear-gradient(180deg, rgba(10,14,16,.92) 0%, rgba(10,14,16,.7) 42%, rgba(10,14,16,.93) 100%);
  }
}

.hero__top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-bottom: clamp(2rem, 6vw, 3.5rem);
}
.brandmark { line-height: 1.05; }
.brandmark__name {
  display: block; font-family: var(--display); font-size: clamp(1.15rem, 1rem + .7vw, 1.5rem);
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
}
.brandmark__sub {
  display: block; font-size: .62rem; letter-spacing: .34em;
  text-transform: uppercase; color: var(--on-dark-muted); margin-top: .3rem;
}
.hero__topactions { display: flex; align-items: center; gap: 1.5rem; }
.hero__topnote { display: none; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--on-dark-muted); }
.hero__topphone {
  display: inline-flex; align-items: center; gap: .55rem; min-height: 44px;
  font-weight: 600; text-decoration: none; color: var(--on-dark);
}
.hero__topphone:hover { color: var(--gold); }
.hero__topphone svg { color: var(--gold); }
@media (min-width: 900px) { .hero__topnote { display: inline; } }

.hero__grid { display: grid; gap: clamp(2.25rem, 5vw, 3.5rem); align-items: start; }
/* No celular a barra de confianca desce para depois do cartao: ela e reforco,
   nao abertura, e adiantar o formulario em uma tela inteira vale mais. */
@media (max-width: 999px) {
  /* display:contents dissolve a coluna para que os filhos entrem direto na
     grade do hero e possam ser reordenados. O gap vira 0 e o espacamento
     passa a ser margem, senao o gap se aplicaria entre cada elemento. */
  .hero__copy { display: contents; }
  .hero__grid { gap: 0; }
  .hero h1 { order: 1; margin-bottom: 1rem; }
  .hero__sub { order: 2; }
  .hero__rating { order: 3; margin-top: 1.25rem; }
  .hero__cta { order: 4; margin-top: 1.6rem; }
  .fcard { order: 5; margin-top: 1.75rem; }
  .trustbar { order: 6; margin-top: 1.9rem; }
}
@media (min-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr minmax(24rem, 27rem); gap: clamp(2.5rem, 4vw, 4rem); }
  .hero { min-height: min(96svh, 940px); }
  .hero__copy { padding-top: clamp(1rem, 4vw, 3rem); }
}

.hero h1 { margin-bottom: 1.35rem; }
.hero__sub { max-width: 34rem; color: #D6D3CC; }

.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero__cta .btn { flex: 1 1 14rem; }
/* Na coluna dupla sobra so o botao de ligar: esticado na largura toda ele
   perde a cara de botao. */
@media (min-width: 1000px) { .hero__cta .btn { flex: 0 1 auto; } }
/* Na coluna dupla o formulario ja esta visivel, entao o botao que apenas
   rola ate ele vira ruido. */
@media (min-width: 1000px) { .hero__jump { display: none; } }

.hero__rating {
  display: inline-flex; align-items: center; gap: .55rem; margin-top: 1.5rem;
  padding: .45rem .85rem; border: 1px solid var(--line-dark); border-radius: 999px;
  font-size: .85rem; width: fit-content; background: rgba(255,255,255,.05);
}
.hero__stars { color: var(--gold); letter-spacing: .1em; font-size: .78rem; }
.hero__rating span { color: var(--on-dark-muted); }

.trustbar {
  display: flex; flex-wrap: wrap; gap: .6rem 1.6rem;
  margin-top: 1.9rem; padding-top: 1.6rem; border-top: 1px solid var(--line-dark);
  font-size: .82rem; color: var(--on-dark-muted);
}
.trustbar li { display: flex; align-items: center; gap: .5rem; }
.trustbar svg { color: var(--gold); flex: none; }

/* ---------- Cartao do formulario ------------------------------------------ */
.fcard {
  background: #FBFAF7; color: var(--on-light);
  border: 1px solid rgba(255,255,255,.14); border-radius: 5px;
  padding: clamp(1.35rem, 3.5vw, 2rem);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.85), 0 2px 8px rgba(0,0,0,.3);
  scroll-margin-top: 1rem;
}
.fcard__head { padding-bottom: 1.25rem; margin-bottom: 1.35rem; border-bottom: 1px solid var(--line-light); }
.fcard__title { font-size: clamp(1.35rem, 1.15rem + .9vw, 1.7rem); margin-bottom: .5rem; }
.fcard__intro { font-size: .9rem; color: var(--on-light-muted); }
.fcard__alt { margin-top: 1.25rem; padding-top: 1.1rem; border-top: 1px solid var(--line-light); font-size: .85rem; color: var(--on-light-muted); text-align: center; }
.fcard__alt a { color: var(--gold-deep); font-weight: 600; text-decoration: none; font-variant-numeric: tabular-nums; }
.fcard__alt a:hover { text-decoration: underline; }

.fprog { margin-bottom: 1.6rem; }
.fprog__track { height: 3px; background: var(--paper-2); border-radius: 999px; overflow: hidden; }
.fprog__fill { height: 100%; width: 25%; background: var(--gold-deep); border-radius: 999px; transition: width .4s var(--ease); }
.fprog__label { display: flex; justify-content: space-between; gap: 1rem; margin-top: .6rem; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--on-light-muted); }

.fstep { display: none; }
.fstep[data-active] { display: block; animation: fadein .35s var(--ease); }
@keyframes fadein { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.fstep__q { font-family: var(--display); font-size: clamp(1.2rem, 1.05rem + .7vw, 1.5rem); line-height: 1.2; margin-bottom: 1.1rem; }
.fstep__q--sm { font-size: 1.05rem; }
.fstep__sub { margin-top: 1.6rem; padding-top: 1.35rem; border-top: 1px solid var(--line-light); }

.fopts { display: grid; gap: .5rem; }
.fopt {
  display: flex; align-items: center; gap: .8rem; width: 100%; text-align: left;
  padding: .85rem 1.05rem; border: 1px solid var(--line-light); border-radius: var(--radius);
  font-size: .95rem; background: #fff;
  transition: border-color .18s var(--ease), background-color .18s var(--ease);
}
.fopt:hover { border-color: var(--gold-deep); background: var(--gold-wash); }
.fopt[aria-pressed='true'] { border-color: var(--gold-deep); background: rgba(138,94,36,.12); font-weight: 600; }
.fopt__dot { width: 1rem; height: 1rem; border: 1px solid rgba(0,0,0,.25); border-radius: 50%; flex: none; position: relative; }
.fopt[aria-pressed='true'] .fopt__dot { border-color: var(--gold-deep); }
.fopt[aria-pressed='true'] .fopt__dot::after { content: ''; position: absolute; inset: 3px; border-radius: 50%; background: var(--gold-deep); }
.fopts--inline { grid-template-columns: repeat(3, 1fr); gap: .45rem; }
.fopts--inline .fopt { justify-content: center; gap: .45rem; padding-inline: .5rem; font-size: .88rem; }
.fopts--inline .fopt__dot { display: none; }

.ffields { display: grid; gap: .8rem; }
@media (min-width: 520px) { .ffields { grid-template-columns: 1fr 1fr; } .ffields .full { grid-column: 1 / -1; } }
.ffield label { display: block; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--on-light-muted); margin-bottom: .35rem; }
.ffield input {
  width: 100%; padding: .82rem .95rem; border: 1px solid var(--line-light);
  border-radius: var(--radius); background: #fff; transition: border-color .18s var(--ease);
}
.ffield input:focus { outline: none; border-color: var(--gold-deep); box-shadow: 0 0 0 3px rgba(138,94,36,.2); }
.ffield input[aria-invalid='true'] { border-color: #B4442F; }
.ferror { display: none; font-size: .78rem; color: #B4442F; margin-top: .3rem; }
.ffield[data-error] .ferror { display: block; }

.fnav { display: flex; align-items: center; gap: 1rem; margin-top: 1.25rem; }
.fback { font-size: .85rem; color: var(--on-light-muted); text-decoration: underline; text-underline-offset: 3px; display: inline-flex; align-items: center; min-height: 44px; }
.fback:hover { color: var(--on-light); }
.fnote { margin-top: .9rem; font-size: .72rem; line-height: 1.45; color: var(--on-light-muted); text-align: center; }

.fdone { display: none; text-align: center; padding-block: 1.5rem; }
.fdone[data-active] { display: block; }
.fdone h3 { margin-bottom: .6rem; }
.fdone p { color: var(--on-light-muted); font-size: .95rem; margin-bottom: 1.5rem; }

:where(a, button, input, [tabindex]):focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* =============================================================================
   BLOCO 2 — Prova imediata
   ========================================================================== */
.proof { background: var(--surface-2); padding-block: clamp(2rem, 4.5vw, 3rem); border-block: 1px solid var(--line-dark); }
.proof__grid { display: grid; gap: 1.75rem 2.5rem; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); }
.proof__item { display: flex; flex-direction: column; gap: .55rem; }
.proof__stars { color: var(--gold); font-size: .75rem; letter-spacing: .12em; }
.proof__text { font-size: .9rem; line-height: 1.55; color: var(--on-dark); }
.proof__text::before { content: '\201C'; color: var(--gold); }
.proof__text::after { content: '\201D'; color: var(--gold); }
.proof__who { font-size: .72rem; letter-spacing: .07em; text-transform: uppercase; color: var(--on-dark-muted); margin-top: auto; }
.proof__who b { color: var(--on-dark); font-weight: 600; }

/* =============================================================================
   BLOCO 3 — In-house
   ========================================================================== */
.ih__head { max-width: 54ch; margin-bottom: clamp(2.25rem, 5vw, 3.25rem); }
.ih__head h2 { max-width: 22ch; margin-bottom: 1rem; }
.ih__grid { display: grid; gap: clamp(1.75rem, 4vw, 3rem); }
@media (min-width: 820px) { .ih__grid { grid-template-columns: repeat(3, 1fr); } }
.ih__item { padding-top: 1.15rem; border-top: 2px solid var(--gold-deep); }
.ih__n { font-family: var(--display); font-size: 1.1rem; color: var(--gold); margin-bottom: .5rem; font-variant-numeric: tabular-nums; }
.ih__item h3 { margin-bottom: .55rem; }
.ih__item p { font-size: .92rem; color: var(--on-dark-muted); }
.ih__band { margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.ih__band img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; border-radius: var(--radius); }
.ih__band figcaption { margin-top: .7rem; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--on-dark-muted); }

/* =============================================================================
   BLOCO 4 — Investimento
   ========================================================================== */
.pricing__grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (min-width: 940px) { .pricing__grid { grid-template-columns: 1fr 1.1fr; } }
.pricing__head h2 { margin-bottom: 1rem; max-width: 18ch; }
.pricing__head .lede { color: var(--on-light-muted); }
.pricing__src { margin-top: 1.25rem; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-deep); }

.ptable { border-top: 1px solid var(--line-light); }
.ptable__row {
  display: grid; gap: .2rem 1.5rem; align-items: baseline;
  grid-template-columns: 1fr auto; padding-block: 1.05rem;
  border-bottom: 1px solid var(--line-light);
}
.ptable__item { font-family: var(--display); font-size: 1.15rem; line-height: 1.2; }
.ptable__item span { display: block; font-family: var(--sans); font-size: .82rem; color: var(--on-light-muted); margin-top: .25rem; }
.ptable__range { font-weight: 600; font-size: 1rem; color: var(--gold-deep); font-variant-numeric: tabular-nums; white-space: nowrap; }
.ptable__row--total { background: var(--gold-wash); box-shadow: inset 3px 0 0 var(--gold-deep); padding-inline: 1rem; margin-inline: -1rem; border-bottom: 0; }
.ptable__row--total .ptable__item { font-size: 1.25rem; }
.ptable__row--total .ptable__range { font-size: 1.15rem; color: var(--on-light); }

.pricing__lux { margin-top: 1rem; font-size: .88rem; color: var(--on-light-muted); }
.pricing__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line-light); }
.pricing__foot p { font-size: .88rem; color: var(--on-light-muted); flex: 1 1 20rem; }

/* =============================================================================
   BLOCO 5 — Cronograma
   ========================================================================== */
.proc__title { max-width: 22ch; margin-bottom: 1rem; }
.proc__intro { margin-bottom: clamp(2rem, 4.5vw, 3rem); }
.steps { border-top: 1px solid var(--line-dark); max-width: 64rem; }
.step {
  display: grid; gap: .3rem 1.6rem; align-items: baseline;
  grid-template-columns: auto 1fr; padding-block: 1.4rem;
  border-bottom: 1px solid var(--line-dark);
}
.step__n { font-family: var(--display); font-size: 1.4rem; color: var(--gold); grid-row: 1 / span 2; font-variant-numeric: tabular-nums; }
.step__t { font-family: var(--display); font-size: 1.25rem; margin-bottom: .25rem; }
.step__d { font-size: .9rem; color: var(--on-dark-muted); max-width: 46ch; }
.step__when { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
@media (min-width: 820px) {
  .step { grid-template-columns: auto 1fr auto; }
  .step__body { grid-column: 2; }
  .step__when { grid-column: 3; grid-row: 1; align-self: center; }
}
@media (max-width: 819px) { .step__when { grid-column: 2; margin-top: .5rem; } }
.proc__foot { margin-top: 1.75rem; font-size: .9rem; color: var(--gold); max-width: 58ch; }

/* =============================================================================
   BLOCO 6 — Portfolio
   ========================================================================== */
.work__title { max-width: 20ch; margin-bottom: 1rem; }
.work__intro { margin-bottom: clamp(2rem, 4.5vw, 3rem); }
.work { display: grid; gap: clamp(1rem, 2.5vw, 1.6rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr)); }
.work__item { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--surface-2); }
.work__item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .7s var(--ease); }
.work__item:hover img { transform: scale(1.04); }
.work__cap {
  position: absolute; inset: auto 0 0 0; padding: 3.5rem 1.15rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(6,9,10,.55) 38%, rgba(6,9,10,.94) 80%);
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .25rem .7rem;
}
.work__piece { font-family: var(--display); font-size: 1.05rem; }
.work__meta { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: #BFC4C5; }

/* =============================================================================
   BLOCO 7 — Financiamento
   ========================================================================== */
.band--gold {
  background: linear-gradient(120deg, #C9A268 0%, #B98B45 55%, #A87B37 100%);
  color: #1C1506;
}
.fin { text-align: center; }
.fin h2 { margin-bottom: 1rem; }
.fin .lede { margin-inline: auto; color: #33270E; }
.fin__btns { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; margin-top: 2rem; }
.fin__note { margin-top: 1.5rem; font-size: .82rem; color: #43340F; }

/* =============================================================================
   BLOCO 8 — FAQ
   ========================================================================== */
.faq__title { margin-bottom: clamp(1.75rem, 4vw, 2.5rem); }
.faq { border-top: 1px solid var(--line-dark); }
.faq__item { border-bottom: 1px solid var(--line-dark); }
.faq__q {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1.5rem;
  width: 100%; text-align: left; padding-block: 1.35rem; color: inherit;
  font-family: var(--display); font-size: clamp(1.05rem, 1rem + .35vw, 1.2rem); line-height: 1.3;
}
.faq__q:hover { color: var(--gold); }
.faq__ico { flex: none; width: 1rem; height: 1rem; position: relative; align-self: center; }
.faq__ico::before, .faq__ico::after { content: ''; position: absolute; inset: 50% 0 auto 0; height: 1px; background: var(--gold); transition: transform .3s var(--ease); }
.faq__ico::after { transform: rotate(90deg); }
.faq__q[aria-expanded='true'] .faq__ico::after { transform: rotate(0); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.faq__q[aria-expanded='true'] + .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding-bottom: 1.35rem; color: var(--on-dark-muted); max-width: var(--measure); font-size: .95rem; }

/* =============================================================================
   BLOCO 9 — Fechamento, NAP e mapa
   ========================================================================== */
.close { background: var(--surface); border-top: 1px solid var(--line-dark); padding-block: clamp(3.5rem, 9vw, 7rem); }
.close__cta { text-align: center; max-width: 44rem; margin-inline: auto; padding-bottom: clamp(3rem, 7vw, 4.5rem); }
.close__cta h2 { margin-bottom: 1rem; }
.close__cta .lede { margin-inline: auto; color: var(--on-dark-muted); }
.close__btns { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; margin-top: 2rem; }

/* Linha da licenca: fica entre o CTA final e o NAP, com peso proprio.
   Na Florida o numero e obrigatorio em publicidade, e para o comprador e o
   unico dado da pagina que ele confere sozinho. */
.close__license {
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem;
  justify-content: center; text-align: center;
  padding: .9rem 1.2rem; margin-bottom: clamp(2rem, 5vw, 3rem);
  border: 1px solid rgba(201, 162, 104, .3); border-radius: var(--radius);
  background: var(--gold-wash);
  font-size: .88rem; color: var(--on-dark);
}
.close__license svg { color: var(--gold); flex: none; }
.close__license b { font-variant-numeric: tabular-nums; letter-spacing: .02em; }
/* O texto vai todo dentro de um span: se cada trecho virasse item do flex,
   o gap abriria espaco antes da virgula. */
.close__license span { display: inline; }
.close__license a { color: var(--gold); text-decoration: none; }
.close__license a:hover { text-decoration: underline; }

.nap { display: grid; gap: 2.5rem; padding-top: clamp(2.5rem, 6vw, 4rem); border-top: 1px solid var(--line-dark); }
@media (min-width: 900px) { .nap { grid-template-columns: 1fr 1.05fr; align-items: start; } }
.nap__cols { display: grid; gap: 1.75rem; }
@media (min-width: 560px) { .nap__cols { grid-template-columns: 1fr 1fr; } }
.nap h3 { font-family: var(--sans); font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .6rem; }
.nap address { font-style: normal; }
.nap p, .nap a { font-size: .93rem; color: var(--on-dark-muted); text-decoration: none; }
.nap a:hover { color: var(--gold); }
.nap__hours { display: grid; gap: .3rem; font-size: .88rem; }
.nap__hours div { display: flex; justify-content: space-between; gap: 1.25rem; max-width: 22rem; color: var(--on-dark-muted); }
.nap__map { border: 1px solid var(--line-dark); border-radius: var(--radius); overflow: hidden; min-height: 18rem; background: var(--surface-2); }
.nap__map iframe { width: 100%; height: 100%; min-height: 18rem; border: 0; display: block; filter: grayscale(1) invert(1) brightness(.82) contrast(1.15); }
.nap__areas { font-size: .88rem; }

.legal { margin-top: clamp(2.5rem, 6vw, 4rem); padding-top: 1.5rem; border-top: 1px solid var(--line-dark); display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; font-size: .76rem; color: var(--on-dark-muted); }

/* =============================================================================
   Barra fixa no mobile — Call | WhatsApp | Quote
   ========================================================================== */
.sticky {
  position: fixed; inset: auto 0 0 0; z-index: 50;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: rgba(10, 14, 16, .96); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-dark);
  padding-bottom: env(safe-area-inset-bottom);
  transform: translateY(110%); transition: transform .3s var(--ease);
}
.sticky[data-show] { transform: none; }
.sticky a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .25rem;
  padding: .65rem .5rem; text-decoration: none; color: var(--on-dark);
  font-size: .7rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
}
.sticky a + a { border-left: 1px solid var(--line-dark); }
.sticky a:last-child { background: var(--gold); color: #17120A; }
.sticky svg { width: 1.1rem; height: 1.1rem; }
@media (min-width: 900px) { .sticky { display: none; } }
@media (max-width: 899px) { body { padding-bottom: 4.4rem; } }

/* =============================================================================
   Pagina de obrigado
   ========================================================================== */
.ty { min-height: 100svh; display: grid; place-items: center; text-align: center; }
.ty h1 { margin-bottom: 1.25rem; }
.ty .lede { margin-inline: auto; }
.ty__btns { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 2.5rem; }
.ty__note { margin-top: 2.5rem; font-size: .85rem; color: var(--on-dark-muted); }

/* ---------- Utilitarios --------------------------------------------------- */
.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;
}
[hidden] { display: none !important; }

/* Honeypot: fora da tela em vez de display:none, porque bot mais esperto
   ignora campo com display:none. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.sr-only:focus-visible {
  position: fixed; top: .75rem; left: .75rem; z-index: 200;
  width: auto; height: auto; margin: 0; overflow: visible; clip: auto; white-space: normal;
  padding: .8rem 1.2rem; border-radius: var(--radius);
  background: var(--gold); color: #17120A; font-weight: 600; text-decoration: none;
}

/* Alvos de toque no celular. Metade da conversao desta pagina e ligacao;
   alvo pequeno em link de telefone custa lead. */
@media (max-width: 899px) {
  .nap p a { display: inline-flex; align-items: center; min-height: 44px; }
  .nap__hours div { min-height: 2rem; align-items: center; }
  .fcard__alt a { display: inline-flex; align-items: center; min-height: 44px; }
}
