/* ============================================================
   FastWeb — Landing Page
   Paleta extraída da logo: azul #2176FF → #39A7FF sobre navy
   ============================================================ */

:root {
  --bg: #070D1A;
  --bg-2: #0A1424;
  --card: rgba(255, 255, 255, 0.03);
  --card-solid: #0D1930;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --blue: #2176FF;
  --blue-soft: #4E9BFF;
  --blue-light: #6FC3FF;
  --grad: linear-gradient(92deg, #1B6BF2, #39A7FF);
  /* Gradiente mais escuro para fundos com texto branco (contraste WCAG AA ≥ 4.5:1) */
  --grad-btn: linear-gradient(92deg, #1259D8, #1D6FE8);
  --grad-text: linear-gradient(92deg, #4E9BFF, #7AC8FF);
  --green: #25D366;
  --gold: #FFC24B;
  --text: #EAF1FB;
  --muted: #97A8C5;
  --font-head: "Sora", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --radius: 18px;
  --shadow-blue: 0 10px 30px rgba(33, 118, 255, 0.35);
  --container: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

::selection { background: rgba(33, 118, 255, 0.4); color: #fff; }

:focus-visible {
  outline: 2px solid var(--blue-light);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow { max-width: 820px; }

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 18px;
  border-radius: 10px;
  background: var(--card-solid);
  color: var(--text);
  border: 1px solid var(--line-strong);
  font-weight: 600;
  transform: translateY(-250%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: none;
}

h1, h2, h3 {
  font-family: var(--font-head);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 5.4vw, 4.1rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.18rem; }

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

/* ---------- Botões ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
              border-color 0.25s ease, background-color 0.25s ease,
              filter 0.25s ease;
}

.btn .ico { width: 20px; height: 20px; flex: none; }

.btn-primary {
  background: var(--grad-btn);
  color: #fff;
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(33, 118, 255, 0.5);
}

.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--blue-soft);
  background: rgba(33, 118, 255, 0.1);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-lg { padding: 15px 30px; font-size: 1.02rem; }
.btn-xl { padding: 18px 40px; font-size: 1.12rem; }

/* ---------- Header ---------- */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 14px 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease,
              padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(7, 13, 26, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding: 10px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo { height: 64px; width: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav > a:not(.btn) {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.2s ease;
}

@media (min-width: 901px) and (max-width: 1080px) {
  .nav { gap: 18px; }
  .nav > a:not(.btn) { font-size: 0.88rem; }
}

.nav > a:not(.btn):hover { color: var(--text); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(860px, 100svh);
  padding: 150px 0 84px;
  overflow: hidden;
  isolation: isolate;
  background: #050d19;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero-slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #050d19;
}

.hero-bg-image {
  position: absolute;
  inset: -2%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-slide {
  width: 104%;
  height: 104%;
  opacity: 0;
  will-change: opacity, transform;
  animation: heroScene 18s linear infinite;
}

.hero-slide:nth-child(1) {
  --hero-shift-x: -1.1%;
  --hero-shift-y: 0.4%;
}

.hero-slide:nth-child(2) {
  --hero-shift-x: 1%;
  --hero-shift-y: -0.35%;
  animation-delay: -12s;
}

.hero-slide:nth-child(3) {
  --hero-shift-x: -0.7%;
  --hero-shift-y: -0.25%;
  animation-delay: -6s;
}

@keyframes heroScene {
  0%, 27% {
    opacity: 1;
    transform: scale(1.01) translate3d(0, 0, 0);
  }
  33%, 93% {
    opacity: 0;
    transform: scale(1.075) translate3d(var(--hero-shift-x), var(--hero-shift-y), 0);
  }
  100% {
    opacity: 1;
    transform: scale(1.01) translate3d(0, 0, 0);
  }
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 9, 18, 0.97) 0%, rgba(3, 9, 18, 0.90) 39%, rgba(3, 9, 18, 0.34) 68%, rgba(3, 9, 18, 0.42) 100%),
    linear-gradient(180deg, rgba(3, 9, 18, 0.28) 0%, transparent 52%, rgba(3, 9, 18, 0.78) 100%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.55;
}

.orb-1 {
  width: 560px; height: 560px;
  top: -180px; right: -120px;
  background: radial-gradient(circle, rgba(33, 118, 255, 0.5), transparent 68%);
  animation: orbFloat 16s ease-in-out infinite alternate;
}

.orb-2 {
  width: 420px; height: 420px;
  bottom: -140px; left: -140px;
  background: radial-gradient(circle, rgba(57, 167, 255, 0.35), transparent 68%);
  animation: orbFloat 20s ease-in-out infinite alternate-reverse;
}

.orb-3 {
  width: 300px; height: 300px;
  top: 40%; left: 42%;
  background: radial-gradient(circle, rgba(33, 118, 255, 0.22), transparent 68%);
  animation: orbFloat 24s ease-in-out infinite alternate;
}

@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.12); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 35%, transparent 80%);
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 35%, transparent 80%);
}

.hero .orb { opacity: 0.34; }
.hero .grid-overlay { opacity: 0.46; background-size: 68px 68px; }

.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 520px;
}

.hero-copy {
  max-width: 760px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(33, 118, 255, 0.4);
  background: rgba(33, 118, 255, 0.1);
  color: var(--blue-light);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 26px;
}

.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue-light);
  animation: pulseDot 1.8s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(111, 195, 255, 0.55); }
  60%      { box-shadow: 0 0 0 8px rgba(111, 195, 255, 0); }
}

