/* ==========================================================================
   SiteRápido — tema escuro
   Tokens no topo; componentes abaixo. Sem framework, sem build.
   ========================================================================== */

:root {
  --bg: #070B14;
  --bg-2: #0A1020;
  --surface: #0E1526;
  --surface-2: #141D33;
  --amarelo: #FFC619;
  --amarelo-2: #FF9F1C;
  --azul: #3B82F6;
  --ciano: #22D3EE;
  --verde: #34D399;
  --vermelho: #F87171;
  --texto: #EAF0FF;
  --texto-2: #8C98B8;
  --texto-3: #5E6A8A;
  --borda: rgba(255, 255, 255, 0.08);
  --borda-2: rgba(255, 255, 255, 0.14);
  --grad: linear-gradient(135deg, #3B82F6 0%, #22D3EE 100%);
  --grad-amarelo: linear-gradient(135deg, #FFD84D 0%, #FFC619 45%, #FF9F1C 100%);

  --font-titulo: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-corpo: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;

  --raio: 20px;
  --raio-sm: 12px;
  --container: 1200px;
  --header-h: 76px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  margin: 0;
  background: var(--bg);
  color: var(--texto);
  font-family: var(--font-corpo);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-titulo); line-height: 1.12; margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--amarelo); color: #0A0A0A; }

:focus-visible { outline: 2px solid var(--amarelo); outline-offset: 3px; border-radius: 6px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: 20px; }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.grad-amarelo {
  background: var(--grad-amarelo);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

.ic { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.ic--fill { fill: currentColor; stroke: none; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-family: var(--font-titulo); font-weight: 700; font-size: 15px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, border-color .3s;
  white-space: nowrap;
}
.btn .ic { width: 20px; height: 20px; }
.btn--primary {
  background: var(--grad-amarelo); color: #111;
  box-shadow: 0 0 0 1px rgba(255, 198, 25, .4), 0 10px 40px -8px rgba(255, 198, 25, .55);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(255, 198, 25, .7), 0 18px 50px -8px rgba(255, 198, 25, .75); }
.btn--ghost {
  background: rgba(255, 255, 255, .04); color: var(--texto);
  border: 1px solid var(--borda-2);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { border-color: rgba(255, 255, 255, .3); background: rgba(255, 255, 255, .08); transform: translateY(-2px); }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--header-h);
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(7, 11, 20, .72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--borda);
}
.header__inner { height: 100%; display: flex; align-items: center; gap: 32px; }

.logo {
  display: inline-flex; align-items: center; gap: 2px;
  font-family: var(--font-titulo); font-weight: 800; font-style: italic;
  font-size: 26px; letter-spacing: -0.04em; line-height: 1;
}
.logo__speed { display: grid; gap: 3px; margin-right: 6px; transform: skewX(-18deg); }
.logo__speed i { display: block; height: 3px; border-radius: 3px; background: var(--grad); }
.logo__speed i:nth-child(1) { width: 14px; margin-left: 6px; }
.logo__speed i:nth-child(2) { width: 20px; }
.logo__speed i:nth-child(3) { width: 10px; margin-left: 10px; }
.logo__site { color: #fff; }
.logo__rapido { background: var(--grad-amarelo); -webkit-background-clip: text; background-clip: text; color: transparent; padding-right: 4px; }

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a:not(.btn) {
  padding: 8px 14px; border-radius: 999px;
  font-size: 14.5px; font-weight: 500; color: var(--texto-2);
  transition: color .2s, background .2s;
}
.nav a:not(.btn):hover, .nav a.is-active { color: var(--texto); background: rgba(255, 255, 255, .06); }
.nav .btn { margin-left: 12px; }

.nav-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--borda-2); position: relative; }
.nav-toggle span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--texto); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    padding: 16px 20px 24px;
    background: rgba(7, 11, 20, .96); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--borda);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s;
  }
  .nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav a:not(.btn) { padding: 14px 16px; font-size: 16px; }
  .nav .btn { margin: 8px 0 0; }
}

/* ---------- Seções ---------- */
section { padding: 104px 0; position: relative; }
@media (max-width: 640px) { section { padding: 80px 0; } .section-head { margin-bottom: 44px; } }
.section--tight { padding: 72px 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  border: 1px solid var(--borda-2);
  background: rgba(255, 255, 255, .03);
  font-size: 13px; font-weight: 600; color: var(--texto-2);
  letter-spacing: .02em;
}
.eyebrow b {
  display: inline-grid; place-items: center;
  min-width: 26px; height: 22px; padding: 0 6px;
  border-radius: 999px; background: rgba(255, 198, 25, .12); color: var(--amarelo);
  font-size: 11.5px; font-weight: 700;
}

.section-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.section-head h2 { font-size: clamp(32px, 4.6vw, 54px); font-weight: 800; margin: 20px 0 18px; }
.section-head p { color: var(--texto-2); font-size: 18px; }
.section-head--left { text-align: left; margin-left: 0; }

/* ---------- Hero ---------- */
.hero {
  padding: calc(var(--header-h) + 72px) 0 96px;
  overflow: hidden;
  isolation: isolate;
}
.aurora {
  position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none;
  mask-image: linear-gradient(to bottom, #000 55%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, #000 55%, transparent);
}
.aurora span {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55;
  animation: flutuar 18s ease-in-out infinite alternate;
}
.aurora span:nth-child(1) { width: 620px; height: 620px; background: #1D4ED8; top: -220px; left: -120px; }
.aurora span:nth-child(2) { width: 520px; height: 520px; background: #0891B2; top: 80px; right: -160px; animation-delay: -6s; opacity: .4; }
.aurora span:nth-child(3) { width: 380px; height: 380px; background: #B45309; bottom: -200px; left: 40%; animation-delay: -12s; opacity: .28; }
.grid-bg {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 75%);
}
@keyframes flutuar {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.1); }
  100% { transform: translate(-40px, 70px) scale(.95); }
}

.hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(36px, 5vw, 66px); font-weight: 800; margin: 24px 0 22px; letter-spacing: -0.035em; }
.rotator { display: block; height: 1.3em; overflow: hidden; position: relative; white-space: nowrap; font-size: min(1em, 9.5vw); }
.rotator__word {
  display: block;
  background: var(--grad-amarelo); -webkit-background-clip: text; background-clip: text; color: transparent;
  transition: transform .55s var(--ease), opacity .55s var(--ease);
  padding-bottom: .08em;
}
.rotator__word.is-out { transform: translateY(-100%); opacity: 0; }
.rotator__word.is-in { transform: translateY(100%); opacity: 0; transition: none; }

