/* =============================================================================
   G'S COMPANY CLEANING SERVICES — Reno / Sparks, NV

   IDENTIDADE: alinhada aos criativos de feed da equipe (João Thiago, jul/2026):
   dourado da marca + charcoal + branco, com formas curvas organicas.

   O SITE E' CLARO, de proposito. Os criativos sao dark porque no feed precisam
   parar o scroll; a pagina vende LIMPEZA — luz, ar e espaco vazio sao o produto.
   O charcoal entra so' em blocos pontuais, como ancora.

   MOBILE-FIRST: a base e' o mobile. Todo media query e' `min-width`, nunca
   `max-width` — o desktop e' o enriquecimento, nao o ponto de partida.
   ========================================================================== */

:root {
  color-scheme: light;

  /* --- marca --- */
  --gold:       #E3B23C;   /* dourado dos criativos — fundos, CTA, formas */
  --gold-soft:  #F0CE7A;
  --gold-pale:  #FAEDCF;
  --gold-text:  #8C6118;   /* 5.2:1 sobre --paper: o dourado puro NAO serve p/ texto */

  --charcoal:      #262624;
  --charcoal-deep: #171715;
  --charcoal-soft: #3E3C38;

  /* --- claros: o produto e' limpeza --- */
  --paper:      #FCFAF5;
  --paper-2:    #F5F1E7;
  --paper-3:    #EDE7D9;
  --rule:       #E2DBC9;

  --ink:      #1C1B19;
  --ink-soft: #3A3835;
  --muted:    #6A6355;      /* 5.6:1 sobre --paper */

  /* --- tipografia --- */
  --f-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --f-body: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --t-hero:  clamp(2.5rem, 1.1rem + 6.2vw, 6.2rem);
  --t-h2:    clamp(1.8rem, 1.15rem + 2.7vw, 3.5rem);
  --t-h3:    clamp(1.08rem, 1rem + .45vw, 1.32rem);
  --t-body:  clamp(1rem, .96rem + .2vw, 1.08rem);
  --t-small: .875rem;
  --t-label: .7rem;

  --gap:     clamp(1rem, .7rem + 1.2vw, 1.75rem);
  --section: clamp(3.25rem, 2rem + 5vw, 7.5rem);
  --maxw: 1240px;
  --r: 4px;

  --shadow:   0 1px 2px rgba(28,27,25,.04), 0 22px 44px -22px rgba(28,27,25,.2);
  --shadow-s: 0 1px 2px rgba(28,27,25,.05), 0 8px 20px -10px rgba(28,27,25,.14);
}

/* ===== 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; animation-iteration-count: 1 !important; }
}

body {
  font-family: var(--f-body);
  font-size: var(--t-body);
  line-height: 1.65;
  color: var(--ink-soft);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  /* Grao COMO FUNDO, nao camada por cima: a versao com ::before fixed +
     mix-blend-mode custava 2 pontos de performance e 716ms de LCP. */
  background-color: var(--paper);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
}

img, picture, svg { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: var(--gold-text); }

h1, h2, h3 {
  font-family: var(--f-display);
  font-variation-settings: 'SOFT' 0, 'WONK' 1, 'opsz' 144;
  font-weight: 600; line-height: 1.04; letter-spacing: -.022em;
  color: var(--ink); text-wrap: balance;
}
h1 { font-size: var(--t-hero); }
h2 { font-size: var(--t-h2); }
h3 { font-family: var(--f-body); font-size: var(--t-h3); font-weight: 600; line-height: 1.35; letter-spacing: -.005em; }

:focus-visible { outline: 2px solid var(--gold-text); outline-offset: 3px; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 1.15rem; }
@media (min-width: 40rem) { .wrap { padding-inline: 2rem; } }
@media (min-width: 64rem) { .wrap { padding-inline: 3rem; } }

.section { padding-block: var(--section); position: relative; }
.section--tint { background: var(--paper-2); }
.section--rule { border-top: 1px solid var(--rule); }