.hero-sub {
  margin: 24px 0 36px;
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
  color: rgba(226, 236, 250, 0.78);
  max-width: 37rem;
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(3.25rem, 6vw, 5.75rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
  text-shadow: 0 18px 55px rgba(0, 0, 0, 0.34);
}

.hero .badge {
  border-color: rgba(111, 195, 255, 0.38);
  background: rgba(9, 26, 49, 0.62);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero .btn-primary {
  box-shadow: 0 18px 48px rgba(33, 118, 255, 0.34);
}

.hero [hidden] { display: none !important; }

.hero-sub strong { color: var(--text); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-proof strong { color: var(--text); }

.proof-avatars { display: flex; }

.avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg);
}

.proof-avatars .avatar + .avatar { margin-left: -10px; }

.stars { color: var(--gold); letter-spacing: 2px; }

/* ---------- Mockup do navegador ---------- */

.hero-visual { position: relative; }

.mockup {
  position: relative;
  background: linear-gradient(180deg, #0F1D36, #0B1526);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(2, 8, 20, 0.7), 0 0 0 1px rgba(33, 118, 255, 0.06);
  transform-style: preserve-3d;
  will-change: transform;
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}

.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-r { background: #FF5F57; }
.dot-y { background: #FEBC2E; }
.dot-g { background: #28C840; }

.mockup-url {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: 14px;
  flex: 1;
  max-width: 300px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 0.78rem;
  color: var(--muted);
}

.mockup-url svg { width: 12px; height: 12px; flex: none; }

.mockup-body {
  position: relative;
  padding: 20px;
  display: grid;
  gap: 14px;
}

.sk { border-radius: 10px; }

.sk-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.04);
}

.sk-logo {
  width: 64px; height: 12px;
  border-radius: 6px;
  background: var(--grad);
}

.sk-links { display: flex; gap: 8px; margin-left: auto; }

.sk-links i {
  width: 30px; height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.14);
}

.sk-btn {
  width: 56px; height: 18px;
  border-radius: 9px;
  background: rgba(33, 118, 255, 0.55);
}

.sk-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  align-items: center;
  padding: 14px 12px;
  background: rgba(255, 255, 255, 0.03);
}

.sk-copy { display: grid; gap: 9px; }

.sk-line {
  height: 11px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.16);
}

.sk-line.w80 { width: 80%; background: linear-gradient(92deg, rgba(78,155,255,.75), rgba(122,200,255,.55)); height: 14px; }
.sk-line.w95 { width: 95%; }
.sk-line.w60 { width: 60%; }

.sk-cta {
  width: 96px; height: 24px;
  border-radius: 12px;
  background: var(--grad);
  margin-top: 4px;
  box-shadow: 0 4px 14px rgba(33, 118, 255, 0.4);
}

.sk-img {
  height: 92px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(33, 118, 255, 0.25), rgba(57, 167, 255, 0.08));
  border: 1px solid rgba(33, 118, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-soft);
}

.sk-img svg { width: 34px; height: 34px; }

.sk-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }

.sk-cards i {
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}

