/* ============================================================================
   DOMÍNIO IDEAL — design system do site (dominioideal.com.br)
   Réplica fiel da identidade do site anterior (Montserrat, verde #7FC240,
   azul-cinza #415360/#4E6474, estrelas #F6DC53, CTA laranja #F24D28),
   reconstruída para a plataforma Tecna CMS.
   t-blocks.css continua linkado para blocos do catálogo não caírem sem estilo.
   ========================================================================== */

:root {
  --verde: #7FC240;
  --verde-600: #6DBF43;
  --verde-700: #5FA332;
  --verde-800: #4E8A28;
  --verde-soft: #EAF5DF;
  --ink: #415360;
  --slate: #4E6474;
  --cinza: #A5B2BB;
  --amarelo: #F6DC53;
  --laranja: #F24D28;
  --laranja-700: #D63E1D;
  --bg: #F4F8F7;
  --bg-2: #E4EEED;
  --line: #e0e7ee;
  --branco: #fff;
  --footer: #37444D;
  --footer-2: #2D3840;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(65, 83, 96, .10);
  --shadow-sm: 0 4px 14px rgba(65, 83, 96, .08);
  --font: "Montserrat", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--slate);
  background: var(--branco);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { color: var(--ink); line-height: 1.22; margin: 0 0 .6em; font-weight: 700; }
p { margin: 0 0 1em; }
a { color: var(--verde-700); text-decoration: none; }
a:hover { color: var(--verde-800); }
img, svg { max-width: 100%; height: auto; }

.container { width: min(1160px, 100% - 2.5rem); margin-inline: auto; }
.container--narrow { width: min(860px, 100% - 2.5rem); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: .6rem 1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------------------------------------------------------------- botões */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font: 600 .95rem/1 var(--font);
  padding: .95rem 1.9rem; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-decoration: none; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--verde); color: #fff; box-shadow: 0 6px 18px rgba(127, 194, 64, .35); }
.btn--primary:hover { background: var(--verde-700); color: #fff; }
.btn--accent { background: var(--laranja); color: #fff; box-shadow: 0 6px 18px rgba(242, 77, 40, .30); }
.btn--accent:hover { background: var(--laranja-700); color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border: 2px solid var(--line); }
.btn--ghost:hover { border-color: var(--verde); color: var(--verde-700); }
.btn--lg { padding: 1.1rem 2.4rem; font-size: 1.02rem; }
.btn--sm { padding: .6rem 1.2rem; font-size: .85rem; }

/* ---------------------------------------------------------------- navbar */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: box-shadow .2s ease;
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }
.navbar__inner {
  width: min(1160px, 100% - 2.5rem); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  min-height: 76px;
}
.navbar__logo { display: inline-flex; align-items: center; }
.navbar__logo img { height: 40px; width: auto; }
.navbar__menu { display: flex; align-items: center; gap: 1.6rem; }
.navbar__menu a {
  color: var(--slate); font-size: .92rem; font-weight: 500; position: relative; padding: .35rem 0;
}
.navbar__menu a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--verde); transition: right .2s ease;
}
.navbar__menu a:hover { color: var(--ink); }
.navbar__menu a:hover::after, .navbar__menu a[aria-current="page"]::after { right: 0; }
.navbar__cta { display: inline-flex; }
.navbar__toggle {
  display: none; background: none; border: 0; cursor: pointer; color: var(--ink);
  padding: .4rem; line-height: 0;
}
.navbar__toggle svg { width: 28px; height: 28px; }

@media (max-width: 920px) {
  .navbar__toggle { display: inline-flex; }
  .navbar__cta { display: none; }
  .navbar__menu {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-top: 1px solid var(--line);
    box-shadow: var(--shadow); padding: .5rem 0 1rem;
    display: none;
  }
  .navbar__menu.open { display: flex; }
  .navbar__menu a { padding: .85rem 1.6rem; font-size: 1rem; }
  .navbar__menu a::after { display: none; }
}

/* ------------------------------------------------------------- hero home */
/* Hero escuro "cinematico": tipografia central, barra de URL gigante digitando os
   dominios reais, glow verde, selos de confianca e letreiro do catalogo. */