/* ===== curva organica — assinatura visual dos criativos =================== */
.curve { position: relative; overflow: hidden; }
.curve::before {
  content: ''; position: absolute; pointer-events: none; z-index: 0;
  width: 130vw; height: 130vw; max-width: 62rem; max-height: 62rem;
  right: -55vw; top: -42vw;
  background: var(--gold); opacity: .1;
  border-radius: 50%;
}
@media (min-width: 64rem) { .curve::before { right: -20rem; top: -24rem; opacity: .12; } }
.curve > * { position: relative; z-index: 1; }

/* ===== label ============================================================== */
.eyebrow {
  display: flex; align-items: baseline; gap: .75rem;
  font-family: var(--f-body); font-size: var(--t-label); font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.15rem;
}
.eyebrow::before {
  content: attr(data-num);
  font-family: var(--f-display); font-variation-settings: 'WONK' 1;
  font-size: 1.5rem; font-weight: 600; letter-spacing: 0;
  color: var(--gold-text); line-height: 1;
}
.eyebrow--plain::before { content: ''; width: 1.75rem; height: 2px; background: var(--gold); align-self: center; }
.center .eyebrow { justify-content: center; }

.lead { font-size: clamp(1.04rem, .98rem + .4vw, 1.26rem); line-height: 1.55; color: var(--ink-soft); }
.center { text-align: center; }
.measure-center { max-width: 58ch; margin-inline: auto; }

/* ===== botoes ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1.05em 1.75em; border: 2px solid transparent; border-radius: var(--r);
  font-family: var(--f-body); font-size: .95rem; font-weight: 600; letter-spacing: .01em;
  text-decoration: none; cursor: pointer; min-height: 3.25rem; text-align: center;
  transition: background-color .25s cubic-bezier(.2,.7,.3,1), color .25s, border-color .25s, transform .25s, box-shadow .25s;
}
/* CTA dourado com texto charcoal = 9:1, e e' a cor da marca nos criativos */
.btn--primary { background: var(--gold); color: var(--charcoal-deep); border-color: var(--gold); box-shadow: 0 1px 2px rgba(140,97,24,.16), 0 10px 24px -12px rgba(140,97,24,.5); }
.btn--primary:hover { background: var(--gold-soft); border-color: var(--gold-soft); transform: translateY(-2px); }
.btn--primary svg { transition: transform .25s cubic-bezier(.2,.7,.3,1); }
.btn--primary:hover svg { transform: translateX(4px); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }

.btn--wide { width: 100%; }
.btn svg { flex: none; }

/* mobile: CTAs empilhados e cheios; a partir de 30rem, lado a lado */
.cta-row { display: flex; flex-direction: column; gap: .6rem; }
.cta-row > .btn { width: 100%; }
@media (min-width: 30rem) {
  .cta-row { flex-direction: row; flex-wrap: wrap; gap: .7rem; }
  .cta-row > .btn { width: auto; }
}

/* ===== header ============================================================= */
.header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--rule);
}
.header__in { display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding-block: .6rem; }
.header__logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; min-width: 0; }
.header__logo img { width: 2.35rem; flex: none; }
@media (min-width: 48rem) { .header__logo img { width: 3rem; } }
.header__name { font-family: var(--f-display); font-variation-settings: 'WONK' 1; font-weight: 600; font-size: .98rem; color: var(--ink); line-height: 1.1; letter-spacing: -.01em; }
.header__name span { display: block; font-family: var(--f-body); font-size: .54rem; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); margin-top: .16rem; }
@media (min-width: 48rem) { .header__name { font-size: 1.08rem; } .header__name span { font-size: .58rem; } }
.header__right { display: flex; align-items: center; gap: 1.1rem; }
.header__phone { display: none; font-weight: 600; font-size: .92rem; color: var(--ink); text-decoration: none; }
.header__phone:hover { color: var(--gold-text); }
@media (min-width: 62rem) { .header__phone { display: inline-flex; } }
/* no mobile o botao do header sai: a barra fixa do rodape ja carrega o CTA */
.header .btn { display: none; }
@media (min-width: 48rem) { .header .btn { display: inline-flex; padding: .7em 1.3em; min-height: 2.7rem; font-size: .88rem; } }

/* ===== hero =============================================================== */
.hero { padding-block: 2.25rem var(--section); }
@media (min-width: 64rem) { .hero { padding-block: 4rem var(--section); } }