.mockup-progress {
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.mockup-progress-fill {
  height: 100%;
  width: 0;
  border-radius: 3px;
  background: var(--grad);
  animation: skProg 10s ease-in-out infinite;
}

.mockup-status {
  position: relative;
  height: 22px;
  font-size: 0.82rem;
  font-weight: 600;
}

.mockup-status span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.st-building {
  color: var(--muted);
  animation: skBuilding 10s ease-in-out infinite;
}

.st-live {
  color: #37D67A;
  opacity: 0;
  animation: skLive 10s ease-in-out infinite;
}

.st-live svg { width: 15px; height: 15px; }

/* Ciclo de construção do site (10s, loop) */
.b1  { animation: skIn1 10s ease-in-out infinite; }
.b2  { animation: skIn2 10s ease-in-out infinite; }
.b3  { animation: skIn3 10s ease-in-out infinite; }
.b4  { animation: skIn4 10s ease-in-out infinite; }
.b4d { animation: skIn4d 10s ease-in-out infinite; }
.b4dd{ animation: skIn4dd 10s ease-in-out infinite; }

@keyframes skIn1 {
  0%, 3%       { opacity: 0; transform: translateY(10px); }
  8%, 91%      { opacity: 1; transform: none; }
  97%, 100%    { opacity: 0; transform: translateY(10px); }
}
@keyframes skIn2 {
  0%, 11%      { opacity: 0; transform: translateY(10px); }
  16%, 91%     { opacity: 1; transform: none; }
  97%, 100%    { opacity: 0; transform: translateY(10px); }
}
@keyframes skIn3 {
  0%, 20%      { opacity: 0; transform: translateY(10px); }
  26%, 91%     { opacity: 1; transform: none; }
  97%, 100%    { opacity: 0; transform: translateY(10px); }
}
@keyframes skIn4 {
  0%, 30%      { opacity: 0; transform: translateY(10px); }
  35%, 91%     { opacity: 1; transform: none; }
  97%, 100%    { opacity: 0; transform: translateY(10px); }
}
@keyframes skIn4d {
  0%, 34%      { opacity: 0; transform: translateY(10px); }
  39%, 91%     { opacity: 1; transform: none; }
  97%, 100%    { opacity: 0; transform: translateY(10px); }
}
@keyframes skIn4dd {
  0%, 38%      { opacity: 0; transform: translateY(10px); }
  43%, 91%     { opacity: 1; transform: none; }
  97%, 100%    { opacity: 0; transform: translateY(10px); }
}
@keyframes skProg {
  0%, 5%       { width: 0; }
  55%, 93%     { width: 100%; }
  98%, 100%    { width: 0; }
}
@keyframes skBuilding {
  0%, 3%       { opacity: 0; }
  8%, 53%      { opacity: 1; }
  58%, 100%    { opacity: 0; }
}
@keyframes skLive {
  0%, 55%      { opacity: 0; transform: scale(0.85); }
  61%, 91%     { opacity: 1; transform: scale(1); }
  97%, 100%    { opacity: 0; }
}

/* Chips flutuantes */

.chip {
  position: absolute;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(13, 25, 48, 0.85);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(2, 8, 20, 0.5);
  animation: chipFloat 6s ease-in-out infinite alternate;
  white-space: nowrap;
}

.chip-1 { top: -18px; right: 18px; animation-delay: 0s; }
.chip-2 { bottom: 90px; left: -34px; animation-delay: -1.6s; }
.chip-3 { bottom: -16px; right: 44px; animation-delay: -3.1s; }
.chip-4 { top: 96px; right: -26px; animation-delay: -4.4s; }

@keyframes chipFloat {
  from { transform: translateY(-5px); }
  to   { transform: translateY(7px); }
}

/* ---------- Estatísticas do hero ---------- */

.hero-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 74px;
  padding: 30px 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.028);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

/* ---------- Hero de produto ---------- */

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-checks li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-checks li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.12);
  color: #55dd88;
  font-size: 0.72rem;
  font-weight: 800;
}

/* Produto em primeiro plano: desktop, celular e fluxo de conversão */

.hero-product {
  position: relative;
  min-height: 590px;
  isolation: isolate;
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-product::before {
  content: "24H";
  position: absolute;
  z-index: -1;
  top: -54px;
  left: -16px;
  color: rgba(111, 195, 255, 0.075);
  font-family: var(--font-head);
  font-size: clamp(8rem, 15vw, 11rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.hero-product-glow {
  position: absolute;
  z-index: -1;
  inset: 8% 2% 12% 5%;
  border-radius: 42%;
  background: radial-gradient(circle, rgba(33, 118, 255, 0.35), rgba(33, 118, 255, 0.03) 52%, transparent 72%);
  filter: blur(22px);
}

.product-browser {
  position: absolute;
  inset: 30px 6px 102px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: #F5F1E9;
  box-shadow: 0 40px 90px rgba(1, 7, 18, 0.72), 0 0 0 1px rgba(33, 118, 255, 0.08);
  transform: rotateY(-4deg) rotateX(1deg);
  transform-origin: left center;
}

.product-browser-bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 13px;
  border-bottom: 1px solid #DBE1E8;
  background: #F8FAFC;
  color: #536076;
}

.product-dots { display: flex; gap: 5px; flex: none; }

.product-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF6B63;
}

.product-dots i:nth-child(2) { background: #F8BE3F; }
.product-dots i:nth-child(3) { background: #33C953; }

.product-address {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
  flex: 1;
  padding: 5px 10px;
  border: 1px solid #E1E6EC;
  border-radius: 7px;
  background: #fff;
  font-size: 0.63rem;
  white-space: nowrap;
}

.product-address svg { width: 10px; height: 10px; flex: none; }

.product-concept {
  padding: 5px 8px;
  border-radius: 999px;
  background: #E8F1FF;
  color: #246BCC;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-site {
  height: calc(100% - 42px);
  overflow: hidden;
  background: #F4F0E7;
  color: #1C2730;
  font-family: var(--font-body);
}

.product-site-nav {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.9);
}

.product-site-logo {
  color: #1D2A33;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.product-site-logo b { color: #1E72E8; }

.product-site-links {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.53rem;
  font-style: normal;
  font-weight: 600;
}

.product-site-links i { font-style: normal; }

.product-site-links b {
  padding: 7px 11px;
  border-radius: 999px;
  background: #1E72E8;
  color: #fff;
}

.product-site-hero {
  min-height: 320px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: #EAE5DB;
}

.product-site-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 27px 16px 27px 28px;
}

.product-site-copy small {
  margin-bottom: 10px;
  color: #1E72E8;
  font-size: 0.51rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-site-copy strong {
  max-width: 13rem;
  font-family: var(--font-head);
  font-size: clamp(1.22rem, 2.15vw, 1.65rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.product-site-copy > span {
  max-width: 12rem;
  margin-top: 11px;
  color: #5B6670;
  font-size: 0.58rem;
  line-height: 1.5;
}

.product-site-copy em {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 9px 12px;
  border-radius: 999px;
  background: #152C3B;
  color: #fff;
  font-size: 0.55rem;
  font-style: normal;
  font-weight: 700;
}

.product-site-copy em b { color: #80B9FF; }

.product-site-hero > img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: 50% center;
}

.product-site-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 12px 18px;
  background: #fff;
}

.product-site-proof span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 4px 10px;
  border-left: 1px solid #E7E9ED;
  color: #77808A;
  font-size: 0.46rem;
}

.product-site-proof span:first-child { border-left: 0; }
.product-site-proof b { color: #1E2B34; font-size: 0.56rem; }

.product-phone {
  position: absolute;
  z-index: 4;
  right: -18px;
  bottom: 40px;
  width: 150px;
  aspect-ratio: 9 / 18.8;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 27px;
  background: #07101D;
  box-shadow: 0 28px 54px rgba(1, 7, 18, 0.72), inset 0 0 0 1px rgba(255, 255, 255, 0.07);
  transform: rotate(4deg) translateZ(34px);
}

.product-phone-speaker {
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 50%;
  width: 42px;
  height: 11px;
  border-radius: 999px;
  background: #07101D;
  transform: translateX(-50%);
}

.product-phone-screen {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: #482D20;
}

.product-phone-screen > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 61% center;
}

.product-phone-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 8, 5, 0.18), rgba(14, 8, 4, 0.2) 35%, rgba(12, 7, 4, 0.92) 100%);
}

