/* =========================================================================
   NexSites — landing de conversão
   Direção: "a página é um navegador que você percorre".
   Todas as cores e a escala tipográfica saem daqui (custom properties).
   ========================================================================= */

:root {
  /* ---- Paleta (troque a marca inteira por aqui) ---- */
  --porcelana: #F7F6F3;   /* base quente */
  --tinta:     #15171C;   /* texto / chrome */
  --grafite:   #565C66;   /* texto secundário */
  --linha:     #E4E1DA;   /* divisórias suaves */
  --violeta:   #5B3DF5;   /* acento de marca (disciplina) */
  --violeta-08: rgba(91, 61, 245, .08);
  --violeta-16: rgba(91, 61, 245, .16);
  --verde:     #0E9E57;   /* acento FUNCIONAL: leva ao WhatsApp / "no ar" */
  --verde-esc: #0B8149;
  --surface:   #FFFFFF;   /* cards */

  /* ---- Tipografia ---- */
  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --body:    "Instrument Sans", system-ui, sans-serif;
  --mono:    "Space Mono", ui-monospace, monospace;

  /* Escala fluida com clamp() (mobile-first) */
  --fs-eyebrow: .78rem;
  --fs-body:    clamp(1rem, .96rem + .3vw, 1.12rem);
  --fs-h3:      clamp(1.1rem, 1rem + .5vw, 1.3rem);
  --fs-h2:      clamp(1.7rem, 1.3rem + 2.2vw, 2.9rem);
  /* máx 3.4rem: acima disso o h1 quebra linha dupla na coluna do grid (2 col ≥900px)
     e empurra o CTA pra baixo da dobra */
  --fs-h1:      clamp(2.25rem, 1.4rem + 2.6vw, 3.4rem);
  --fs-big:     clamp(2rem, 1.4rem + 3.4vw, 3.8rem);

  /* ---- Layout ---- */
  --wrap: 1120px;
  --pad: clamp(1.1rem, 4vw, 2rem);
  --radius: 16px;
  --radius-lg: 22px;
  --chrome-h: 54px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --shadow: 0 1px 2px rgba(21,23,28,.04), 0 12px 34px rgba(21,23,28,.07);
  --shadow-lg: 0 30px 70px rgba(21,23,28,.14);
}

/* --------------------------------- Reset --------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html.js.reduced, html:not(.js) { scroll-behavior: auto; }

body {
  font-family: var(--body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--tinta);
  background: var(--porcelana);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* espaço pra barra fixa do WhatsApp no mobile */
  padding-bottom: 0;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--display); line-height: 1.08; font-weight: 700; letter-spacing: -.02em; }
em { font-style: normal; color: var(--violeta); }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }

/* Foco visível no teclado (acessibilidade) */
:focus-visible { outline: 3px solid var(--violeta); outline-offset: 3px; border-radius: 6px; }
.btn:focus-visible, .chrome__cta:focus-visible { outline-offset: 4px; }

/* Ponto "no ar" */
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot--live { background: var(--verde); box-shadow: 0 0 0 0 rgba(14,158,87,.5); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(14,158,87,.45);} 70% { box-shadow: 0 0 0 7px rgba(14,158,87,0);} 100% { box-shadow: 0 0 0 0 rgba(14,158,87,0);} }

.todo-flag { color: #B26B00; background: #FFF2D6; padding: 0 .35em; border-radius: 5px; font-size: .85em; }

/* =============================== Fundo canvas ============================= */
/* Fundo "viewport" (background.js) — alphas calibrados no próprio desenho */
.bg-canvas {
  position: fixed; inset: 0; width: 100%; height: 100%;
  z-index: -1; pointer-events: none;
}

/* ============================ Barra de progresso ========================= */
.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 60;
  background: transparent;
}
.progress__bar {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--violeta), var(--verde));
  transition: width .1s linear;
}