.hero__grid { display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 60rem) {
  .hero__grid { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 4rem; }
  .hero__copy { flex: 1 1 24rem; min-width: 0; }
  .hero__media { flex: 1 1 18rem; max-width: 29rem; min-width: 0; }
}

@keyframes rise { from { opacity: 0; transform: translateY(1.25rem); } to { opacity: 1; transform: none; } }
.hero__copy > *, .hero__media { animation: rise .85s cubic-bezier(.2,.7,.3,1) backwards; }
.hero__copy > .eyebrow { animation-delay: .04s; }
.hero__copy > h1 { animation-delay: .12s; }
.hero__copy > .lead { animation-delay: .22s; }
.hero__copy > .cta-row { animation-delay: .3s; }
.hero__copy > .hero__note { animation-delay: .38s; }
.hero__media { animation-delay: .18s; }

.hero h1 { margin-bottom: 1.1rem; }
.hero h1 em { font-style: italic; font-variation-settings: 'WONK' 1, 'SOFT' 8; color: var(--gold-text); }
.hero .lead { margin-bottom: 1.65rem; max-width: 36ch; }
.hero__note { margin-top: 1rem; font-size: var(--t-small); color: var(--muted); display: flex; align-items: center; gap: .5rem; }
.hero__note svg { color: var(--gold-text); flex: none; }

.hero__figure { position: relative; }
.hero__figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r); }
@media (min-width: 60rem) { .hero__figure img { aspect-ratio: 3 / 4; } }
.hero__badge {
  position: relative; margin-top: -1.75rem; margin-inline: .9rem;
  background: var(--charcoal); color: var(--paper);
  border-radius: var(--r); padding: .85rem 1rem;
  font-size: .82rem; font-weight: 500; line-height: 1.4;
  display: flex; align-items: center; gap: .65rem; box-shadow: var(--shadow);
}
.hero__badge svg { color: var(--gold); flex: none; }
@media (min-width: 60rem) { .hero__badge { position: absolute; left: -1.25rem; right: 1.75rem; bottom: 1.5rem; margin: 0; } }

/* ===== trust ============================================================== */
.trust { border-block: 1px solid var(--rule); background: var(--paper-2); }
.trust__in { display: flex; flex-direction: column; gap: 1.35rem; padding-block: 1.85rem; }
@media (min-width: 48rem) { .trust__in { flex-direction: row; gap: var(--gap); padding-block: 2.5rem; } }
/* flex-basis SO' a partir do desktop. No mobile o container e' flex-column, e
   ali `flex: 1 1 15rem` vira ALTURA de 15rem — cada item esticava 240px e a
   faixa ficava cheia de vao. (CLAUDE.md §7, antipattern do flex-basis.) */
.trust__item { flex: 0 0 auto; padding-top: 1.15rem; border-top: 1px solid var(--rule); }
.trust__item:first-child { padding-top: 0; border-top: 0; }
@media (min-width: 48rem) {
  .trust__item { flex: 1 1 15rem; padding-top: 0; border-top: 0; padding-inline: 0 1.25rem; }
  .trust__item + .trust__item { border-left: 1px solid var(--rule); padding-left: 1.5rem; }
}
.trust__num {
  display: block; font-family: var(--f-display); font-variation-settings: 'WONK' 1, 'opsz' 144;
  font-size: clamp(2.4rem, 1.7rem + 2.4vw, 3.4rem); font-weight: 600; line-height: .95;
  color: var(--gold-text); letter-spacing: -.03em; margin-bottom: .35rem;
}
.trust__item b { display: block; color: var(--ink); font-size: .97rem; font-weight: 600; margin-bottom: .15rem; }
/* classe explicita: `.trust__item span` (0-1-1) venceria `.trust__num` (0-1-0) */
.trust__desc { display: block; font-size: var(--t-small); color: var(--muted); line-height: 1.5; }