.product-phone-brand {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 14px;
  color: #fff;
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.product-phone-copy {
  position: absolute;
  z-index: 2;
  inset: auto 14px 19px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-phone-copy small {
  margin-bottom: 7px;
  color: #F6C795;
  font-size: 0.43rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-phone-copy strong {
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.86rem;
  line-height: 1.14;
}

.product-phone-copy span {
  margin-top: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff;
  color: #392418;
  font-size: 0.48rem;
  font-weight: 800;
}

.product-delivery {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 2px;
  width: 128px;
  padding: 14px 15px;
  border: 1px solid rgba(112, 188, 255, 0.42);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(19, 48, 90, 0.97), rgba(8, 20, 39, 0.97));
  box-shadow: 0 18px 44px rgba(2, 8, 20, 0.58);
  transform: translateZ(46px) rotate(2deg);
}

.product-delivery span,
.product-delivery small {
  display: block;
  color: #A7B8D2;
  font-size: 0.49rem;
  line-height: 1.35;
}

.product-delivery span {
  color: #86C8FF;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-delivery strong {
  display: block;
  margin: 3px 0;
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.42rem;
  line-height: 1;
}

.product-flow {
  position: absolute;
  z-index: 3;
  left: 17px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(7, 13, 26, 0.9);
  box-shadow: 0 15px 34px rgba(2, 8, 20, 0.48);
  color: #DCE9F8;
  font-size: 0.62rem;
  font-weight: 700;
  transform: translateZ(28px);
}

.product-flow b { color: var(--blue-light); }

.hero-assurances {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 72px auto 0;
  /* o padding abaixo substitui o gutter do .container; o max-width o devolve */
  max-width: min(var(--container), calc(100% - 48px));
  padding: 25px 10px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.028);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.assurance {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  padding: 4px 20px;
}

.assurance + .assurance { border-left: 1px solid var(--line); }

.assurance-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: none;
  border: 1px solid rgba(33, 118, 255, 0.3);
  border-radius: 12px;
  background: rgba(33, 118, 255, 0.1);
  color: var(--blue-light);
  font-family: var(--font-head);
  font-size: 0.77rem;
  font-weight: 800;
}

.assurance p { min-width: 0; line-height: 1.35; }
.assurance strong { display: block; font-size: 0.9rem; }
.assurance p span { display: block; margin-top: 3px; color: var(--muted); font-size: 0.76rem; }

/* ---------- Marquee ---------- */

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  padding: 17px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.marquee-list { display: flex; }

.marquee-list li {
  position: relative;
  padding: 0 30px;
  white-space: nowrap;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.marquee-list li::after {
  content: "✦";
  position: absolute;
  right: -7px;
  color: var(--blue);
  opacity: 0.6;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Seções ---------- */

.section { padding: 108px 0; }

.section-alt {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-head p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(33, 118, 255, 0.35);
  background: rgba(33, 118, 255, 0.08);
  color: var(--blue-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-cta {
  text-align: center;
  margin-top: 60px;
}

.micro {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.86rem;
}

/* ---------- Exemplos de aplicação ---------- */

.section-showcase {
  background:
    radial-gradient(circle at 50% 0%, rgba(33, 118, 255, 0.11), transparent 34%),
    var(--bg-2);
  border-bottom: 1px solid var(--line);
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  outline: none;
}

.business-grid:focus-visible {
  border-radius: 24px;
  box-shadow: 0 0 0 3px rgba(33, 118, 255, 0.28);
}

.business-swipe-hint {
  display: none;
}

.business-card {
  --preview-accent: #74b9ff;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.business-card--salao { --preview-accent: #f2bdca; }
.business-card--advocacia { --preview-accent: #e2c58d; }
.business-card--engenharia { --preview-accent: #62bdff; }
.business-card--arquitetura { --preview-accent: #e7c99a; }
.business-card--cerimonial { --preview-accent: #efbec8; }
.business-card--festas { --preview-accent: #f1c06c; }
.business-card--clubes { --preview-accent: #8dd5b0; }
.business-card--estruturas { --preview-accent: #6fc8ff; }
.business-card--automoveis { --preview-accent: #7ec8ff; }

.business-card:hover {
  transform: translateY(-7px);
  border-color: rgba(33, 118, 255, 0.4);
  box-shadow: 0 24px 54px rgba(2, 8, 20, 0.46);
}

.business-card-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--card-solid);
}

.business-card-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.business-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
}

.business-card--advocacia .business-card-visual img { object-position: center 42%; }
.business-card--arquitetura .business-card-visual img { object-position: center 44%; }
.business-card:hover .business-card-visual img { transform: scale(1.045); filter: saturate(1.06); }

.site-preview {
  position: absolute;
  inset: 0;
  z-index: 2;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(3, 9, 18, 0.84) 0%, rgba(3, 9, 18, 0.58) 47%, rgba(3, 9, 18, 0.06) 82%),
    linear-gradient(0deg, rgba(3, 9, 18, 0.54), transparent 62%);
}

.site-preview-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 42px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(3, 9, 18, 0.48);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.site-preview-brand {
  min-width: 0;
  overflow: hidden;
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-preview-links {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.5rem;
  font-weight: 600;
  line-height: 1;
}

.site-preview-content {
  position: absolute;
  bottom: 15px;
  left: 15px;
  width: min(76%, 230px);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.site-preview-content small,
.site-preview-content strong,
.site-preview-content > span { display: block; }

.site-preview-content small {
  margin-bottom: 5px;
  color: var(--preview-accent);
  font-size: 0.51rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-preview-content strong {
  max-width: 205px;
  font-family: var(--font-head);
  font-size: clamp(0.91rem, 1.25vw, 1.08rem);
  line-height: 1.06;
}

.site-preview-content > span {
  width: fit-content;
  margin-top: 9px;
  padding: 6px 9px;
  border-radius: 6px;
  background: var(--preview-accent);
  color: #07101d;
  font-size: 0.5rem;
  font-weight: 800;
  line-height: 1;
  text-shadow: none;
}

.business-card-label {
  position: absolute;
  z-index: 5;
  top: 51px;
  right: 11px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(7, 13, 26, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.business-card-copy {
  flex: 1;
  padding: 21px 20px 24px;
}

.business-card-copy > span {
  display: block;
  margin-bottom: 9px;
  color: var(--blue-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.business-card-copy h3 { font-size: 1.03rem; }
.business-card-copy p { margin-top: 9px; color: var(--muted); font-size: 0.91rem; }

.conversion-callout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  margin-top: 50px;
  padding: 28px 30px;
  border: 1px solid rgba(33, 118, 255, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(33, 118, 255, 0.12), rgba(255, 255, 255, 0.025));
}

.conversion-callout-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--grad);
  color: #fff;
  font-size: 1.45rem;
  box-shadow: var(--shadow-blue);
}

.conversion-callout p { color: var(--muted); }
.conversion-callout strong { color: var(--text); font-family: var(--font-head); }
.conversion-callout a { color: var(--blue-light); font-weight: 700; white-space: nowrap; }
.conversion-callout a:hover { color: #fff; }

/* ---------- Cards de benefícios ---------- */

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  padding: 32px 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(33, 118, 255, 0.45);
  box-shadow: 0 18px 44px rgba(2, 8, 20, 0.55), 0 0 0 1px rgba(33, 118, 255, 0.12);
}

.card-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: rgba(33, 118, 255, 0.12);
  border: 1px solid rgba(33, 118, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-soft);
  margin-bottom: 20px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.card:hover .card-icon {
  transform: scale(1.08) rotate(-4deg);
  background: rgba(33, 118, 255, 0.2);
}

.card-icon svg { width: 26px; height: 26px; }

.card p { margin-top: 10px; color: var(--muted); font-size: 0.97rem; }

/* ---------- Callout ---------- */

.callout {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 56px;
  padding: 34px 40px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background:
    linear-gradient(var(--card-solid), var(--card-solid)) padding-box,
    linear-gradient(120deg, rgba(33, 118, 255, 0.65), rgba(57, 167, 255, 0.15)) border-box;
}

.callout-num {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 4.4rem);
  font-weight: 800;
  line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  flex: none;
}

.callout p { font-size: 1.08rem; }
.callout strong { color: var(--blue-light); }
.callout small { color: var(--muted); font-size: 0.82rem; }

/* ---------- Timeline ---------- */

.timeline { position: relative; }

.timeline-track {
  position: absolute;
  top: 55px;
  left: 12%;
  right: 12%;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.timeline-fill {
  height: 100%;
  width: 0;
  background: var(--grad);
  transition: width 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.timeline.in-view .timeline-fill { width: 100%; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.step { text-align: center; padding: 0 6px; }

.step-time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--grad-btn);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 15px;
  box-shadow: 0 6px 18px rgba(33, 118, 255, 0.35);
}

.step-dot {
  width: 15px; height: 15px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 0 5px rgba(33, 118, 255, 0.18);
  position: relative;
  z-index: 1;
}

.step p { margin-top: 8px; color: var(--muted); font-size: 0.94rem; }

/* ---------- Features (o que inclui) ---------- */

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature {
  padding: 28px 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  border-color: rgba(33, 118, 255, 0.4);
  background: rgba(33, 118, 255, 0.05);
}

.feature-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(33, 118, 255, 0.12);
  color: var(--blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-icon svg { width: 23px; height: 23px; }

.feature h3 { font-size: 1.03rem; }

.feature p { margin-top: 8px; color: var(--muted); font-size: 0.9rem; }

/* ---------- Comparativo ---------- */

.compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
}

.compare {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 0.96rem;
}

.compare th, .compare td {
  padding: 17px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.compare tbody tr:last-child th,
.compare tbody tr:last-child td { border-bottom: 0; }

.compare thead th {
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line-strong);
}

.compare tbody th {
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
}

.compare thead th:first-child,
.compare tbody th[scope="row"] {
  position: sticky;
  left: 0;
  background: #0C1729;
  z-index: 1;
}

.compare-hint {
  display: none;
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 12px;
}

.compare td { color: var(--muted); }

.compare .hl {
  background: rgba(33, 118, 255, 0.09);
  color: var(--text);
  border-left: 1px solid rgba(33, 118, 255, 0.35);
  border-right: 1px solid rgba(33, 118, 255, 0.35);
}

.compare thead .hl {
  color: var(--blue-light);
  font-size: 1.05rem;
  position: relative;
}

.hl-badge {
  display: block;
  width: fit-content;
  margin-bottom: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare .no { color: #E86A6A; }
.compare .yes { color: #37D67A; }

/* ---------- Depoimentos ---------- */

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-6px);
  border-color: rgba(33, 118, 255, 0.4);
}

.testimonial blockquote {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text);
  flex: 1;
}

.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-lg { width: 46px; height: 46px; font-size: 1rem; border: 0; }

.testimonial figcaption strong { display: block; font-size: 0.97rem; }
.testimonial figcaption small { color: var(--muted); }

/* ---------- Sobre ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

.about-media {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: var(--card-solid);
  box-shadow: 0 30px 70px rgba(2, 8, 20, 0.48);
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(4, 10, 20, 0.86));
  pointer-events: none;
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: center;
}

.about-media-note {
  position: absolute;
  z-index: 2;
  inset: auto 26px 24px;
}

.about-media-note span {
  display: block;
  margin-bottom: 4px;
  color: var(--blue-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.about-media-note strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.08rem;
}

.about-copy h2 { margin-bottom: 22px; }

.about-copy > p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1rem;
}

.about-points {
  display: grid;
  gap: 0;
  margin: 30px 0 34px;
  border-block: 1px solid var(--line);
}

.about-points li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 17px 0;
}

.about-points li + li { border-top: 1px solid var(--line); }

.about-points li > span {
  color: var(--blue-light);
  font-family: var(--font-head);
  font-size: 0.77rem;
  font-weight: 800;
}

.about-points p { color: var(--muted); font-size: 0.9rem; line-height: 1.5; }
.about-points strong { display: block; margin-bottom: 3px; color: var(--text); font-size: 0.94rem; }

/* ---------- FAQ ---------- */

.faq-list { display: grid; gap: 14px; }

.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item[open] { border-color: rgba(33, 118, 255, 0.4); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  list-style: none;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

/* Indicador de foco interno: o outline padrão (offset externo) seria
   cortado pelo overflow:hidden do .faq-item */
.faq-item summary:focus-visible {
  outline: 2px solid var(--blue-light);
  outline-offset: -3px;
}

.faq-icon {
  position: relative;
  width: 22px; height: 22px;
  flex: none;
}

.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--blue-soft);
  border-radius: 2px;
  transition: transform 0.35s ease;
}

.faq-icon::before { width: 14px; height: 2px; }
.faq-icon::after { width: 2px; height: 14px; }

.faq-item[open] .faq-icon::after { transform: rotate(90deg); }

.faq-body {
  padding: 0 24px;
  overflow: hidden;
}

.faq-body p {
  padding-bottom: 22px;
  color: var(--muted);
}

.faq-body a {
  color: var(--blue-light);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- CTA final ---------- */

.cta-final {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 90% at 50% 110%, rgba(33, 118, 255, 0.22), transparent 70%),
    var(--bg);
}

.cta-bg { position: absolute; inset: 0; pointer-events: none; }

.cta-final .orb-1 { top: auto; bottom: -220px; right: 8%; }
.cta-final .orb-2 { top: -160px; left: 4%; bottom: auto; }

.cta-final .container { position: relative; }

.cta-final h2 {
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  margin-bottom: 20px;
}

.cta-final > .container > p {
  color: var(--muted);
  font-size: 1.12rem;
  margin-bottom: 38px;
}

.badge-invert { margin-bottom: 28px; }

/* ---------- Footer ---------- */

.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding: 56px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 40px;
  align-items: start;
  padding-bottom: 44px;
}

.footer-brand .brand-logo { height: 54px; margin-bottom: 4px; margin-left: -8px; }

.footer-brand p { color: var(--muted); font-size: 0.94rem; }

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: var(--muted);
  font-size: 0.94rem;
  transition: color 0.2s ease;
  width: fit-content;
}

.footer-nav a:hover { color: var(--text); }

.footer-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.footer-phone {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-phone:hover { color: var(--blue-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
  padding-bottom: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
}

/* Folga para o botão flutuante não cobrir o fim do rodapé */
@media (max-width: 1280px) {
  .footer-bottom { padding-bottom: 100px; }
}

/* ---------- WhatsApp flutuante ---------- */

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 38px rgba(37, 211, 102, 0.55);
}

.wa-float svg { width: 30px; height: 30px; }

.wa-float-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--green);
  animation: waPulse 2.2s ease-out infinite;
}

@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ---------- Animações de scroll (reveal) ---------- */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.js [data-reveal].in-view {
  opacity: 1;
  transform: none;
}

.js [data-delay="1"] { --reveal-delay: 0.12s; }
.js [data-delay="2"] { --reveal-delay: 0.24s; }
.js [data-delay="3"] { --reveal-delay: 0.36s; }
.js [data-delay="4"] { --reveal-delay: 0.48s; }

/* ---------- Responsivo ---------- */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 64px; }
  .hero-copy { text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-actions, .hero-proof, .hero-checks { justify-content: center; }
  .hero-simple .hero-copy { text-align: left; }
  .hero-simple .hero-sub { margin-inline: 0; }
  .hero-simple .hero-actions { justify-content: flex-start; }
  .hero-visual { max-width: 620px; margin: 0 auto; width: 100%; }
  .hero-product { min-height: 560px; }
  .product-site-hero,
  .product-site-hero > img { min-height: 290px; }
  .hero-assurances { grid-template-columns: repeat(2, 1fr); }
  .assurance:nth-child(odd) { border-left: 0; }
  .assurance:nth-child(n + 3) { border-top: 1px solid var(--line); padding-top: 18px; margin-top: 14px; }
  .business-grid { grid-template-columns: repeat(2, 1fr); }
  .business-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 9px);
    justify-self: center;
  }
  .features { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
  .timeline-track { display: none; }
  .step-dot { display: none; }
  .about-grid { gap: 44px; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media { min-height: 460px; }
  .about-media img { min-height: 460px; }

  .nav {
    position: fixed;
    top: 96px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px;
    background: rgba(10, 20, 36, 0.97);
    border: 1px solid var(--line-strong);
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(2, 8, 20, 0.7);
    max-height: calc(100vh - 112px);
    max-height: calc(100dvh - 112px);
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
  }

  .nav.open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
    visibility: visible;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav > a:not(.btn) {
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 1rem;
  }

  .nav > a:not(.btn):hover { background: rgba(255, 255, 255, 0.05); }

  .nav-cta { margin-top: 10px; }

  .nav-toggle { display: flex; }
}

@media (max-width: 760px) {
  .section { padding: 80px 0; }
  .hero { min-height: min(720px, 100svh); padding: 136px 0 72px; }
  .hero-inner { min-height: 440px; }
  .hero-bg-image { object-position: 69% center; }
  .hero-backdrop {
    background:
      linear-gradient(90deg, rgba(3, 9, 18, 0.88), rgba(3, 9, 18, 0.64)),
      linear-gradient(180deg, rgba(3, 9, 18, 0.36) 0%, rgba(3, 9, 18, 0.42) 48%, rgba(3, 9, 18, 0.86) 100%);
  }
  .hero-simple .hero-copy { text-align: center; }
  .hero-simple .hero-sub { margin-inline: auto; }
  .hero-simple .hero-actions { justify-content: center; }
  .hero-product { min-height: 500px; }
  .product-browser { inset: 26px 10px 86px 0; }
  .product-site-hero,
  .product-site-hero > img { min-height: 250px; }
  .product-phone { right: 0; bottom: 28px; width: 136px; }
  .product-delivery { right: 10px; }
  .cards-3 { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 26px 12px; padding: 26px 20px; }
  .hero-assurances { grid-template-columns: 1fr; padding: 12px 20px; }
  .assurance { padding: 16px 0; }
  .assurance + .assurance,
  .assurance:nth-child(odd),
  .assurance:nth-child(n + 3) { border-left: 0; border-top: 1px solid var(--line); margin-top: 0; }
  .assurance:first-child { border-top: 0; }
  .business-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    margin: -32px 0 18px;
    color: var(--blue-light);
    font-size: 0.78rem;
    font-weight: 700;
  }
  .business-swipe-hint span { font-size: 1rem; }
  .business-grid {
    grid-template-columns: none;
    grid-auto-columns: min(84vw, 348px);
    grid-auto-flow: column;
    gap: 16px;
    margin-inline: -24px;
    padding: 4px 24px 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 24px;
    scroll-snap-type: inline mandatory;
    scrollbar-color: rgba(86, 161, 255, 0.55) rgba(255, 255, 255, 0.05);
    scrollbar-width: thin;
  }
  .business-card { scroll-snap-align: start; }
  .business-card:last-child {
    grid-column: auto;
    width: auto;
    justify-self: stretch;
  }
  .business-card:hover { transform: none; }
  .business-card-copy { padding: 22px 21px 25px; }
  .site-preview-content strong { font-size: 1.04rem; }
  .conversion-callout { grid-template-columns: 1fr; justify-items: start; }
  .conversion-callout a { white-space: normal; }
  .callout { flex-direction: column; text-align: center; gap: 12px; padding: 30px 24px; }
  .chip-2 { left: -10px; }
  .chip-4 { right: -10px; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-cta { align-items: flex-start; }
  .brand-logo { height: 52px; }
}

@media (max-width: 560px) {
  /* Rótulos longos podem quebrar linha em telas estreitas (e com fonte ampliada) */
  .btn { white-space: normal; text-align: center; }
  .hero-copy { min-width: 0; }
  .hero-copy h1 { font-size: clamp(2.75rem, 13vw, 3.25rem); }
  .hero .badge { padding-inline: 14px; font-size: 0.66rem; }
  .hero-sub { margin-top: 20px; margin-bottom: 30px; font-size: 1rem; }
  .features { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { text-align: left; padding: 22px 24px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); }
  .btn-lg { width: 100%; }
  .btn-xl { width: 100%; padding: 16px 24px; font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-checks { display: grid; justify-content: start; text-align: left; max-width: 330px; margin-inline: auto; }
  .hero-product { min-height: 410px; }
  .product-browser { inset: 22px 0 70px; border-radius: 14px; transform: none; }
  .product-browser-bar { height: 34px; padding-inline: 9px; }
  .product-dots { gap: 3px; }
  .product-dots i { width: 6px; height: 6px; }
  .product-address { padding: 4px 7px; font-size: 0.5rem; }
  .product-concept { display: none; }
  .product-site { height: calc(100% - 34px); }
  .product-site-nav { height: 40px; padding-inline: 13px; }
  .product-site-logo { font-size: 0.56rem; }
  .product-site-links i { display: none; }
  .product-site-links b { padding: 6px 8px; font-size: 0.47rem; }
  .product-site-hero { min-height: 234px; grid-template-columns: 0.94fr 1.06fr; }
  .product-site-copy { padding: 17px 10px 17px 14px; }
  .product-site-copy small { margin-bottom: 7px; font-size: 0.4rem; }
  .product-site-copy strong { font-size: 1rem; }
  .product-site-copy > span { display: none; }
  .product-site-copy em { margin-top: 12px; padding: 7px 9px; font-size: 0.45rem; }
  .product-site-hero > img { min-height: 234px; }
  .product-site-proof { display: none; }
  .product-phone { right: -2px; bottom: 17px; width: 112px; padding: 6px; border-radius: 22px; }
  .product-phone-screen { border-radius: 17px; }
  .product-phone-speaker { top: 10px; width: 34px; height: 9px; }
  .product-phone-brand { top: 24px; left: 11px; font-size: 0.4rem; }
  .product-phone-copy { inset: auto 11px 15px; }
  .product-phone-copy strong { font-size: 0.72rem; }
  .product-phone-copy span { margin-top: 9px; padding: 6px 8px; font-size: 0.41rem; }
  .product-delivery { top: 0; right: 7px; width: 108px; padding: 10px 11px; border-radius: 13px; }
  .product-delivery strong { font-size: 1.12rem; }
  .product-delivery span, .product-delivery small { font-size: 0.42rem; }
  .product-flow { left: 7px; bottom: 17px; gap: 5px; padding: 8px 9px; font-size: 0.5rem; }
  .about-media, .about-media img { min-height: 390px; }
  .about-media-note { inset: auto 20px 18px; }
  .chip { font-size: 0.72rem; padding: 7px 12px; }
  .chip-1 { right: 6px; }
  .chip-3 { right: 12px; }
  .compare { min-width: 620px; }
  .compare-hint { display: block; }
}

/* Suprime transições durante resize da janela (evita flashes) */
.resizing *, .resizing *::before, .resizing *::after {
  transition: none !important;
}

/* ---------- Acessibilidade: reduz movimento ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] { opacity: 1; transform: none; }
  .mockup-progress-fill { width: 100%; }
  .b1, .b2, .b3, .b4, .b4d, .b4dd { opacity: 1; }
  .st-live { opacity: 1; }
  .st-building { opacity: 0; }
  .timeline-fill { width: 100%; }
  .hero-slide { animation: none !important; opacity: 0; transform: none; }
  .hero-slide:first-child { opacity: 1; }
}