/* ======================= Chrome do navegador (topo) ====================== */
.chrome {
  position: fixed; top: 3px; left: 0; right: 0; z-index: 55; height: var(--chrome-h);
  display: flex; align-items: center; gap: .7rem;
  padding-inline: clamp(.7rem, 3vw, 1.3rem);
  background: rgba(247,246,243,.82);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--linha);
}
.chrome__dots { display: flex; gap: 6px; }
.chrome__dots span { width: 11px; height: 11px; border-radius: 50%; background: var(--linha); }
.chrome__dots span:nth-child(1){ background:#FF6159;} .chrome__dots span:nth-child(2){ background:#FFC130;} .chrome__dots span:nth-child(3){ background: var(--verde);}
.chrome__brand { font-family: var(--display); font-weight: 800; letter-spacing: -.03em; font-size: 1.05rem; margin-right: .2rem; }
.chrome__url {
  flex: 1; min-width: 0; display: flex; align-items: center; gap: .4rem;
  font-family: var(--mono); font-size: .84rem; color: var(--grafite);
  background: var(--surface); border: 1px solid var(--linha); border-radius: 999px;
  padding: .38rem .8rem; overflow: hidden; white-space: nowrap;
}
.chrome__lock { flex: none; color: var(--verde); }
.chrome__host { color: var(--tinta); }
.chrome__path { color: var(--violeta); }
.chrome__caret { width: 2px; height: 15px; background: var(--violeta); display: inline-block; animation: caret 1s steps(1) infinite; }
@keyframes caret { 50% { opacity: 0; } }
.chrome__cta {
  flex: none; display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--body); font-weight: 600; font-size: .9rem;
  color: #fff; background: var(--verde); padding: .5rem .95rem; border-radius: 999px;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.chrome__cta:hover { background: var(--verde-esc); transform: translateY(-1px); }
.chrome__cta .dot--live { background: #fff; }
@media (max-width: 720px) { .chrome__cta { display: none; } .chrome__url { font-size: .78rem; } }

/* =========================== Navegação por pontos ======================== */
.dots-nav { position: fixed; right: 14px; top: 50%; transform: translateY(-50%); z-index: 50; }
.dots-nav ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.dots-nav button {
  display: flex; align-items: center; gap: .55rem; background: none; border: 0; cursor: pointer;
  font-family: var(--mono); font-size: .7rem; color: var(--grafite); padding: 2px;
}
.dots-nav .dot-label { opacity: 0; transform: translateX(6px); transition: opacity .25s, transform .25s; white-space: nowrap;
  background: var(--tinta); color: #fff; padding: 2px 8px; border-radius: 6px; }
.dots-nav button:hover .dot-label, .dots-nav button:focus-visible .dot-label { opacity: 1; transform: translateX(0); }
.dots-nav .dot-mark { width: 9px; height: 9px; border-radius: 50%; background: var(--linha); border: 2px solid transparent; transition: all .25s var(--ease); }
.dots-nav button[aria-current="true"] .dot-mark { background: var(--violeta); box-shadow: 0 0 0 3px var(--violeta-16); }
@media (max-width: 900px) { .dots-nav { display: none; } }

/* ================================= Seções ================================ */
.section { position: relative; padding-block: clamp(3.5rem, 9vw, 7rem); }
.hero { padding-top: calc(var(--chrome-h) + clamp(2rem, 7vw, 4rem)); }
.section__head { max-width: 640px; margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.section__title { font-size: var(--fs-h2); margin-top: .4rem; }
.eyebrow {
  font-family: var(--mono); font-size: var(--fs-eyebrow); text-transform: uppercase;
  letter-spacing: .12em; color: var(--grafite); display: inline-flex; align-items: center; gap: .5rem;
}

/* ---------------------------------- Botões -------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--body); font-weight: 600; font-size: 1rem; line-height: 1;
  padding: .95rem 1.5rem; border-radius: 999px; cursor: pointer; border: 1.5px solid transparent;
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease); text-align: center;
}
.btn--wa { background: var(--verde); color: #fff; box-shadow: 0 10px 26px rgba(14,158,87,.28); }
.btn--wa:hover { background: var(--verde-esc); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(14,158,87,.34); }
.btn--wa::before { content: ""; width: 18px; height: 18px; background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16 3C9.4 3 4 8.3 4 14.9c0 2.3.7 4.5 1.9 6.4L4 29l7-1.8c1.8 1 3.9 1.5 6 1.5 6.6 0 12-5.3 12-11.9C29 8.3 23.6 3 16 3z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16 3C9.4 3 4 8.3 4 14.9c0 2.3.7 4.5 1.9 6.4L4 29l7-1.8c1.8 1 3.9 1.5 6 1.5 6.6 0 12-5.3 12-11.9C29 8.3 23.6 3 16 3z'/%3E%3C/svg%3E") center/contain no-repeat; }
.btn--ghost { background: transparent; color: var(--tinta); border-color: var(--tinta); }
.btn--ghost:hover { background: var(--tinta); color: var(--porcelana); transform: translateY(-2px); }
.btn--big { font-size: 1.15rem; padding: 1.15rem 2rem; }

/* ================================== HERO ================================= */
.hero__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.hero__title { font-size: var(--fs-h1); font-weight: 800; margin: 1.1rem 0; }
.hero__title .line { display: block; }
.hero__sub { color: var(--grafite); max-width: 40ch; font-size: clamp(1.05rem, 1rem + .4vw, 1.25rem); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.6rem 0 2rem; }

.proof { display: flex; flex-wrap: wrap; gap: clamp(1.2rem, 5vw, 2.6rem); border-top: 1px solid var(--linha); padding-top: 1.4rem; }
.proof__item dt { font-family: var(--display); font-weight: 800; font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.4rem); color: var(--tinta); letter-spacing: -.03em; }
.proof__item dd { font-family: var(--mono); font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; color: var(--grafite); margin-top: .2rem; }

/* Mockup de navegador */
.browser { border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid var(--linha); }
.browser__bar { display: flex; align-items: center; gap: .7rem; padding: .6rem .9rem; background: #F0EEE9; border-bottom: 1px solid var(--linha); }
.browser__dots { display: flex; gap: 6px; }
.browser__dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--linha); }
.browser__dots i:nth-child(1){ background:#FF6159;} .browser__dots i:nth-child(2){ background:#FFC130;} .browser__dots i:nth-child(3){ background: var(--verde);}
.browser__url { flex: 1; font-family: var(--mono); font-size: .78rem; color: var(--grafite); background: var(--porcelana); border-radius: 999px; padding: .28rem .7rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.browser__screen { position: relative; aspect-ratio: 16 / 10; background: var(--porcelana); }
.browser__screen img { width: 100%; height: 100%; object-fit: cover; }
.browser__cursor { position: absolute; width: 20px; height: 20px; left: 60%; top: 55%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M5 2l14 8-6 1.5L16 19l-3 1-3-8-5 3z' fill='%2315171C' stroke='%23fff' stroke-width='1.2'/%3E%3C/svg%3E") center/contain no-repeat; }
.browser--float { will-change: transform; }
html.js:not(.reduced) .browser--float { animation: floaty 6s ease-in-out infinite; }
html.js:not(.reduced) .browser--float .browser__cursor { animation: cursorMove 5s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(-.4deg);} 50% { transform: translateY(-12px) rotate(.4deg);} }
@keyframes cursorMove { 0%,100% { transform: translate(0,0);} 30% { transform: translate(-70px,-30px);} 60% { transform: translate(30px,20px);} }

@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.05fr .95fr; }
}

/* ================================ PROBLEMA =============================== */
.problem__list { display: grid; gap: clamp(1rem, 3vw, 1.6rem); max-width: 22ch; margin-top: .5rem; }
.problem__line { font-family: var(--display); font-weight: 600; font-size: clamp(1.4rem, 1.1rem + 2.2vw, 2.6rem); line-height: 1.12; max-width: 18ch; }
.problem__line { max-width: none; }
.problem .problem__list { max-width: 900px; }
.problem__line:nth-child(1) em, .problem__line strong { color: var(--violeta); }

/* ================================ BENEFÍCIOS ============================= */
.cards { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr; gap: 1rem; }
.card { background: var(--surface); border: 1px solid var(--linha); border-radius: var(--radius); padding: clamp(1.3rem, 3vw, 1.8rem); box-shadow: var(--shadow); position: relative; overflow: hidden; }
.card::after { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--violeta), transparent); opacity: 0; transition: opacity .3s; }
.card:hover::after { opacity: 1; }
.card__idx { font-family: var(--mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--violeta); background: var(--violeta-08); padding: .25rem .55rem; border-radius: 6px; display: inline-block; margin-bottom: .9rem; }
.card h3 { font-size: var(--fs-h3); margin-bottom: .5rem; }
.card p { color: var(--grafite); }
@media (min-width: 640px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .cards { grid-template-columns: repeat(3, 1fr); } }