.hero__lead { font-size: 19px; color: var(--texto-2); max-width: 560px; }
.hero__lead strong { color: var(--texto); font-weight: 600; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin: 36px 0 34px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 22px; color: var(--texto-2); font-size: 14px; }
.hero__trust li { display: flex; align-items: center; gap: 8px; }
.hero__trust .ic { width: 18px; height: 18px; color: var(--verde); stroke-width: 2.4; }

/* Palco 3D do hero */
.stage { position: relative; perspective: 1400px; min-height: 520px; }
.stage__inner { position: relative; transform-style: preserve-3d; transition: transform .6s var(--ease); transform: rotateY(-14deg) rotateX(6deg); }
.stage .browser { width: 100%; max-width: 580px; margin-left: auto; box-shadow: 0 50px 120px -30px rgba(0, 0, 0, .8), 0 0 0 1px var(--borda-2), 0 0 80px -20px rgba(59, 130, 246, .5); }
.stage .phone { position: absolute; left: -10px; bottom: -40px; transform: translateZ(80px); }
.chip {
  position: absolute; z-index: 2;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px 10px 10px;
  border-radius: 14px;
  background: rgba(14, 21, 38, .78); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--borda-2);
  font-size: 13px; font-weight: 600; white-space: nowrap;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, .6);
  animation: boiar 6s ease-in-out infinite;
  transform: translateZ(120px);
}
.chip small { display: block; font-weight: 500; color: var(--texto-2); font-size: 11.5px; line-height: 1.2; }
.chip__ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: rgba(255, 198, 25, .14); color: var(--amarelo); }
.chip__ic--azul { background: rgba(34, 211, 238, .14); color: var(--ciano); }
.chip__ic--verde { background: rgba(52, 211, 153, .14); color: var(--verde); }
.chip__ic .ic { width: 18px; height: 18px; }
.chip--1 { top: -24px; right: -12px; }
.chip--2 { top: 42%; right: -34px; animation-delay: -2s; }
.chip--3 { bottom: 20px; right: 40px; animation-delay: -4s; }
@keyframes boiar { 0%, 100% { translate: 0 0; } 50% { translate: 0 -10px; } }

/* Moldura de navegador */
.browser { border-radius: 14px; overflow: hidden; background: #0B1120; border: 1px solid var(--borda-2); }
.browser__bar { display: flex; align-items: center; gap: 6px; height: 34px; padding: 0 12px; background: #111A2E; border-bottom: 1px solid var(--borda); }
.browser__bar i { width: 10px; height: 10px; border-radius: 50%; background: #334155; }
.browser__bar i:nth-child(1) { background: #FF5F57; }
.browser__bar i:nth-child(2) { background: #FEBC2E; }
.browser__bar i:nth-child(3) { background: #28C840; }
.browser__bar span {
  flex: 1; margin: 0 8px 0 14px; height: 20px; border-radius: 6px;
  background: rgba(255, 255, 255, .05);
  font-size: 11px; color: var(--texto-3); display: flex; align-items: center; justify-content: center; gap: 6px;
  overflow: hidden; white-space: nowrap;
}

/* Celular */
.phone {
  width: 170px; aspect-ratio: 9 / 19; padding: 8px;
  border-radius: 30px; background: #05070D;
  border: 1px solid var(--borda-2);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, .9), 0 0 60px -20px rgba(255, 198, 25, .35);
}
.phone__screen { width: 100%; height: 100%; border-radius: 23px; overflow: hidden; position: relative; }
.phone__screen::before { content: ""; position: absolute; top: 6px; left: 50%; translate: -50% 0; width: 56px; height: 16px; border-radius: 10px; background: #05070D; z-index: 3; }

@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 72px; }
  .stage { min-height: 0; max-width: 620px; margin: 0 auto; width: 100%; }
  .stage__inner { transform: none !important; }
  .chip--2 { right: -8px; }
}
@media (max-width: 560px) {
  .hero { padding-top: calc(var(--header-h) + 40px); }
  .hero__lead { font-size: 17px; }
  .hero__ctas .btn { flex: 1 1 100%; }
  .stage .phone { width: 120px; left: -4px; bottom: -30px; border-radius: 22px; padding: 6px; }
  .phone__screen { border-radius: 17px; }
  .chip { font-size: 12px; padding: 8px 10px 8px 8px; }
  .chip small { display: none; }
  .chip__ic { width: 28px; height: 28px; }
  .chip--1 { right: 0; top: -30px; }
  .chip--2 { display: none; }
  .chip--3 { right: 4px; bottom: -24px; }
}

/* ---------- Marquee de nichos ---------- */
.marquee-wrap { padding: 36px 0; border-block: 1px solid var(--borda); background: var(--bg-2); overflow: hidden; }
.marquee-wrap__title { text-align: center; color: var(--texto-3); font-size: 13px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; margin-bottom: 22px; }
.marquee {
  display: flex; overflow: hidden; user-select: none;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee + .marquee { margin-top: 12px; }
.marquee__track { display: flex; gap: 12px; padding-right: 12px; flex-shrink: 0; animation: rolar 60s linear infinite; }
.marquee--reverse .marquee__track { animation-direction: reverse; animation-duration: 70s; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px; border-radius: 999px;
  border: 1px solid var(--borda); background: rgba(255, 255, 255, .025);
  font-size: 15px; font-weight: 500; color: var(--texto-2); white-space: nowrap;
}
.marquee__track span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--amarelo); box-shadow: 0 0 10px var(--amarelo); }
.marquee--reverse .marquee__track span::before { background: var(--ciano); box-shadow: 0 0 10px var(--ciano); }
@keyframes rolar { to { transform: translateX(-100%); } }

/* ---------- Carrossel de modelos ---------- */
.modelos { overflow: hidden; }
.modelos::before {
  content: ""; position: absolute; inset: 20% -10% auto; height: 60%; z-index: -1;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, .16), transparent 65%);
}
.filtros { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: -24px 0 40px; }
.filtro {
  padding: 9px 16px; border-radius: 999px;
  border: 1px solid var(--borda-2); color: var(--texto-2);
  font-size: 14px; font-weight: 500; transition: all .25s;
}
.filtro:hover { color: var(--texto); border-color: rgba(255, 255, 255, .3); }
.filtro[aria-pressed="true"] { background: var(--texto); color: var(--bg); border-color: var(--texto); }

.carousel { position: relative; }
.carousel__track {
  display: flex; gap: 28px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 12px max(20px, calc((100vw - var(--container)) / 2 + 20px)) 40px;
  scrollbar-width: none; cursor: grab;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track.is-dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
.carousel__track.is-dragging * { pointer-events: none; }

.slide { flex: 0 0 min(560px, 84vw); scroll-snap-align: center; margin: 0; transition: transform .5s var(--ease), opacity .5s; }
.slide[hidden] { display: none !important; }
.slide .browser { box-shadow: 0 30px 70px -25px rgba(0, 0, 0, .9); transition: transform .5s var(--ease), box-shadow .5s; }
.slide:hover .browser { transform: translateY(-6px); box-shadow: 0 40px 90px -25px rgba(0, 0, 0, .95), 0 0 0 1px rgba(255, 198, 25, .35); }
.slide figcaption { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 18px; padding: 0 4px; }
.slide figcaption strong { font-family: var(--font-titulo); font-size: 17px; }
.slide figcaption span { font-size: 12px; color: var(--texto-3); border: 1px solid var(--borda); padding: 3px 10px; border-radius: 999px; white-space: nowrap; }

.carousel__nav { display: flex; align-items: center; justify-content: center; gap: 14px; }
.carousel__btn {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid var(--borda-2); display: grid; place-items: center;
  transition: all .25s;
}
.carousel__btn:hover { background: var(--amarelo); color: #111; border-color: var(--amarelo); }
.carousel__btn .ic { width: 20px; height: 20px; }
.carousel__progress { width: 160px; height: 3px; border-radius: 3px; background: var(--borda-2); overflow: hidden; }
.carousel__progress i { display: block; height: 100%; width: 20%; background: var(--grad-amarelo); border-radius: 3px; transition: transform .3s, width .3s; }
.carousel__aviso { text-align: center; color: var(--texto-3); font-size: 13px; margin-top: 22px; }

/* ---------- Cards (vidro + brilho que segue o cursor) ---------- */
.card {
  position: relative; overflow: hidden;
  padding: 32px;
  border-radius: var(--raio);
  background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015));
  border: 1px solid var(--borda);
  transition: transform .4s var(--ease), border-color .4s;
}
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx, -500px) var(--my, -500px), rgba(255, 198, 25, .10), transparent 45%);
  opacity: 0; transition: opacity .3s;
}
.card:hover { border-color: var(--borda-2); transform: translateY(-4px); }
.card:hover::before { opacity: 1; }
.card h3 { font-size: 20px; font-weight: 700; margin: 22px 0 10px; }
.card p { color: var(--texto-2); font-size: 15.5px; }