.hero-home {
  position: relative;
  background:
    radial-gradient(1100px 500px at 50% -10%, rgba(127, 194, 64, .14), transparent 60%),
    linear-gradient(180deg, #26323B 0%, #37444D 100%);
  overflow: hidden;
  color: #E7EDF0;
}
.hero-home__stage { position: relative; min-height: min(88vh, 860px); display: flex; flex-direction: column; justify-content: center; }
.hero-home__canvas, .hero-home__frames {
  position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none;
}
.hero-home__frames { object-fit: cover; }
.hero-home__glow {
  position: absolute; left: 50%; top: 46%; transform: translate(-50%, -50%);
  width: min(820px, 92vw); height: 340px; pointer-events: none;
  background: radial-gradient(closest-side, rgba(127, 194, 64, .28), rgba(127, 194, 64, .07) 60%, transparent 75%);
  filter: blur(6px); will-change: transform, opacity;
}
.hero-home__inner {
  position: relative; z-index: 2; text-align: center;
  display: flex; flex-direction: column; align-items: center;
  padding: 5rem 0 6.5rem;
}
.hero-home__eyebrow {
  color: var(--verde); font-size: .8rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; margin-bottom: 1.1rem;
}
.hero-home__title {
  color: #fff; font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 800;
  letter-spacing: -.015em; max-width: 21ch; margin-bottom: .5em;
}
.hero-home__title .destaque { color: var(--verde); }
.hero-home__sub { font-size: 1.06rem; max-width: 38rem; color: #B9C6CE; margin-bottom: 2.2rem; }

/* barra de URL gigante */
.hero-url {
  display: flex; align-items: center; gap: .7rem;
  width: min(760px, 100%);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  padding: 1rem 1.6rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  margin-bottom: 2.4rem; will-change: transform;
}
.hero-url__lock { flex: 0 0 auto; color: var(--verde); display: grid; place-items: center; }
.hero-url__lock svg { width: 22px; height: 22px; }
.hero-url__scheme { color: #7d8d97; font-size: clamp(1rem, 2.4vw, 1.5rem); font-weight: 500; }
.hero-url__typed {
  color: #fff; font-size: clamp(1.1rem, 3vw, 1.75rem); font-weight: 700;
  letter-spacing: -.01em; white-space: nowrap; overflow: hidden; max-width: 55vw;
}
.hero-url__caret {
  flex: 0 0 auto; width: 2px; height: 1.6em; background: var(--verde);
  animation: hero-caret 1s steps(1) infinite;
}
@keyframes hero-caret { 50% { opacity: 0; } }
.hero-url__meta { margin-left: auto; display: flex; align-items: center; gap: .7rem; }
.hero-url__badge {
  background: var(--amarelo); color: #6d5c00; font-size: .62rem; font-weight: 800;
  letter-spacing: .1em; border-radius: 5px; padding: .25rem .55rem;
}
.hero-url .stars { font-size: .95rem; }
.hero-url .stars .off { color: rgba(255, 255, 255, .18); }

.hero-home__ctas { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.4rem; }
.btn--ghost-light { background: transparent; color: #fff; border: 2px solid rgba(255, 255, 255, .3); }
.btn--ghost-light:hover { border-color: var(--verde); color: var(--verde); }

/* selos de confianca */
.hero-trust {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 2.2rem; flex-wrap: wrap; justify-content: center;
  color: #B9C6CE; font-size: .88rem; font-weight: 500;
}
.hero-trust li { display: inline-flex; align-items: center; gap: .5rem; }
.hero-trust svg { width: 17px; height: 17px; fill: var(--verde); flex: 0 0 auto; }

/* letreiro do catalogo */
.hero-marquee {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, .09);
  background: rgba(0, 0, 0, .16);
  overflow: hidden; padding: .85rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.hero-marquee__track {
  display: flex; gap: 2.6rem; width: max-content;
  animation: hero-marquee 42s linear infinite;
}
.hero-marquee:hover .hero-marquee__track { animation-play-state: paused; }
@keyframes hero-marquee { to { transform: translateX(-50%); } }
.hero-marquee__item {
  color: #9fb0ba; font-size: .88rem; font-weight: 600; white-space: nowrap;
  display: inline-flex; align-items: center; gap: .5rem;
}
.hero-marquee__item:hover { color: #fff; }
.hero-marquee__dot {
  background: rgba(246, 220, 83, .16); color: var(--amarelo);
  font-size: .56rem; font-weight: 800; letter-spacing: .1em;
  border-radius: 4px; padding: .12rem .4rem;
}

@media (max-width: 720px) {
  .hero-home__stage { min-height: 0; }
  .hero-home__inner { padding: 3.6rem 0 6rem; }
  .hero-url { padding: .8rem 1.1rem; }
  .hero-url__scheme { display: none; }
  .hero-url__meta .stars { display: none; }
  .hero-trust { gap: 1rem 1.6rem; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-marquee__track { animation: none; }
  .hero-url__caret { animation: none; }
}

/* --------------------------------------------------------- seções gerais */
.section { padding: 4.5rem 0; }
.section--soft { background: var(--bg); }
.sec-head { max-width: 640px; margin-bottom: 2.6rem; }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head .eyebrow {
  display: inline-block; color: var(--verde-700); font-size: .78rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; margin-bottom: .5rem;
}
.sec-head h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.sec-head p { color: var(--slate); }

/* faixa de título das páginas internas — versão rica: gradiente em camadas, padrão de
   pontos, marca-d'água "www." e breadcrumb */
.page-hero {
  position: relative; overflow: hidden; text-align: center;
  background:
    radial-gradient(760px 300px at 82% -30%, rgba(255, 255, 255, .38), transparent 64%),
    radial-gradient(640px 360px at 8% 140%, rgba(38, 50, 59, .45), transparent 68%),
    linear-gradient(120deg, var(--verde-800) 0%, var(--verde) 55%, var(--verde-600) 100%);
  padding: 4.2rem 0 4.8rem;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .38) 2px, transparent 2.1px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(125% 140% at 50% 0%, #000 40%, transparent 85%);
  mask-image: radial-gradient(125% 140% at 50% 0%, #000 40%, transparent 85%);
}
.page-hero::after {
  content: "www."; position: absolute; right: -0.6rem; bottom: -3rem; pointer-events: none;
  font-weight: 800; font-size: clamp(6.5rem, 16vw, 11.5rem); line-height: 1;
  letter-spacing: -.05em; color: rgba(255, 255, 255, .20);
  text-shadow: 0 2px 24px rgba(95, 163, 50, .35);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero__crumb {
  display: flex; justify-content: center; align-items: center; gap: .6rem;
  font-size: .76rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255, 255, 255, .8); margin-bottom: 1rem;
}
.page-hero__crumb a { color: #fff; opacity: .85; }
.page-hero__crumb a:hover { opacity: 1; color: #fff; }
.page-hero__crumb .sep { opacity: .55; font-weight: 400; }
@media (max-width: 640px) {
  .page-hero__crumb { font-size: .6rem; gap: .4rem; letter-spacing: .07em; }
  .page-hero__crumb span:last-child {
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 48vw;
  }
}
.page-hero h1 {
  color: #fff; font-size: clamp(1.7rem, 3.8vw, 2.6rem); margin: 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .14); letter-spacing: -.01em;
}
.page-hero p { color: #f3fae9; margin: .7rem auto 0; max-width: 44rem; font-size: 1.02rem; }

/* ------------------------------------------------------ cards de domínio */
.dom-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
  gap: 1.4rem;
}
.dom-card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem 1.4rem 1.4rem;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: .55rem;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.dom-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--verde); }
.dom-card__badge {
  position: absolute; top: -1px; left: -1px;
  background: var(--amarelo); color: #6d5c00; font-size: .62rem; font-weight: 800;
  letter-spacing: .1em; padding: .3rem .7rem; border-radius: var(--radius) 0 10px 0;
}
.dom-card__nome { font-size: 1.06rem; font-weight: 700; color: var(--ink); word-break: break-all; }
.dom-card__nome a { color: inherit; }
.dom-card__nome a:hover { color: var(--verde-700); }
.stars { color: var(--amarelo); font-size: .85rem; letter-spacing: .15em; text-shadow: 0 1px 0 rgba(0,0,0,.06); }
.stars .off { color: var(--bg-2); text-shadow: none; }
.dom-card__preco { color: var(--ink); font-weight: 800; font-size: 1.12rem; }
.dom-card .btn { margin-top: .45rem; }
.dom-grid__foot { text-align: center; margin-top: 2.4rem; }
.dom-grid__empty { text-align: center; color: var(--cinza); padding: 2rem 0; }

/* variante rica (premium): resumo + rodapé com CTA */
.dom-grid--rico { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.6rem; }
.dom-card--rico { align-items: flex-start; text-align: left; padding: 1.8rem 1.6rem 1.6rem; gap: .5rem; }
.dom-card--rico .dom-card__nome { font-size: 1.18rem; }
.dom-card__resumo {
  color: var(--slate); font-size: .9rem; line-height: 1.55; margin: .25rem 0 .4rem;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.dom-card__rodape {
  margin-top: auto; padding-top: .9rem; width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  border-top: 1px dashed var(--line);
}
.dom-card__valor { font-size: .8rem; font-weight: 700; color: var(--ink); line-height: 1.3; }
.dom-card__valor small { display: block; font-size: .68rem; font-weight: 600; color: var(--cinza); letter-spacing: .08em; text-transform: uppercase; }
.dom-card--rico .btn { margin-top: 0; }

/* lista em tabela (domínios disponíveis) */
.dom-tabela-wrap {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow-x: auto;
}
.dom-tabela { width: 100%; border-collapse: collapse; min-width: 640px; }
.dom-tabela th {
  text-align: left; font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--verde-700);
  padding: 1rem 1.4rem; border-bottom: 2px solid var(--verde-soft); background: #FBFDF9;
  white-space: nowrap;
}
.dom-tabela td { padding: 1.05rem 1.4rem; border-bottom: 1px solid var(--line); vertical-align: middle; }
.dom-tabela tr:last-child td { border-bottom: 0; }
.dom-tabela tbody tr { transition: background .12s ease; }
.dom-tabela tbody tr:hover { background: #F7FBF2; }
.dom-tabela__nome a { font-weight: 700; color: var(--ink); font-size: 1.02rem; word-break: break-all; }
.dom-tabela__nome a:hover { color: var(--verde-700); }
.dom-tabela__badge {
  display: inline-block; background: var(--amarelo); color: #6d5c00; font-size: .6rem;
  font-weight: 800; letter-spacing: .1em; border-radius: 5px; padding: .22rem .5rem;
  margin-left: .55rem; vertical-align: 2px;
}
.dom-tabela__preco { font-weight: 700; color: var(--ink); white-space: nowrap; }
.dom-tabela__preco--consulta { color: var(--slate); font-weight: 600; font-size: .88rem; }
.dom-tabela td:last-child { text-align: right; }
.dom-tabela .stars { white-space: nowrap; }

/* --------------------------------------------------------- vantagens */
.vantagens { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.4rem; }
.vantagem {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem 1.6rem 1.7rem; display: flex; flex-direction: column; gap: .55rem;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.vantagem::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: linear-gradient(90deg, var(--verde), var(--verde-600));
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.vantagem:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--verde); }
.vantagem:hover::before { transform: scaleX(1); }
.vantagem__icone {
  width: 54px; height: 54px; border-radius: 16px;
  background: linear-gradient(135deg, var(--verde-soft), #dff0cc);
  color: var(--verde-700); display: grid; place-items: center; font-size: 1.55rem;
  box-shadow: inset 0 0 0 1px rgba(127, 194, 64, .25);
  margin-bottom: .5rem;
}
.vantagem__titulo { color: var(--ink); font-weight: 700; font-size: 1.02rem; line-height: 1.3; }
.vantagem__texto { color: var(--slate); font-weight: 400; font-size: .9rem; line-height: 1.5; }
.vantagem--so-texto .vantagem__texto { color: var(--ink); font-weight: 600; font-size: .95rem; }

/* --------------------------------------------------------- pagamento */
.pagamento {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background:
    radial-gradient(520px 200px at 12% -30%, rgba(255, 255, 255, .22), transparent 65%),
    radial-gradient(520px 220px at 88% 130%, rgba(0, 0, 0, .12), transparent 65%),
    linear-gradient(115deg, var(--verde-700) 0%, var(--verde) 55%, var(--verde-600) 100%);
  box-shadow: 0 14px 34px rgba(95, 163, 50, .30);
}
.pagamento__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.pagamento__cell {
  padding: 2.1rem 1.5rem 1.9rem; text-align: center; color: #fff;
  display: flex; flex-direction: column; align-items: center; gap: .3rem; justify-content: center;
}
.pagamento__cell + .pagamento__cell { border-left: 1px solid rgba(255, 255, 255, .25); }
.pagamento__icone {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255, 255, 255, .16); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .28);
  display: grid; place-items: center; font-size: 1.3rem; margin-bottom: .45rem;
}
.pagamento__cell small { font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; opacity: .92; }
.pagamento__cell strong { font-size: clamp(1.3rem, 2.6vw, 1.9rem); font-weight: 800; line-height: 1.15; }
.pagamento__cell .metodo { font-size: 1.15rem; font-weight: 800; }
.pagamento__rodape {
  display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap;
  padding: .9rem 1.5rem; background: rgba(255, 255, 255, .92);
  font-size: .82rem; font-weight: 600; color: var(--slate);
}
.pagamento__rodape img { height: 30px; width: auto; }
.pagamento__rodape .material-symbols-outlined { font-size: 1.05rem; color: var(--verde-700); vertical-align: -3px; }
@media (max-width: 720px) {
  .pagamento__grid { grid-template-columns: 1fr; }
  .pagamento__cell + .pagamento__cell { border-left: 0; border-top: 1px solid rgba(255, 255, 255, .25); }
}

/* --------------------------------------------------------------- FAQ */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: .85rem; align-content: start; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 0; overflow: hidden; transition: border-color .15s ease, box-shadow .15s ease;
  box-shadow: var(--shadow-sm);
}
.faq details[open] { border-color: var(--verde); box-shadow: var(--shadow); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.15rem 3.4rem 1.15rem 1.4rem;
  font-weight: 600; color: var(--ink); position: relative; font-size: .98rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: .9rem; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; display: grid; place-items: center;
  background: var(--verde-soft); border-radius: 50%;
  color: var(--verde-700); font-size: 1.25rem; font-weight: 500;
  transition: transform .2s ease, background .2s ease, color .2s ease;
  line-height: 1;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); background: var(--verde); color: #fff; }
.faq .faq__resposta { padding: 0 1.4rem 1.25rem; color: var(--slate); font-size: .94rem; }

/* FAQ com ilustração ao lado */
.faq-split { display: grid; grid-template-columns: .8fr 1.2fr; gap: 3rem; align-items: start; }
.faq-split .faq { max-width: none; margin: 0; }
.faq-split__lado { position: sticky; top: 110px; text-align: center; }
.faq-split__lado img { max-width: min(380px, 100%); height: auto; }
.faq-split__lado .btn { margin-top: 1.2rem; }
.faq-split__nota { font-size: .88rem; color: var(--slate); margin: 1rem 0 0; }
@media (max-width: 880px) {
  .faq-split { grid-template-columns: 1fr; gap: 1.8rem; }
  .faq-split__lado { position: static; }
  .faq-split__lado img { max-width: 260px; }
}

/* ------------------------------------------- processo (fluxo animado) */
.processo { position: relative; }
.processo__trilha {
  list-style: none; margin: 0; padding: 0; position: relative;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem;
  counter-reset: etapa;
}
.processo__linha {
  position: absolute; left: 6%; right: 6%; top: 33px; height: 3px;
  background: var(--bg-2); border-radius: 3px; overflow: hidden;
}
.processo__linha i {
  position: absolute; inset: 0; display: block;
  background: linear-gradient(90deg, var(--verde-700), var(--verde));
  transform: scaleX(0); transform-origin: left;
  transition: transform 2.4s cubic-bezier(.25, .6, .3, 1) .3s;
}
.processo.visible .processo__linha i { transform: scaleX(1); }
.processo__etapa { position: relative; text-align: center; padding-top: 0; }
.processo__icone {
  position: relative; z-index: 1;
  width: 68px; height: 68px; margin: 0 auto 1rem; border-radius: 50%;
  background: #fff; border: 2px solid var(--bg-2);
  color: var(--cinza); display: grid; place-items: center; font-size: 1.6rem;
  transition: border-color .4s ease, color .4s ease, box-shadow .4s ease, background .4s ease, transform .4s ease;
}
.processo__etapa::before {
  counter-increment: etapa; content: counter(etapa);
  position: absolute; z-index: 2; top: -6px; left: calc(50% + 16px);
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--ink); color: #fff; font-size: .78rem; font-weight: 800;
  display: grid; place-items: center;
  transition: background .4s ease;
}
.processo.visible .processo__etapa .processo__icone {
  border-color: var(--verde); color: var(--verde-700); background: #fff;
  box-shadow: 0 10px 24px rgba(127, 194, 64, .35); transform: translateY(-4px);
}
.processo.visible .processo__etapa::before { background: var(--verde-700); }
.processo__etapa:nth-child(1) .processo__icone, .processo__etapa:nth-child(1)::before { transition-delay: .3s; }
.processo__etapa:nth-child(2) .processo__icone, .processo__etapa:nth-child(2)::before { transition-delay: .85s; }
.processo__etapa:nth-child(3) .processo__icone, .processo__etapa:nth-child(3)::before { transition-delay: 1.4s; }
.processo__etapa:nth-child(4) .processo__icone, .processo__etapa:nth-child(4)::before { transition-delay: 1.95s; }
.processo__etapa:nth-child(5) .processo__icone, .processo__etapa:nth-child(5)::before { transition-delay: 2.5s; }
.processo__etapa h3 { font-size: .98rem; margin-bottom: .3rem; }
.processo__etapa p { font-size: .85rem; color: var(--slate); margin: 0; }
.processo__selo {
  margin-top: 2.6rem; text-align: center;
}
.processo__selo span {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--verde-soft); color: var(--verde-800);
  font-size: .86rem; font-weight: 700; border-radius: 999px; padding: .65rem 1.3rem;
}
.processo__selo .material-symbols-outlined { font-size: 1.15rem; }
@media (max-width: 880px) {
  .processo__trilha { grid-template-columns: 1fr; gap: 0; max-width: 480px; margin-inline: auto; }
  .processo__linha { left: 33px; right: auto; top: 4%; bottom: 4%; width: 3px; height: auto; }
  .processo__linha i { transform: scaleY(0); transform-origin: top; }
  .processo.visible .processo__linha i { transform: scaleY(1); }
  .processo__etapa {
    display: grid; grid-template-columns: 68px 1fr; column-gap: 1.2rem;
    text-align: left; align-items: start; padding: 1rem 0;
  }
  .processo__icone { margin: 0; grid-row: 1 / 3; }
  .processo__etapa::before { left: 44px; top: -2px; }
}
@media (prefers-reduced-motion: reduce) {
  .processo__linha i { transition: none; }
  .processo__icone { transition: none; }
}

/* --------------------------------------- texto + imagem (ilustração) */
.texto-imagem { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3.5rem; align-items: center; }
.texto-imagem--invertido { grid-template-columns: .85fr 1.15fr; }
.texto-imagem--invertido .texto-imagem__media { order: -1; }
.texto-imagem__media { text-align: center; }
.texto-imagem__media img { max-width: min(480px, 100%); height: auto; filter: drop-shadow(0 18px 30px rgba(65, 83, 96, .16)); }
.texto-imagem .eyebrow {
  display: inline-block; color: var(--verde-700); font-size: .78rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; margin-bottom: .5rem;
}
.texto-imagem h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
@media (max-width: 880px) {
  .texto-imagem, .texto-imagem--invertido { grid-template-columns: 1fr; gap: 2rem; }
  .texto-imagem--invertido .texto-imagem__media { order: 0; }
  .texto-imagem__media img { max-width: 320px; }
}

/* --------------------------------------------------------- formulários */
.lead-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.lead-form__group { display: flex; flex-direction: column; gap: .35rem; }
.lead-form__group--full { grid-column: 1 / -1; }
.lead-form label { font-size: .85rem; font-weight: 600; color: var(--ink); }
.lead-form input, .lead-form textarea {
  font: 400 .95rem var(--font); color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 10px; background: #fff;
  padding: .8rem .95rem; outline: none; transition: border-color .15s ease, box-shadow .15s ease;
  width: 100%;
}
.lead-form input:focus, .lead-form textarea:focus {
  border-color: var(--verde); box-shadow: 0 0 0 3px rgba(127, 194, 64, .18);
}
.lead-form textarea { min-height: 130px; resize: vertical; }
.lead-form__hint { font-size: .8rem; color: var(--cinza); font-weight: 400; }
.lead-form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.lead-form__captcha { grid-column: 1 / -1; }
.lead-form__actions { grid-column: 1 / -1; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.form__status { grid-column: 1 / -1; margin: 0; font-weight: 600; font-size: .92rem; }
.form__status:empty { display: none; }
[data-form-status="sending"] { color: var(--slate); }
[data-form-status="error"] { color: var(--laranja-700); }
[data-form-status="ok"] { color: var(--verde-700); }
[data-form-sending] button[type="submit"] { opacity: .6; pointer-events: none; }
@media (max-width: 640px) { .lead-form { grid-template-columns: 1fr; } }

/* canais de contato */
.canais { display: grid; gap: 1.2rem; }
.canal {
  display: flex; gap: 1rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.3rem 1.4rem; box-shadow: var(--shadow-sm);
}
.canal__icone {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px;
  background: var(--verde-soft); color: var(--verde-700); display: grid; place-items: center;
}
.canal__icone svg { width: 22px; height: 22px; fill: currentColor; }
.canal h3 { font-size: 1rem; margin-bottom: .15rem; }
.canal p, .canal address { margin: 0; font-style: normal; font-size: .92rem; color: var(--slate); }
.canal a { font-weight: 600; }
.contato-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: start; }
@media (max-width: 860px) { .contato-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------ ficha do domínio */
/* hero escuro da ficha — mesma linguagem do hero da home (glow, pontos, barra de URL),
   digitando o dominio DESTA ficha */
.ficha-hero {
  position: relative; overflow: hidden; text-align: center; color: #E7EDF0;
  background:
    radial-gradient(900px 380px at 50% -12%, rgba(127, 194, 64, .18), transparent 62%),
    linear-gradient(180deg, #26323B 0%, #37444D 100%);
  padding: 3.4rem 0 6.2rem;
}
.ficha-hero__canvas {
  position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none;
}
.ficha-hero__glow {
  position: absolute; left: 50%; top: 58%; transform: translate(-50%, -50%);
  width: min(680px, 92vw); height: 240px; pointer-events: none;
  background: radial-gradient(closest-side, rgba(127, 194, 64, .30), rgba(127, 194, 64, .08) 60%, transparent 75%);
  filter: blur(6px);
}
.ficha-hero__inner { position: relative; z-index: 2; }
.ficha-hero .page-hero__crumb { margin-bottom: 1.2rem; }
.ficha-hero h1 {
  color: #fff; font-size: clamp(1.6rem, 3.6vw, 2.5rem); margin: 0;
  letter-spacing: -.012em; overflow-wrap: anywhere;
}
.ficha-hero h1 .destaque { color: var(--verde); }
@media (max-width: 640px) {
  .ficha-hero h1 { font-size: clamp(1.25rem, 5.6vw, 1.6rem); }
  .ficha-hero .hero-url__typed { font-size: 1.05rem; max-width: 60vw; }
}
.ficha-hero .hero-url {
  width: min(680px, 100%); margin: 1.9rem auto 0;
}
@media (max-width: 720px) {
  .ficha-hero { padding: 2.6rem 0 5.4rem; }
  .ficha-hero .hero-url { padding: .8rem 1.1rem; }
  .ficha-hero .hero-url__scheme { display: none; }
}

.ficha-resumo {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 2.2rem 2rem; margin-top: -3.4rem; position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: center; text-align: center;
}
.ficha-resumo__rotulo {
  display: block; font-size: .74rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--verde-700); margin-bottom: .3rem;
}
.ficha-resumo__nome { font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 800; color: var(--ink); word-break: break-all; }
.ficha-resumo__preco { font-size: clamp(1.3rem, 3vw, 1.7rem); font-weight: 800; color: var(--ink); }
@media (max-width: 720px) { .ficha-resumo { grid-template-columns: 1fr; margin-top: -2.6rem; } }

.ficha-corpo { display: grid; grid-template-columns: 1.2fr .8fr; gap: 3rem; align-items: start; }
@media (max-width: 900px) { .ficha-corpo { grid-template-columns: 1fr; } }
.ficha-oferta {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.6rem; position: sticky; top: 96px;
}
.ficha-oferta h3 { font-size: 1.15rem; }

.prose h2, .prose h3 { margin-top: 1.6em; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .4em; }

/* ------------------------------------------------------------- rodapé */
.footer { background: var(--footer); color: #cfd8dd; margin-top: 4.5rem; border-top: 8px solid var(--verde); }
.footer a { color: #cfd8dd; }
.footer a:hover { color: #fff; }
.footer__main {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2.5rem; padding: 3.5rem 0 2.5rem;
}
.footer__logo img { height: 38px; width: auto; filter: brightness(0) invert(1); opacity: .95; }
.footer__desc { font-size: .88rem; color: #aebac2; margin-top: 1rem; max-width: 26rem; }
.footer h4 { color: #fff; font-size: .92rem; letter-spacing: .04em; margin-bottom: 1rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer ul a { font-size: .9rem; }
.footer__social { display: flex; gap: .8rem; margin-top: 1.4rem; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, .08);
  display: grid; place-items: center; transition: background .15s ease;
}
.footer__social a:hover { background: var(--verde); }
.footer__social svg { width: 19px; height: 19px; fill: #fff; }
.footer__bottom {
  background: var(--footer-2); padding: 1.2rem 0; font-size: .82rem; color: #9fadb6;
}
.footer__bottom-inner {
  width: min(1160px, 100% - 2.5rem); margin-inline: auto;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; align-items: center;
}
.footer__bottom a { color: #cfd8dd; font-weight: 600; }
@media (max-width: 900px) { .footer__main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__main { grid-template-columns: 1fr; gap: 2rem; } }

/* botão flutuante do WhatsApp */
.whatsapp-float {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: grid; place-items: center; box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
  transition: transform .15s ease;
}
.whatsapp-float:hover { transform: scale(1.07); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* ------------------------------------------------------------ reveals */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .06s; } .reveal.d2 { transition-delay: .12s; }
.reveal.d3 { transition-delay: .18s; } .reveal.d4 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ------------------------------------------------- blocos internos novos */
/* passo a passo numerado */
.passos {
  list-style: none; margin: 0; padding: 0;
  max-width: 780px; margin-inline: auto;
  display: grid; gap: 1rem;
}
.passo {
  display: flex; gap: 1.3rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.6rem; box-shadow: var(--shadow-sm);
  position: relative;
}
.passo__num {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 14px;
  background: var(--verde); color: #fff; font-weight: 800; font-size: 1.2rem;
  display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(127, 194, 64, .35);
}
.passo__corpo h3 { font-size: 1.06rem; margin-bottom: .3rem; }
.passo__corpo p { margin: 0; font-size: .95rem; }
.passo + .passo::before {
  content: ""; position: absolute; left: calc(1.6rem + 23px); top: -1rem; height: 1rem;
  border-left: 2px dashed var(--bg-2);
}

/* cards com icone e texto */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.4rem; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.6rem; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: .6rem;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--verde); }
.card__topo { display: flex; align-items: center; justify-content: space-between; margin-bottom: .3rem; }
.card__icone {
  width: 50px; height: 50px; border-radius: 14px; background: var(--verde-soft);
  color: var(--verde-700); display: grid; place-items: center; font-size: 1.5rem;
}
.card__selo {
  background: var(--amarelo); color: #6d5c00; font-size: .68rem; font-weight: 800;
  letter-spacing: .08em; border-radius: 6px; padding: .3rem .6rem;
}
.card h3 { font-size: 1.08rem; margin: 0; }
.card p { margin: 0; font-size: .93rem; }

/* CTA de fechamento (faixa escura) */
.cta-final {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(180deg, #26323B 0%, #37444D 100%);
  border-radius: var(--radius); padding: 3.6rem 2rem;
}
.cta-final__glow {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -40%);
  width: 620px; height: 300px; pointer-events: none;
  background: radial-gradient(closest-side, rgba(127, 194, 64, .3), transparent 72%);
  filter: blur(4px);
}
.cta-final h2 { position: relative; color: #fff; font-size: clamp(1.4rem, 3vw, 2rem); max-width: 24ch; margin-inline: auto; }
.cta-final p { position: relative; color: #B9C6CE; max-width: 36rem; margin: .4rem auto 1.6rem; }
.cta-final__botoes { position: relative; display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