/* ================================ PORTFÓLIO ============================== */
.tabs { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.6rem; }
.tab {
  font-family: var(--mono); font-size: .82rem; padding: .5rem 1rem; border-radius: 999px;
  border: 1px solid var(--linha); background: var(--surface); color: var(--grafite); cursor: pointer;
  transition: all .2s var(--ease);
}
.tab:hover { border-color: var(--violeta); color: var(--violeta); }
.tab[aria-selected="true"] { background: var(--tinta); color: #fff; border-color: var(--tinta); }

.carousel { position: relative; }
.carousel__viewport { overflow: hidden; border-radius: var(--radius-lg); }
.carousel__track { list-style: none; padding: 0; display: flex; transition: transform .5s var(--ease); }
html.js.reduced .carousel__track { transition: none; }
.carousel__slide { flex: 0 0 100%; min-width: 100%; padding: 2px; }

.pf { display: grid; grid-template-columns: 1fr; gap: clamp(1.2rem, 4vw, 2.2rem); align-items: center;
  background: var(--surface); border: 1px solid var(--linha); border-radius: var(--radius-lg); padding: clamp(1.1rem, 3vw, 1.8rem); box-shadow: var(--shadow); }
.pf__browser { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--linha); box-shadow: var(--shadow); }
.pf__bar { display: flex; align-items: center; gap: .6rem; padding: .55rem .8rem; background: #F0EEE9; border-bottom: 1px solid var(--linha); }
.pf__bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--linha); }
.pf__bar i:nth-child(1){ background:#FF6159;} .pf__bar i:nth-child(2){ background:#FFC130;} .pf__bar i:nth-child(3){ background: var(--verde);}
.pf__url { flex: 1; font-family: var(--mono); font-size: .75rem; color: var(--grafite); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pf__shot { aspect-ratio: 16 / 10; background: var(--porcelana); position: relative; overflow: hidden; }
.pf__shot img { width: 100%; height: 100%; object-fit: cover; }

/* ---- Prévia AO VIVO (iframe em miniatura, screenshot de fallback por baixo) ---- */
.liveframe { position: absolute; inset: 0; z-index: 1; }
.liveframe iframe {
  width: 1280px; height: 800px; border: 0;
  transform-origin: 0 0;           /* escala calculada no JS: largura da moldura / 1280 */
  pointer-events: none;            /* nunca rouba o scroll — interação é no "Ver ao vivo" */
  background: transparent;
}
.livebadge {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  display: inline-flex; align-items: center; gap: .35rem;
  font-family: var(--mono); font-size: .66rem; text-transform: uppercase; letter-spacing: .1em;
  color: #fff; background: rgba(21,23,28,.78); padding: .3rem .6rem; border-radius: 999px;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.pf__nicho { font-family: var(--mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--violeta); }
.pf__name { font-family: var(--display); font-weight: 800; font-size: clamp(1.3rem, 1.1rem + 1vw, 1.8rem); margin: .3rem 0 .5rem; }
.pf__result { color: var(--grafite); margin-bottom: 1.1rem; }
.pf__actions { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; }
.pf__live { font-family: var(--body); font-weight: 600; color: var(--tinta); display: inline-flex; align-items: center; gap: .4rem; border-bottom: 2px solid var(--violeta); padding-bottom: 2px; }
.pf__live:hover { color: var(--violeta); }
.pf__cta { font-weight: 600; color: var(--verde-esc); display: inline-flex; align-items: center; gap: .35rem; }
.pf__cta:hover { text-decoration: underline; }
@media (min-width: 820px) { .pf { grid-template-columns: 1.25fr 1fr; } }

.carousel__arrow {
  position: absolute; top: 40%; transform: translateY(-50%); z-index: 5;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--linha);
  background: var(--surface); color: var(--tinta); cursor: pointer; box-shadow: var(--shadow);
  display: grid; place-items: center; transition: all .2s var(--ease);
}
.carousel__arrow:hover { background: var(--tinta); color: #fff; }
.carousel__arrow--prev { left: -10px; } .carousel__arrow--next { right: -10px; }
@media (max-width: 560px) { .carousel__arrow { top: 32%; } .carousel__arrow--prev { left: -6px; } .carousel__arrow--next { right: -6px; } }
.carousel__bullets { display: flex; gap: .5rem; justify-content: center; margin-top: 1.3rem; }
.carousel__bullets button { width: 9px; height: 9px; padding: 0; border-radius: 50%; border: 0; background: var(--linha); cursor: pointer; transition: all .2s var(--ease); }
.carousel__bullets button[aria-selected="true"] { background: var(--violeta); width: 26px; border-radius: 999px; }

/* ================================ COMO / TIMELINE ======================== */
.timeline { list-style: none; padding: 0; display: grid; gap: 1rem; counter-reset: step; }
.timeline__step { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start;
  background: var(--surface); border: 1px solid var(--linha); border-radius: var(--radius); padding: clamp(1.1rem, 3vw, 1.6rem); box-shadow: var(--shadow); position: relative; }
.timeline__n { font-family: var(--display); font-weight: 800; font-size: 1.4rem; color: #fff; background: var(--violeta);
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; }
.timeline__step h3 { font-size: var(--fs-h3); margin-bottom: .3rem; }
.timeline__step p { color: var(--grafite); }
.how__honesty { margin-top: 1.6rem; background: var(--violeta-08); border-left: 3px solid var(--violeta); border-radius: 10px; padding: 1.1rem 1.3rem; color: var(--tinta); max-width: 720px; }
@media (min-width: 760px) { .timeline { grid-template-columns: 1fr 1fr; } }

/* ================================ INCLUÍDO ============================== */
.included__cols { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
.checklist { list-style: none; padding: 0; display: grid; gap: .7rem; }
.checklist li { position: relative; padding-left: 2rem; }
.checklist li::before { content: ""; position: absolute; left: 0; top: .1rem; width: 21px; height: 21px; border-radius: 50%;
  background: var(--verde); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/70% no-repeat; }
.checklist li { padding-left: 2rem; }
.included__note { background: var(--surface); border: 1px dashed var(--linha); border-radius: var(--radius); padding: 1.3rem; }
.included__note h3 { font-size: var(--fs-h3); margin-bottom: .5rem; }
.included__note p { color: var(--grafite); }
@media (min-width: 860px) { .included__cols { grid-template-columns: 1.3fr 1fr; align-items: start; } }

/* Corrige o check (fundo verde recortado) */
.checklist li::before { background: var(--verde);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='%23000'/%3E%3C/svg%3E") center/contain no-repeat; }
.checklist li::after { content: ""; position: absolute; left: 4px; top: .35rem; width: 13px; height: 13px;
  background: #fff; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat; }

/* ================================ PLANOS ================================ */
.plans__grid { display: grid; grid-template-columns: 1fr; gap: 1rem; align-items: stretch; }
.plan { background: var(--surface); border: 1px solid var(--linha); border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2rem); box-shadow: var(--shadow); display: flex; flex-direction: column; }
.plan--best { border-color: var(--violeta); box-shadow: 0 0 0 2px var(--violeta), var(--shadow-lg); position: relative; }
.plan__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--violeta); color: #fff; font-family: var(--mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; padding: .3rem .8rem; border-radius: 999px; }
.plan__name { font-family: var(--display); font-weight: 800; font-size: 1.4rem; }
.plan__for { color: var(--grafite); font-size: .92rem; margin: .35rem 0 1rem; min-height: 2.6em; }
.plan__price { font-family: var(--display); font-weight: 800; font-size: 2rem; letter-spacing: -.03em; line-height: 1; }
.plan__price small { font-family: var(--mono); font-size: .72rem; font-weight: 400; color: var(--grafite); display: block; letter-spacing: .05em; margin-bottom: .3rem; }
.plan__feats { list-style: none; padding: 0; margin: 1.2rem 0; display: grid; gap: .55rem; flex: 1; }
.plan__feats li { padding-left: 1.6rem; position: relative; font-size: .95rem; }
.plan__feats li::before { content: ""; position: absolute; left: 0; top: .45rem; width: 12px; height: 2px; background: var(--violeta); }
.plan .btn { width: 100%; }
.plan--best .btn--ghost { border-color: var(--violeta); color: var(--violeta); }
.plan--best .btn--ghost:hover { background: var(--violeta); color: #fff; }
.plans__foot { text-align: center; color: var(--grafite); font-size: .9rem; margin-top: 1.4rem; }
@media (min-width: 880px) { .plans__grid { grid-template-columns: repeat(3, 1fr); } .plan--best { transform: translateY(-10px); } }

/* ============================== DEPOIMENTOS ============================= */
.testi__grid { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr; gap: 1rem; }
.testi__card { background: var(--surface); border: 1px solid var(--linha); border-radius: var(--radius); padding: clamp(1.3rem, 3vw, 1.8rem); box-shadow: var(--shadow); }
.testi__card--todo { border-style: dashed; }
.testi__quote { font-family: var(--display); font-weight: 500; font-size: 1.15rem; line-height: 1.4; margin-bottom: 1rem; }
.testi__who { font-size: .9rem; color: var(--grafite); }
.testi__who strong { color: var(--tinta); }
@media (min-width: 760px) { .testi__grid { grid-template-columns: repeat(3, 1fr); } }

/* ================================== FAQ ================================= */
.faq__wrap { max-width: 780px; }
.accordion { display: grid; gap: .6rem; }
.acc { background: var(--surface); border: 1px solid var(--linha); border-radius: var(--radius); overflow: hidden; }
.acc__q { width: 100%; text-align: left; font-family: var(--display); font-weight: 600; font-size: 1.05rem; color: var(--tinta);
  background: none; border: 0; cursor: pointer; padding: 1.15rem 1.3rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.acc__ic { flex: none; width: 18px; height: 18px; position: relative; }
.acc__ic::before, .acc__ic::after { content: ""; position: absolute; background: var(--violeta); border-radius: 2px; transition: transform .3s var(--ease); }
.acc__ic::before { left: 0; top: 8px; width: 18px; height: 2px; }
.acc__ic::after { left: 8px; top: 0; width: 2px; height: 18px; }
.acc__q[aria-expanded="true"] .acc__ic::after { transform: scaleY(0); }
.acc__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
html.js.reduced .acc__a { transition: none; }
.acc__a p { padding: 0 1.3rem 1.2rem; color: var(--grafite); }

/* =============================== CTA FINAL ============================== */
.final { text-align: center; }
.final__wrap { max-width: 760px; margin-inline: auto; }
.final__title { font-size: var(--fs-big); font-weight: 800; }
.final__sub { color: var(--grafite); font-size: 1.15rem; margin: 1.1rem auto 2rem; max-width: 46ch; }
.final__risk { font-family: var(--mono); font-size: .8rem; color: var(--grafite); margin-top: 1.2rem; }

/* ================================ RODAPÉ =============================== */
.footer { border-top: 1px solid var(--linha); background: var(--tinta); color: #C9CDD6; padding-block: clamp(2.5rem, 6vw, 4rem) 1.4rem; margin-top: 2rem; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 1.6rem; padding-bottom: 1.6rem; }
.footer__logo { font-family: var(--display); font-weight: 800; font-size: 1.4rem; color: #fff; }
.footer__brand p { margin-top: .3rem; }
.footer__area { font-family: var(--mono); font-size: .8rem; color: #8A90A0; }
.footer__links { display: flex; flex-direction: column; gap: .6rem; }
.footer__links a { color: #C9CDD6; }
.footer__links a:hover { color: #fff; }
.footer__base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; border-top: 1px solid #2A2E38; padding-top: 1.4rem; font-family: var(--mono); font-size: .78rem; color: #8A90A0; }
.footer__base .dot--live { vertical-align: middle; }
@media (min-width: 720px) { .footer__grid { grid-template-columns: 1.4fr 1fr; } }

/* ========================= Flutuante do WhatsApp ======================= */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--verde); color: #fff; font-weight: 600;
  padding: .95rem 1.3rem; border-radius: 999px; box-shadow: 0 14px 34px rgba(14,158,87,.4);
  transform: translateY(140%); opacity: 0; transition: transform .4s var(--ease), opacity .4s var(--ease), background .2s;
}
.wa-float.is-visible { transform: translateY(0); opacity: 1; }
.wa-float:hover { background: var(--verde-esc); }
html.js.reduced .wa-float { transition: opacity .2s; }
@media (max-width: 640px) {
  /* vira barra inferior fixa; body ganha respiro via JS */
  .wa-float { left: 12px; right: 12px; bottom: 12px; justify-content: center; padding: 1rem; font-size: 1.05rem; }
}

/* =============================== REVEALS =============================== */
/* Só escondemos quando há JS E o usuário aceita animação. Sem isso, tudo visível. */
html.js:not(.reduced) .reveal { opacity: 0; transform: translateY(22px); }
html.js:not(.reduced) .reveal.is-in { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js:not(.reduced) .hero__title .line { opacity: 0; transform: translateY(28px); }
html.js:not(.reduced) .hero.is-active .hero__title .line { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js:not(.reduced) .hero.is-active .hero__title .line:nth-child(1){ transition-delay: .05s; }
html.js:not(.reduced) .hero.is-active .hero__title .line:nth-child(2){ transition-delay: .13s; }
html.js:not(.reduced) .hero.is-active .hero__title .line:nth-child(3){ transition-delay: .21s; }
html.js:not(.reduced) .hero.is-active .hero__title .line:nth-child(4){ transition-delay: .29s; }

/* ===================== prefers-reduced-motion: OFF ===================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  /* .bg-canvas fica visível: background.js desenha UM frame estático e para */
  .reveal, .hero__title .line { opacity: 1 !important; transform: none !important; }
  .chrome__caret { display: none; }
}