.card__ic {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, .2), rgba(34, 211, 238, .08));
  border: 1px solid rgba(34, 211, 238, .25);
  color: var(--ciano);
}
.card__ic--amarelo { background: linear-gradient(135deg, rgba(255, 198, 25, .2), rgba(255, 159, 28, .06)); border-color: rgba(255, 198, 25, .3); color: var(--amarelo); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } .card { padding: 26px; } }

/* ---------- Performance ---------- */
.perf { display: grid; grid-template-columns: 1fr 1.25fr; gap: 56px; align-items: center; }
.perf__painel {
  padding: 36px; border-radius: 28px;
  background: radial-gradient(circle at 20% 0%, rgba(59, 130, 246, .18), transparent 60%), var(--surface);
  border: 1px solid var(--borda-2);
  box-shadow: 0 40px 100px -40px rgba(34, 211, 238, .35);
}
.perf__painel h3 { font-size: 15px; font-weight: 600; color: var(--texto-2); display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.perf__painel h3 span { font-size: 12px; color: var(--texto-3); font-weight: 500; }
.rings { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 30px 0; }
.ring { text-align: center; }
.ring__wrap { position: relative; max-width: 104px; margin: 0 auto 10px; }
.ring svg { width: 100%; transform: rotate(-90deg); }
.ring circle { fill: none; stroke-width: 7; }
.ring .ring__bg { stroke: rgba(52, 211, 153, .12); }
.ring .ring__val { stroke: var(--verde); stroke-linecap: round; stroke-dasharray: 289; stroke-dashoffset: 289; transition: stroke-dashoffset 1.8s var(--ease); }
.ring__num { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-titulo); font-weight: 800; font-size: 26px; color: var(--verde); }
.ring small { display: block; font-size: 12px; color: var(--texto-2); line-height: 1.3; }
.perf__metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.metric { padding: 14px; border-radius: 12px; background: rgba(255, 255, 255, .03); border: 1px solid var(--borda); }
.metric small { display: block; font-size: 11.5px; color: var(--texto-3); }
.metric b { font-family: var(--font-titulo); font-size: 18px; }
.metric b i { font-style: normal; color: var(--verde); font-size: 12px; margin-left: 4px; }
.perf__nota { margin-top: 16px; font-size: 12px; color: var(--texto-3); }

.check-list { display: grid; gap: 14px; margin-top: 28px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; color: var(--texto-2); }
.check-list li strong { color: var(--texto); font-weight: 600; }
.check-list .ic { width: 22px; height: 22px; padding: 4px; border-radius: 50%; background: rgba(52, 211, 153, .14); color: var(--verde); stroke-width: 3; margin-top: 2px; }