/* ===== estimador ========================================================== */
.est-card {
  background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r);
  padding: 1.25rem; max-width: 43rem; margin-inline: auto; box-shadow: var(--shadow);
}
@media (min-width: 40rem) { .est-card { padding: 2.25rem; } }
.est-progress { height: 3px; background: var(--rule); overflow: hidden; margin-bottom: .65rem; border-radius: 3px; }
.est-progress__bar { height: 100%; background: var(--gold); transition: width .45s cubic-bezier(.2,.7,.3,1); }
.est-progress__label { font-size: var(--t-label); font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.35rem; }

.est-step > h3 { font-family: var(--f-display); font-variation-settings: 'WONK' 1; font-size: clamp(1.3rem, 1.1rem + .9vw, 1.8rem); font-weight: 600; letter-spacing: -.02em; margin-bottom: .4rem; color: var(--ink); }
.est-step__hint { font-size: .92rem; color: var(--muted); margin-bottom: 1.3rem; max-width: 52ch; }

.field { margin-bottom: 1.15rem; }
.field > label, .field-label { display: block; font-size: var(--t-label); font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--ink); margin-bottom: .5rem; }
.input, .select {
  width: 100%; padding: .95em 1rem; border: 1px solid var(--rule); border-radius: var(--r);
  background: var(--paper-2); color: var(--ink); transition: border-color .2s, background-color .2s, box-shadow .2s;
  font-size: 1rem;   /* 16px+ evita o zoom automatico do iOS ao focar */
}
.input:focus, .select:focus { border-color: var(--gold-text); background: var(--paper); outline: none; box-shadow: 0 0 0 3px rgba(227,178,60,.28); }
.input::placeholder { color: #A69C86; }
textarea.input { min-height: 5.5rem; resize: vertical; }

.opt-grid { display: flex; flex-wrap: wrap; gap: .5rem; }
.opt {
  flex: 1 1 100%; display: flex; flex-direction: column; gap: .12rem;
  padding: .95rem 1rem; text-align: left; min-height: 3.1rem;
  background: var(--paper-2); border: 1px solid var(--rule); border-radius: var(--r);
  cursor: pointer; transition: border-color .2s, background-color .2s, color .2s;
}
@media (min-width: 34rem) { .opt { flex: 1 1 9.5rem; } }
.opt:hover { border-color: var(--gold); }
.opt b { color: var(--ink); font-size: .95rem; font-weight: 600; }
.opt small { color: var(--muted); font-size: .8rem; line-height: 1.45; }
.opt[aria-pressed="true"] { border-color: var(--charcoal); background: var(--charcoal); }
.opt[aria-pressed="true"] b { color: var(--gold); }
.opt[aria-pressed="true"] small { color: #B8B2A4; }
.opt--sm { flex: 1 1 calc(50% - .25rem); text-align: center; align-items: center; justify-content: center; }
@media (min-width: 34rem) { .opt--sm { flex: 1 1 6rem; } }

.row-2 { display: flex; flex-wrap: wrap; gap: .85rem; }
.row-2 > * { flex: 1 1 10rem; }

.est-nav { display: flex; gap: .75rem; margin-top: 1.6rem; align-items: center; }
.est-nav .btn { flex: 1 1 auto; }
.btn--back { flex: 0 0 auto; background: none; border: none; color: var(--muted); font-size: var(--t-label); font-weight: 600; letter-spacing: .15em; text-transform: uppercase; cursor: pointer; padding: .9rem .35rem; border-bottom: 1px solid var(--rule); }
.btn--back:hover { color: var(--ink); border-color: var(--ink); }

.est-error { margin-top: .95rem; padding: .85rem 1rem; background: var(--gold-pale); border-left: 3px solid var(--gold-text); border-radius: 0 var(--r) var(--r) 0; color: #6B4A11; font-size: var(--t-small); font-weight: 500; }

/* bloco charcoal: ancora, o unico escuro da dobra */
.est-result { margin: 0 0 1.6rem; padding: 1.5rem 1.15rem; background: var(--charcoal); border-radius: var(--r); text-align: center; }
.est-range-label { font-size: var(--t-label); font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.est-range { font-family: var(--f-display); font-variation-settings: 'WONK' 1, 'opsz' 144; font-size: clamp(2.5rem, 1.7rem + 3.4vw, 4rem); font-weight: 600; color: var(--paper); line-height: 1; letter-spacing: -.035em; margin: .45rem 0 .65rem; }
.est-range span { color: var(--gold); margin-inline: .1em; font-weight: 400; }
.est-note { font-size: .82rem; color: #B8B2A4; line-height: 1.55; max-width: 42ch; margin-inline: auto; }

.est-outside, .est-success { text-align: center; padding: 1.1rem 0; }
.est-outside h3, .est-success h3 { font-family: var(--f-display); font-variation-settings: 'WONK' 1; font-size: 1.5rem; font-weight: 600; letter-spacing: -.02em; color: var(--ink); margin-bottom: .65rem; }
.est-outside p, .est-success p { color: var(--muted); margin-bottom: 1.3rem; max-width: 46ch; margin-inline: auto; }
.est-success__icon { width: 3rem; height: 3rem; margin: 0 auto 1rem; border-radius: 50%; background: var(--gold); color: var(--charcoal-deep); display: grid; place-items: center; }

/* ===== servicos: lista editorial ========================================== */
.svc { border-top: 1px solid var(--rule); }
.svc__item {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .3rem 1.5rem;
  padding-block: 1.2rem; border-bottom: 1px solid var(--rule);
  transition: background-color .3s;
}
@media (min-width: 48rem) { .svc__item { padding-block: 1.75rem; } .svc__item:hover { background: var(--paper-2); } }
.svc__num { flex: none; font-family: var(--f-display); font-variation-settings: 'WONK' 1; font-size: .9rem; font-weight: 600; color: var(--gold-text); width: 2rem; }
.svc__name { flex: 1 1 12rem; font-family: var(--f-display); font-variation-settings: 'WONK' 1, 'opsz' 144; font-size: clamp(1.3rem, 1.1rem + 1vw, 1.95rem); font-weight: 600; letter-spacing: -.025em; color: var(--ink); line-height: 1.14; }
.svc__desc { flex: 2 1 19rem; font-size: .94rem; color: var(--muted); line-height: 1.6; }
.svc__price { flex: 1 1 100%; font-size: .87rem; font-weight: 600; color: var(--gold-text); }
@media (min-width: 60rem) { .svc__price { flex: 0 1 10rem; text-align: right; } }

/* ===== checklist / negativas ============================================== */
.checks { display: flex; flex-wrap: wrap; gap: 0 2rem; padding: 0; list-style: none; }
.checks li { flex: 1 1 14rem; display: flex; gap: .7rem; align-items: baseline; font-size: .96rem; padding-block: .6rem; border-bottom: 1px solid var(--rule); }
.checks svg { flex: none; color: var(--gold-text); transform: translateY(2px); }

.nope { list-style: none; padding: 0; display: flex; flex-direction: column; }
.nope li { display: flex; gap: .75rem; align-items: baseline; font-size: .94rem; color: var(--muted); padding-block: .95rem; border-bottom: 1px solid var(--rule); }
.nope svg { flex: none; color: #B5AB94; transform: translateY(2px); }
.nope b { color: var(--ink); font-weight: 600; }

/* ===== antes/depois ======================================================= */
.ba-grid { display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 60rem) { .ba-grid { flex-direction: row; flex-wrap: wrap; gap: 3rem; align-items: flex-start; } .ba { flex: 1 1 20rem; } .work { flex: 1 1 18rem; } }
.ba__pair { display: flex; gap: 3px; }
.ba__half { position: relative; flex: 1 1 50%; min-width: 0; }
.ba__half img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.ba__tag { position: absolute; top: 0; left: 0; background: var(--charcoal); color: var(--paper); font-size: .6rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; padding: .38rem .7rem; }
.ba__tag--after { background: var(--gold); color: var(--charcoal-deep); }
.ba__cap { padding-top: 1rem; margin-top: 1rem; font-size: .9rem; color: var(--muted); line-height: 1.55; border-top: 1px solid var(--rule); }
.ba__cap b { display: block; color: var(--ink); font-family: var(--f-display); font-variation-settings: 'WONK' 1; font-size: 1.22rem; font-weight: 600; letter-spacing: -.015em; margin-bottom: .28rem; }

.work__label { font-size: var(--t-label); font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: .9rem; padding-bottom: .65rem; border-bottom: 1px solid var(--rule); }
.work__grid { display: flex; gap: 3px; }
.work__item { flex: 1 1 33%; min-width: 0; overflow: hidden; }
.work__item img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.3,1); }
.work__item:hover img { transform: scale(1.05); }

/* ===== comparativo ======================================================== */
.vs { display: flex; flex-direction: column; }
@media (min-width: 52rem) { .vs { flex-direction: row; flex-wrap: wrap; } .vs__col { flex: 1 1 19rem; } }
.vs__col { padding: 1.5rem 1.25rem; }
@media (min-width: 40rem) { .vs__col { padding: 2.25rem; } }
.vs__col--them { background: var(--paper-2); border: 1px solid var(--rule); border-radius: var(--r) var(--r) 0 0; }
.vs__col--me { background: var(--charcoal); color: var(--paper); border-radius: 0 0 var(--r) var(--r); }
@media (min-width: 52rem) {
  .vs__col--them { border-radius: var(--r) 0 0 var(--r); }
  .vs__col--me { border-radius: 0 var(--r) var(--r) 0; }
}
.vs__col h3 { font-family: var(--f-display); font-variation-settings: 'WONK' 1; font-size: 1.35rem; font-weight: 600; letter-spacing: -.02em; margin-bottom: 1.2rem; padding-bottom: .8rem; }
.vs__col--them h3 { color: var(--muted); border-bottom: 1px solid var(--rule); }
.vs__col--me h3 { color: var(--gold); border-bottom: 1px solid rgba(252,250,245,.2); }
.vs__list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .9rem; font-size: .95rem; }
.vs__list li { display: flex; gap: .7rem; align-items: baseline; }
.vs__list svg { flex: none; transform: translateY(2px); }
.vs__col--them .vs__list { color: var(--muted); }
.vs__col--them svg { color: #B5AB94; }
.vs__col--me .vs__list { color: #DCD6C8; }
.vs__col--me svg { color: var(--gold); }

/* ===== passos ============================================================= */
.steps { display: flex; flex-direction: column; gap: 1.5rem; padding: 0; counter-reset: s; }
@media (min-width: 52rem) { .steps { flex-direction: row; flex-wrap: wrap; gap: var(--gap); } .steps > li { flex: 1 1 15rem; } }
.steps > li { list-style: none; padding-top: 1.15rem; border-top: 2px solid var(--charcoal); }
.steps > li::before {
  counter-increment: s; content: counter(s, decimal-leading-zero);
  display: block; font-family: var(--f-display); font-variation-settings: 'WONK' 1;
  font-size: 1rem; font-weight: 600; color: var(--gold-text); margin-bottom: .75rem;
}
.steps h3 { margin-bottom: .4rem; }
.steps p { font-size: .94rem; color: var(--muted); }

/* ===== faq ================================================================ */
.faq { max-width: 46rem; margin-inline: auto; border-top: 1px solid var(--rule); }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item summary {
  cursor: pointer; padding: 1.25rem 0; list-style: none;
  display: flex; justify-content: space-between; align-items: baseline; gap: 1.25rem;
  font-family: var(--f-display); font-variation-settings: 'WONK' 1;
  font-size: clamp(1.05rem, 1rem + .4vw, 1.28rem); font-weight: 600;
  color: var(--ink); letter-spacing: -.015em; line-height: 1.3; transition: color .2s;
}
.faq-item summary:hover { color: var(--gold-text); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: var(--f-body); font-size: 1.35rem; font-weight: 400; color: var(--gold-text); flex: none; line-height: 1; transition: transform .3s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body { padding: 0 0 1.4rem; font-size: .95rem; color: var(--muted); max-width: 54ch; }
.faq-item__body p + p { margin-top: .75rem; }

/* ===== area atendida ======================================================
   Era uma lista corrida com "·" no ::after de cada item: ao quebrar a linha o
   separador ficava orfao no fim, e as linhas nao alinhavam. Grade resolve os
   dois — 2 colunas no mobile, 4 no desktop, tudo alinhado e escaneavel. */
.areas {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0; padding: 0; margin-top: 1.75rem;
  border-top: 1px solid var(--rule); text-align: left;
}
@media (min-width: 40rem) { .areas { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 60rem) { .areas { grid-template-columns: repeat(4, 1fr); } }
.areas li {
  list-style: none;
  display: flex; align-items: center; gap: .55rem;
  padding: .85rem .5rem;
  border-bottom: 1px solid var(--rule);
  font-family: var(--f-display); font-variation-settings: 'WONK' 1, 'opsz' 144;
  font-size: clamp(1rem, .92rem + .5vw, 1.3rem); font-weight: 600;
  letter-spacing: -.02em; color: var(--ink); line-height: 1.2;
}
.areas li::before {
  content: ''; flex: none; width: .4rem; height: .4rem;
  border-radius: 50%; background: var(--gold);
}

/* ===== cta final ========================================================== */
.final { background: var(--charcoal); color: var(--paper); text-align: center; position: relative; overflow: hidden; }
.final::after {
  content: ''; position: absolute; pointer-events: none;
  width: 120vw; height: 120vw; max-width: 55rem; max-height: 55rem;
  left: -45vw; bottom: -60vw; border-radius: 50%;
  background: var(--gold); opacity: .1;
}
@media (min-width: 64rem) { .final::after { left: -18rem; bottom: -30rem; } }
.final > .wrap { position: relative; z-index: 1; }
.final h2 { color: var(--paper); }
.final .lead { color: #C2BCAE; }
.final .eyebrow { color: #A9A294; }
.final .btn--ghost { color: var(--paper); border-color: rgba(252,250,245,.45); }
.final .btn--ghost:hover { background: var(--paper); color: var(--charcoal); border-color: var(--paper); }
.final__logo { width: clamp(3.5rem, 3rem + 2vw, 5rem); margin: 0 auto 1.5rem; }

/* ===== rodape ============================================================= */
/* O espaco da barra fixa e' reservado DENTRO do rodape, nao no body: com
   `body { padding-bottom }` sobrava uma faixa CLARA de 75px colada embaixo do
   rodape escuro — o fundo do body aparecia depois do fim do conteudo. */
.footer { background: var(--charcoal-deep); color: #8D8677; font-size: var(--t-small); padding-block: 2.25rem; }
@media (max-width: 47.99rem) {
  .footer { padding-bottom: calc(2.25rem + 5.2rem); }
  /* ...mas quando a barra esta escondida (ela some no fim da pagina, porque o
     CTA final e' sentinela) o espaco reservado vira vao morto dentro do rodape.
     Condicionar ao estado real da barra em vez de reservar sempre. */
  body:has(.sticky-cta.is-hidden) .footer { padding-bottom: 2.25rem; }
}
/* alvo de toque >=44px: o telefone do rodape media 18px de altura no mobile */
.footer a { color: var(--paper-3); text-decoration: none; display: inline-flex; align-items: center; min-height: 44px; font-size: 1rem; font-weight: 600; }
.footer a:hover { color: var(--gold); }
.footer__in { display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; justify-content: space-between; align-items: center; }
.footer__legal { max-width: 46ch; line-height: 1.65; }
.footer__legal strong { font-family: var(--f-display); font-variation-settings: 'WONK' 1; font-size: 1.05rem; font-weight: 600; letter-spacing: -.01em; }

/* ===== barra fixa mobile ================================================== */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  padding: .65rem .85rem; padding-bottom: calc(.65rem + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--paper) 96%, transparent);
  backdrop-filter: blur(14px); border-top: 1px solid var(--rule);
  display: flex; gap: .5rem;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), opacity .25s;
}
.sticky-cta.is-hidden { transform: translateY(115%); opacity: 0; pointer-events: none; }
.sticky-cta .btn { flex: 1 1 auto; min-height: 3rem; }
.sticky-cta .btn--ghost { flex: 0 0 auto; padding-inline: 1.1em; }
@media (min-width: 48rem) { .sticky-cta { display: none; } }

/* ===== variantes A/B ====================================================== */
:root[data-price="off"] [data-only-price-on] { display: none !important; }
:root[data-price="on"]  [data-only-price-off] { display: none !important; }

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