@media (max-width: 1024px) { .perf { grid-template-columns: 1fr; } }
@media (max-width: 560px) {
  .perf__painel { padding: 22px; }
  .rings { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .perf__metrics { grid-template-columns: 1fr; }
}

/* ---------- Banda hospedagem ---------- */
.hosting {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: auto 1fr auto; gap: 40px; align-items: center;
  padding: 48px 56px; border-radius: 32px;
  background:
    radial-gradient(circle at 0% 50%, rgba(255, 198, 25, .22), transparent 45%),
    radial-gradient(circle at 100% 0%, rgba(59, 130, 246, .25), transparent 50%),
    var(--surface);
  border: 1px solid rgba(255, 198, 25, .25);
}
.hosting__num { font-family: var(--font-titulo); font-weight: 800; line-height: .85; font-size: clamp(90px, 12vw, 150px); letter-spacing: -0.06em; }
.hosting__num small { display: block; font-size: 20px; letter-spacing: 0; color: var(--amarelo); margin-top: 10px; text-align: center; }
.hosting h2 { font-size: clamp(26px, 3.2vw, 38px); font-weight: 800; margin-bottom: 12px; }
.hosting p { color: var(--texto-2); }
@media (max-width: 900px) { .hosting { grid-template-columns: 1fr; text-align: center; padding: 40px 24px; gap: 24px; } }

/* ---------- Duas formas ---------- */
.formas { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.forma { padding: 40px; }
.forma__tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ciano); margin-bottom: 18px; }
.forma--destaque { border-color: rgba(255, 198, 25, .3); background: linear-gradient(180deg, rgba(255, 198, 25, .07), rgba(255, 255, 255, .01)); }
.forma--destaque .forma__tag { color: var(--amarelo); }
.forma h3 { font-size: 26px; margin: 0 0 12px; }
.forma .check-list { margin-top: 24px; }
.forma__demo { margin-top: 28px; border-radius: 14px; border: 1px solid var(--borda); background: rgba(0, 0, 0, .25); padding: 16px; font-family: ui-monospace, "Cascadia Code", Consolas, monospace; font-size: 13px; line-height: 1.7; color: var(--texto-2); overflow-x: auto; }
.forma__demo .t { color: #F472B6; } .forma__demo .a { color: var(--ciano); } .forma__demo .s { color: var(--amarelo); }
.painel-demo { margin-top: 28px; border-radius: 14px; border: 1px solid var(--borda); background: rgba(0, 0, 0, .25); display: grid; grid-template-columns: 90px 1fr; min-height: 150px; overflow: hidden; }
.painel-demo aside { border-right: 1px solid var(--borda); padding: 12px 10px; display: grid; align-content: start; gap: 8px; }
.painel-demo aside i { display: block; height: 8px; border-radius: 4px; background: rgba(255, 255, 255, .08); }
.painel-demo aside i:first-child { background: var(--amarelo); width: 70%; }
.painel-demo div { padding: 14px; display: grid; gap: 10px; align-content: start; }
.painel-demo label { font-size: 11px; color: var(--texto-3); }
.painel-demo .campo { height: 30px; border-radius: 8px; border: 1px solid var(--borda-2); display: flex; align-items: center; padding: 0 10px; font-size: 12.5px; color: var(--texto); }
.painel-demo .campo::after { content: ""; width: 1px; height: 14px; background: var(--amarelo); margin-left: 2px; animation: piscar 1s steps(1) infinite; }
.painel-demo .salvar { justify-self: end; font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 8px; background: var(--amarelo); color: #111; }
@keyframes piscar { 50% { opacity: 0; } }
@media (max-width: 900px) { .formas { grid-template-columns: 1fr; } .forma { padding: 28px; } }

/* ---------- Processo ---------- */
.processo { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; counter-reset: passo; }
.processo::before {
  content: ""; position: absolute; top: 32px; left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(90deg, var(--amarelo), var(--ciano)) left / var(--progresso, 0%) 100% no-repeat, var(--borda-2);
  transition: background-size 2s var(--ease);
}
.passo { position: relative; text-align: center; padding: 0 6px; }
.passo__num {
  width: 64px; height: 64px; margin: 0 auto 24px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--bg); border: 1px solid var(--borda-2);
  font-family: var(--font-titulo); font-weight: 800; font-size: 20px;
  position: relative; z-index: 1;
  transition: border-color .5s, box-shadow .5s, color .5s;
}
.passo.is-visible .passo__num { border-color: var(--amarelo); color: var(--amarelo); box-shadow: 0 0 0 6px rgba(255, 198, 25, .08), 0 0 30px rgba(255, 198, 25, .3); }
.passo h3 { font-size: 18px; margin-bottom: 10px; }
.passo p { font-size: 14.5px; color: var(--texto-2); }
@media (max-width: 900px) {
  .processo { grid-template-columns: 1fr; gap: 28px; }
  .processo::before { top: 0; bottom: 0; left: 31px; right: auto; width: 2px; height: auto; background: linear-gradient(180deg, var(--amarelo), var(--ciano)) top / 100% var(--progresso, 0%) no-repeat, var(--borda-2); }
  .passo { display: grid; grid-template-columns: 64px 1fr; gap: 20px; text-align: left; padding: 0; }
  .passo__num { margin: 0; }
  .passo h3 { margin-top: 8px; }
}

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }
.faq details { border-radius: 18px; border: 1px solid var(--borda); background: rgba(255, 255, 255, .02); transition: border-color .3s, background .3s; }
.faq details[open] { border-color: var(--borda-2); background: rgba(255, 255, 255, .04); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 26px;
  font-family: var(--font-titulo); font-weight: 600; font-size: 17px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--borda-2);
  background:
    linear-gradient(var(--texto), var(--texto)) center / 12px 2px no-repeat,
    linear-gradient(var(--texto), var(--texto)) center / 2px 12px no-repeat;
  transition: transform .3s var(--ease), background-color .3s;
}
.faq details[open] summary::after { transform: rotate(45deg); background-color: rgba(255, 198, 25, .15); }
.faq details > div { padding: 0 26px 24px; color: var(--texto-2); }
.faq details > div p + p { margin-top: 10px; }

/* ---------- CTA final ---------- */
.cta {
  position: relative; overflow: hidden; isolation: isolate;
  text-align: center;
  padding: 90px 32px; border-radius: 36px;
  background: var(--surface);
  border: 1px solid var(--borda-2);
}
.cta::before {
  content: ""; position: absolute; inset: -40%; z-index: -1;
  background: conic-gradient(from 0deg, transparent 0 60%, rgba(255, 198, 25, .35) 75%, rgba(34, 211, 238, .35) 90%, transparent 100%);
  animation: girar 12s linear infinite;
}
.cta::after { content: ""; position: absolute; inset: 1px; border-radius: 35px; background: radial-gradient(circle at 50% 0%, #152044, var(--bg-2) 70%); z-index: -1; }
@keyframes girar { to { transform: rotate(360deg); } }
.cta h2 { font-size: clamp(32px, 5vw, 58px); font-weight: 800; max-width: 820px; margin: 20px auto 18px; }
.cta p { color: var(--texto-2); font-size: 18px; max-width: 600px; margin: 0 auto 36px; }
.cta__btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
@media (max-width: 560px) { .cta { padding: 60px 20px; border-radius: 26px; } .cta::after { border-radius: 25px; } .cta__btns .btn { flex: 1 1 100%; } }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--borda); padding: 72px 0 32px; background: var(--bg-2); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer__sobre p { color: var(--texto-2); font-size: 15px; margin-top: 18px; max-width: 320px; }
.footer h4 { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--texto-3); margin-bottom: 18px; font-weight: 700; }
.footer li + li { margin-top: 10px; }
.footer li a { color: var(--texto-2); font-size: 15px; transition: color .2s; display: inline-flex; align-items: center; gap: 8px; }
.footer li a:hover { color: var(--amarelo); }
.footer li .ic { width: 18px; height: 18px; }
.footer__local { display: flex; align-items: center; gap: 8px; color: var(--texto-2); font-size: 15px; }
.footer__local .ic { color: var(--amarelo); }
.footer__base { margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--borda); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 13.5px; color: var(--texto-3); }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 60px; height: 60px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25D366; color: #fff;
  box-shadow: 0 12px 30px -6px rgba(37, 211, 102, .6);
  transition: transform .3s var(--ease);
}
.wa-float::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25D366; animation: pulsar 2.4s ease-out infinite; }
.wa-float:hover { transform: scale(1.08); }
.wa-float .ic { width: 30px; height: 30px; }
@keyframes pulsar { from { transform: scale(1); opacity: .8; } to { transform: scale(1.6); opacity: 0; } }

/* ---------- Páginas internas ---------- */
.page-hero { padding: calc(var(--header-h) + 80px) 0 80px; overflow: hidden; isolation: isolate; text-align: center; }
.page-hero h1 { font-size: clamp(36px, 5.2vw, 64px); font-weight: 800; margin: 22px auto 20px; max-width: 900px; letter-spacing: -0.035em; }
.page-hero p { color: var(--texto-2); font-size: 19px; max-width: 680px; margin: 0 auto; }
.page-hero .hero__ctas { justify-content: center; }
.breadcrumb { font-size: 13px; color: var(--texto-3); }
.breadcrumb a:hover { color: var(--texto); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split h2 { font-size: clamp(30px, 3.8vw, 44px); font-weight: 800; margin: 18px 0 16px; }
.split > div > p { color: var(--texto-2); font-size: 17px; }
@media (max-width: 960px) { .split { grid-template-columns: 1fr; gap: 48px; } }

.contato-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
.contato-card { display: block; padding: 40px; text-align: left; }
.contato-card h2 { font-size: 26px; margin: 22px 0 8px; }
.contato-card .contato-card__valor { font-family: var(--font-titulo); font-weight: 700; font-size: 20px; color: var(--texto); margin: 14px 0 24px; word-break: break-word; }
@media (max-width: 760px) { .contato-cards { grid-template-columns: 1fr; } .contato-card { padding: 28px; } }

/* ---------- Revelar ao rolar ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--d, 0s); }
.reveal.is-visible { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
  .marquee { overflow-x: auto; }
}

/* ==========================================================================
   Mockups de sites (modelos ilustrativos por nicho)
   Cada .mock escala pelo próprio tamanho (unidades cqw).
   ========================================================================== */
.mock {
  container-type: inline-size;
  aspect-ratio: 16 / 10; overflow: hidden; position: relative;
  background: var(--m-bg); color: var(--m-fg);
  font-family: var(--m-font, var(--font-corpo));
  --m-title: var(--font-titulo); --m-radius: 99px; --m-on: #fff; --m-card: rgba(0, 0, 0, .06);
}
.mock * { line-height: 1.2; }
.m-nav { display: flex; align-items: center; gap: 2.6cqw; padding: 2.6cqw 4.5cqw; font-size: 1.55cqw; }
.m-nav span { opacity: .75; }
.m-nav b { font-family: var(--m-title); font-size: 2.4cqw; margin-right: auto; letter-spacing: -.02em; display: flex; align-items: center; gap: .8cqw; }
.m-nav em, .m-btn { font-style: normal; font-weight: 700; background: var(--m-accent); color: var(--m-on); padding: 1cqw 2.2cqw; border-radius: var(--m-radius); white-space: nowrap; }
.m-btn { display: inline-block; font-size: 1.6cqw; padding: 1.5cqw 3cqw; }
.m-btn--ghost { background: transparent; color: var(--m-fg); box-shadow: inset 0 0 0 .2cqw currentColor; margin-left: 1cqw; }
.m-hero { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3cqw; padding: 2cqw 4.5cqw 3cqw; align-items: center; }
.m-copy small { display: block; font-size: 1.3cqw; letter-spacing: .22em; text-transform: uppercase; color: var(--m-accent); font-weight: 700; }
.m-copy h4 { font-family: var(--m-title); font-size: 4.6cqw; line-height: 1.02; margin: 1.4cqw 0 1.4cqw; letter-spacing: -.02em; font-weight: 800; }
.m-copy p { font-size: 1.6cqw; opacity: .72; margin-bottom: 2.4cqw; line-height: 1.45; }
.m-art { position: relative; height: 30cqw; }
.m-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2cqw; padding: 0 4.5cqw; }
.m-card { border-radius: 1.4cqw; background: var(--m-card); padding: 1.6cqw 1.8cqw; font-size: 1.4cqw; min-height: 11cqw; }
.m-card b { display: block; font-family: var(--m-title); font-size: 1.8cqw; margin: .8cqw 0 .4cqw; }
.m-card span { opacity: .65; }
.m-dot { width: 3.6cqw; height: 3.6cqw; border-radius: 1cqw; background: var(--m-accent); opacity: .9; }
.m-price { font-family: var(--m-title); font-weight: 800; font-size: 1.9cqw; color: var(--m-accent); }

/* Barbearia */
.mock--barbearia { --m-bg: #0F0D0B; --m-fg: #F3E9DC; --m-accent: #C8843E; --m-on: #0F0D0B; --m-title: var(--font-serif); --m-radius: 0; --m-card: #1B1714; }
.mock--barbearia .m-copy h4 { font-weight: 700; }
.mock--barbearia .m-art::before { content: ""; position: absolute; inset: 0 8% 0 8%; border-radius: 50% 50% 0 0; background: radial-gradient(circle at 50% 35%, #3A2A1C, #1B1714 70%); border: .3cqw solid #C8843E; }
.mock--barbearia .m-art::after { content: ""; position: absolute; left: 42%; top: 12%; width: 16%; height: 76%; border-radius: 99px; background: repeating-linear-gradient(-35deg, #C8843E 0 2cqw, #F3E9DC 2cqw 4cqw, #7A1F1F 4cqw 6cqw); box-shadow: 0 0 0 .6cqw #0F0D0B, 0 0 0 .9cqw #C8843E; }

/* Clínica de estética */
.mock--estetica { --m-bg: #FBF3F0; --m-fg: #4A2C2A; --m-accent: #B9736D; --m-title: var(--font-serif); --m-card: #F4E4DE; }
.mock--estetica .m-copy h4 { font-weight: 600; font-style: italic; }
.mock--estetica .m-art::before { content: ""; position: absolute; inset: 4% 6% 4% 14%; border-radius: 62% 38% 54% 46% / 48% 58% 42% 52%; background: linear-gradient(140deg, #F2C9BF, #D99A90); }
.mock--estetica .m-art::after { content: ""; position: absolute; width: 34%; aspect-ratio: 1; right: 2%; bottom: 0; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #fff, #F4E4DE); box-shadow: 0 2cqw 4cqw rgba(74, 44, 42, .15); }
.mock--estetica .m-art i { position: absolute; left: 0; top: 18%; z-index: 1; background: #fff; border-radius: 1.2cqw; padding: 1.2cqw 1.6cqw; font-size: 1.3cqw; font-style: normal; box-shadow: 0 1.5cqw 3cqw rgba(74, 44, 42, .12); }

/* Restaurante */
.mock--restaurante { --m-bg: #1A120D; --m-fg: #F7ECDF; --m-accent: #E8A33D; --m-on: #1A120D; --m-title: var(--font-serif); --m-card: #261A13; --m-radius: .6cqw; }
.mock--restaurante .m-art::before { content: ""; position: absolute; width: 78%; aspect-ratio: 1; top: 50%; left: 50%; translate: -50% -50%; border-radius: 50%; background: radial-gradient(circle, #F7ECDF 0 44%, #E9DCCB 45% 60%, #2E2019 61% 63%, transparent 64%); box-shadow: 0 3cqw 6cqw rgba(0, 0, 0, .6); }
.mock--restaurante .m-art::after { content: ""; position: absolute; width: 36%; aspect-ratio: 1; top: 50%; left: 50%; translate: -50% -50%; border-radius: 50%; background: radial-gradient(circle at 35% 40%, #7FB24A 0 18%, transparent 19%), radial-gradient(circle at 65% 38%, #D6452B 0 16%, transparent 17%), radial-gradient(circle at 50% 66%, #E8A33D 0 20%, transparent 21%), radial-gradient(circle, #8C4A22 0 70%, transparent 71%); }

/* Cafeteria / chocolateria */
.mock--cafe { --m-bg: #EFE4D6; --m-fg: #3B2418; --m-accent: #6B3F26; --m-on: #EFE4D6; --m-title: var(--font-serif); --m-card: #E4D5C3; }
.mock--cafe .m-art svg { width: 100%; height: 100%; }

/* Moda / lingerie */
.mock--moda { --m-bg: #FFFFFF; --m-fg: #111111; --m-accent: #111111; --m-on: #fff; --m-radius: 0; --m-card: #F4F4F4; }
.mock--moda .m-nav b { letter-spacing: .3em; font-size: 2cqw; }
.mock--moda .m-copy h4 { text-transform: uppercase; letter-spacing: -.03em; }
.mock--moda .m-art { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6cqw; }
.mock--moda .m-art div { position: relative; background: #F6D6DE; }
.mock--moda .m-art div:nth-child(2) { background: #E9E2D6; margin-top: 4cqw; }
.mock--moda .m-art div::before { content: ""; position: absolute; left: 22%; right: 22%; top: 16%; bottom: 20%; border-radius: 40% 40% 8% 8% / 20% 20% 8% 8%; background: #111; opacity: .85; }
.mock--moda .m-art div:nth-child(2)::before { background: #B98B63; border-radius: 8% 8% 40% 40%; }
.mock--moda .m-art div span { position: absolute; left: 1cqw; bottom: 1cqw; font-size: 1.3cqw; background: #fff; padding: .5cqw 1cqw; font-weight: 700; }

/* Farmácia */
.mock--farmacia { --m-bg: #F3FAF7; --m-fg: #0B3D2E; --m-accent: #0FA36B; --m-card: #E1F2EA; --m-radius: 1cqw; }
.mock--farmacia .m-search { display: flex; align-items: center; gap: 1cqw; margin-bottom: 2cqw; padding: 1.2cqw 1.6cqw; border-radius: 1cqw; background: #fff; box-shadow: 0 .6cqw 2cqw rgba(11, 61, 46, .08); font-size: 1.4cqw; opacity: .9; }
.mock--farmacia .m-art::before { content: ""; position: absolute; top: 50%; left: 45%; translate: -50% -50%; width: 60%; aspect-ratio: 1; background: linear-gradient(#0FA36B, #0FA36B) center / 34% 100% no-repeat, linear-gradient(#0FA36B, #0FA36B) center / 100% 34% no-repeat; border-radius: 2cqw; filter: drop-shadow(0 2cqw 3cqw rgba(15, 163, 107, .35)); }
.mock--farmacia .m-art::after { content: ""; position: absolute; right: 4%; bottom: 8%; width: 30%; height: 12%; border-radius: 99px; rotate: -30deg; background: linear-gradient(90deg, #fff 50%, #F59E0B 50%); box-shadow: 0 1cqw 2cqw rgba(0, 0, 0, .12); }

/* Supermercado */
.mock--mercado { --m-bg: #FFFBEA; --m-fg: #14532D; --m-accent: #E11D48; --m-card: #fff; --m-radius: 1cqw; }
.mock--mercado .m-art { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6cqw; }
.mock--mercado .m-art div { background: #fff; border-radius: 1.4cqw; box-shadow: 0 .8cqw 2cqw rgba(20, 83, 45, .1); position: relative; display: grid; place-items: center; font-size: 1.3cqw; padding-top: 5cqw; }
.mock--mercado .m-art div::before { content: ""; position: absolute; top: 2cqw; width: 6cqw; aspect-ratio: 1; border-radius: 50%; background: var(--c, #F59E0B); }
.mock--mercado .m-art div b { position: absolute; top: 1cqw; right: 1cqw; background: #E11D48; color: #fff; font-size: 1.2cqw; padding: .3cqw .8cqw; border-radius: 99px; }

/* Loja de carros */
.mock--carros { --m-bg: #111214; --m-fg: #FFFFFF; --m-accent: #E11D2E; --m-card: #1C1D21; --m-radius: .4cqw; }
.mock--carros .m-copy h4 { font-style: italic; text-transform: uppercase; }
.mock--carros .m-art::before { content: ""; position: absolute; inset: 20% -10% 6% 10%; background: radial-gradient(ellipse at 50% 90%, rgba(225, 29, 46, .45), transparent 60%); }
.mock--carros .m-art svg { position: absolute; width: 112%; left: -6%; bottom: 14%; }
.mock--carros .m-art i { position: absolute; height: .3cqw; background: linear-gradient(90deg, transparent, #E11D2E); border-radius: 9px; left: -14%; }

/* Imobiliária */
.mock--imobiliaria { --m-bg: #F8F6F1; --m-fg: #1C1917; --m-accent: #B45309; --m-card: #fff; --m-radius: .8cqw; --m-title: var(--font-serif); }
.mock--imobiliaria .m-art { border-radius: 1.6cqw; overflow: hidden; background: linear-gradient(180deg, #F6C58E 0%, #FDE8CD 55%, #D6CFC2 56%); }
.mock--imobiliaria .m-art::before { content: ""; position: absolute; left: 12%; bottom: 44%; width: 44%; height: 34%; background: #fff; clip-path: polygon(0 40%, 50% 0, 100% 40%, 100% 100%, 0 100%); }
.mock--imobiliaria .m-art::after { content: ""; position: absolute; right: 10%; bottom: 44%; width: 36%; height: 46%; background: linear-gradient(#1C1917 0 0) 30% 40% / 22% 20% no-repeat, linear-gradient(#1C1917 0 0) 70% 40% / 22% 20% no-repeat, #E7E0D4; }
.mock--imobiliaria .m-art .m-busca { position: absolute; left: 6%; right: 6%; bottom: 10%; background: #fff; border-radius: 1cqw; padding: 1.2cqw; display: flex; gap: 1cqw; font-size: 1.3cqw; align-items: center; box-shadow: 0 1cqw 3cqw rgba(0, 0, 0, .12); }
.mock--imobiliaria .m-busca span { flex: 1; opacity: .6; }

/* Hotel / pousada */
.mock--hotel { --m-bg: #F4EFE6; --m-fg: #1F3A2E; --m-accent: #1F3A2E; --m-on: #F4EFE6; --m-title: var(--font-serif); --m-card: #EAE2D4; --m-radius: 0; }
.mock--hotel .m-nav b { letter-spacing: .2em; font-size: 2cqw; }
.mock--hotel .m-copy h4 { font-weight: 600; }
.mock--hotel .m-art { display: grid; grid-template-columns: 1.3fr 1fr; gap: 1.6cqw; }
.mock--hotel .m-art div { border-radius: 99cqw 99cqw 0 0; background: linear-gradient(180deg, #E9B98F, #F2D7B6 50%, #7FA38C 51%, #1F3A2E); position: relative; overflow: hidden; }
.mock--hotel .m-art div::before { content: ""; position: absolute; width: 30%; aspect-ratio: 1; left: 35%; top: 28%; border-radius: 50%; background: #FFF3DC; }
.mock--hotel .m-art div:nth-child(2) { margin-top: 8cqw; background: linear-gradient(180deg, #A9C7D6, #DDEBEF 60%, #3E7A8C 61%); }

/* Kart / boliche / entretenimento */
.mock--kart { --m-bg: #120A2A; --m-fg: #FFFFFF; --m-accent: #A3FF12; --m-on: #120A2A; --m-card: #1E1442; --m-radius: .6cqw; }
.mock--kart .m-copy h4 { font-style: italic; text-transform: uppercase; font-size: 5cqw; }
.mock--kart .m-art::before { content: ""; position: absolute; inset: 6% 0 10% 10%; background: repeating-conic-gradient(#fff 0 25%, #120A2A 0 50%) 0 0 / 5cqw 5cqw; transform: perspective(40cqw) rotateY(-24deg) skewY(-6deg); border-radius: 1cqw; box-shadow: 0 0 6cqw rgba(163, 255, 18, .35); }
.mock--kart .m-art::after { content: "VOLTA RÁPIDA 00:42.18"; position: absolute; left: 0; bottom: 0; background: #A3FF12; color: #120A2A; font-weight: 800; font-size: 1.4cqw; padding: 1cqw 1.6cqw; border-radius: .6cqw; font-style: italic; }

/* Energia solar */
.mock--solar { --m-bg: #0B1F3A; --m-fg: #FFFFFF; --m-accent: #FBBF24; --m-on: #0B1F3A; --m-card: #12294B; --m-radius: 1cqw; }
.mock--solar .m-art::before { content: ""; position: absolute; width: 34%; aspect-ratio: 1; right: 4%; top: 0; border-radius: 50%; background: radial-gradient(circle, #FDE68A, #FBBF24 60%); box-shadow: 0 0 8cqw #FBBF24; }
.mock--solar .m-art::after { content: ""; position: absolute; left: 0; right: 10%; bottom: 8%; height: 58%; background: linear-gradient(90deg, rgba(255, 255, 255, .5) .25cqw, transparent .25cqw) 0 0 / 20% 100%, linear-gradient(rgba(255, 255, 255, .5) .25cqw, transparent .25cqw) 0 0 / 100% 33.4%, linear-gradient(160deg, #2563EB, #1E3A8A); transform: perspective(40cqw) rotateX(38deg); border: .3cqw solid #93C5FD; border-radius: .6cqw; }

/* Assistência técnica (celular, máquina de lavar, eletricista) */
.mock--assistencia { --m-bg: #0F172A; --m-fg: #F1F5F9; --m-accent: #38BDF8; --m-on: #0F172A; --m-card: #1E293B; --m-radius: 1cqw; }
.mock--assistencia .m-art::before { content: ""; position: absolute; left: 30%; top: 2%; width: 34%; height: 96%; border-radius: 3cqw; border: .6cqw solid #334155; background: linear-gradient(160deg, #1E293B, #0F172A); box-shadow: 0 0 6cqw rgba(56, 189, 248, .3); }
.mock--assistencia .m-art svg { position: absolute; left: 36%; top: 30%; width: 22%; color: #38BDF8; }
.mock--assistencia .m-art i { position: absolute; font-style: normal; font-size: 1.3cqw; background: #1E293B; border: .15cqw solid #334155; border-radius: 1cqw; padding: .9cqw 1.3cqw; }

/* Financeira / banco */
.mock--financeira { --m-bg: #F5F7FB; --m-fg: #0F172A; --m-accent: #2563EB; --m-card: #fff; --m-radius: 1cqw; }
.mock--financeira .m-art::before { content: ""; position: absolute; inset: 0 6% 16% 0; border-radius: 1.6cqw; background: #fff; box-shadow: 0 1.6cqw 4cqw rgba(15, 23, 42, .1); }
.mock--financeira .m-art .m-bars { position: absolute; left: 6%; right: 14%; bottom: 24%; height: 50%; display: flex; align-items: flex-end; gap: 1.4cqw; }
.mock--financeira .m-bars i { flex: 1; border-radius: .6cqw .6cqw 0 0; background: #DBEAFE; }
.mock--financeira .m-bars i:nth-child(odd) { background: #2563EB; }
.mock--financeira .m-art::after { content: ""; position: absolute; right: 0; bottom: 0; width: 46%; aspect-ratio: 1.6; border-radius: 1.4cqw; background: linear-gradient(135deg, #1E3A8A, #2563EB 60%, #60A5FA); box-shadow: 0 2cqw 4cqw rgba(37, 99, 235, .35); }

/* Infoproduto */
.mock--infoproduto { --m-bg: #0A0A0A; --m-fg: #FFFFFF; --m-accent: #FF5A1F; --m-card: #161616; --m-radius: .8cqw; }
.mock--infoproduto .m-art { border-radius: 1.4cqw; background: linear-gradient(135deg, #2A1206, #0A0A0A); border: .2cqw solid #262626; overflow: hidden; }
.mock--infoproduto .m-art::before { content: ""; position: absolute; top: 42%; left: 50%; translate: -50% -50%; width: 9cqw; aspect-ratio: 1; border-radius: 50%; background: conic-gradient(from 0deg, #FF5A1F, #FFB020, #FF5A1F); box-shadow: 0 0 6cqw rgba(255, 90, 31, .6); }
.mock--infoproduto .m-art::after { content: ""; position: absolute; top: 42%; left: 51%; translate: -50% -50%; border-left: 2.8cqw solid #fff; border-top: 1.7cqw solid transparent; border-bottom: 1.7cqw solid transparent; }
.mock--infoproduto .m-art i { position: absolute; left: 6%; right: 6%; bottom: 10%; height: .6cqw; border-radius: 9px; background: linear-gradient(90deg, #FF5A1F 38%, #333 38%); }
.mock--infoproduto .m-art span { position: absolute; left: 6%; top: 8%; font-size: 1.3cqw; padding: .5cqw 1.2cqw; border-radius: 99px; background: rgba(255, 90, 31, .18); color: #FF8A5B; }

/* Mockup "genérico" usado no hero (site da própria SiteRápido) */
.mock--hero { --m-bg: #0B1120; --m-fg: #EAF0FF; --m-accent: #FFC619; --m-on: #111; --m-card: #111A2E; aspect-ratio: 16 / 11; }
.mock--hero .m-copy h4 { font-size: 5cqw; }
.mock--hero .m-art { display: grid; place-items: center; }
.mock--hero .m-art::before { content: ""; position: absolute; inset: 6%; border-radius: 3cqw; background: conic-gradient(from 210deg, #3B82F6, #22D3EE, #FFC619, #3B82F6); filter: blur(4cqw); opacity: .55; animation: girar 10s linear infinite; }
.mock--hero .m-art b { position: relative; font-family: var(--font-titulo); font-size: 11cqw; font-weight: 800; letter-spacing: -.05em; background: var(--grad-amarelo); -webkit-background-clip: text; background-clip: text; color: transparent; }
.mock--hero .m-art b small { display: block; font-size: 1.6cqw; letter-spacing: .1em; color: var(--texto-2); -webkit-text-fill-color: var(--texto-2); text-align: center; text-transform: uppercase; margin-top: -1cqw; }
.mock--hero .m-card i { display: block; height: .8cqw; border-radius: 9px; background: rgba(255, 255, 255, .08); margin-top: .8cqw; }
.mock--hero .m-card i + i { width: 60%; }

.mock--phone { aspect-ratio: auto; height: 100%; container-type: inline-size; }
.mock--phone .m-nav { padding: 12cqw 7cqw 5cqw; font-size: 6cqw; }
.mock--phone .m-nav b { font-size: 8cqw; }
.mock--phone .m-copy { padding: 0 7cqw; }
.mock--phone .m-copy small { font-size: 5cqw; }
.mock--phone .m-copy h4 { font-size: 13cqw; margin: 4cqw 0; }
.mock--phone .m-copy p { font-size: 6cqw; margin-bottom: 6cqw; }
.mock--phone .m-btn { font-size: 6cqw; padding: 4cqw 7cqw; display: block; text-align: center; }
.mock--phone .m-stack { display: grid; gap: 4cqw; padding: 8cqw 7cqw; }
.mock--phone .m-card { font-size: 5cqw; border-radius: 5cqw; padding: 5cqw; min-height: 0; }
.mock--phone .m-card b { font-size: 6.5cqw; }
