:root {
  /* Paleta oficial Zion */
  --orange:      #F55000;
  --orange-2:    #ff7a33;
  --orange-dim:  rgba(245, 80, 0, .12);
  --orange-glow: rgba(245, 80, 0, .22);
  --bg:          #080808;
  --bg-soft:     #0f0f0f;
  --card:        #141414;
  --card2:       #1a1a1a;
  --line:        rgba(255, 255, 255, .08);
  --line-warm:   rgba(245, 80, 0, .25);
  --text:        #ffffff;
  --body:        #b8b8b8;
  --muted:       rgba(255, 255, 255, .35);
  --grad:        linear-gradient(120deg, #ff8a3d, #F55000 60%, #c43e00);
  --radius: 16px;
  --max: 1140px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, sans-serif;
  background-color: #060608;
  color: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Fundo ÚNICO de todo o site: base escura profunda + brilhos âmbar da marca.
   Fixo, então a página inteira compartilha o mesmo ambiente ao rolar. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(1000px 680px at 8% -8%, rgba(245, 80, 0, .18), transparent 58%),
    radial-gradient(900px 760px at 104% 14%, rgba(255, 122, 51, .12), transparent 55%),
    radial-gradient(820px 820px at 50% 118%, rgba(245, 80, 0, .12), transparent 60%),
    linear-gradient(180deg, #0c0c10 0%, #08080a 46%, #050506 100%);
}

/* Textura de grade bem sutil por cima, esmaecendo nas bordas */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px);
  background-size: 62px 62px;
  -webkit-mask-image: radial-gradient(ellipse 120% 80% at 50% 0%, #000 25%, transparent 78%);
  mask-image: radial-gradient(ellipse 120% 80% at 50% 0%, #000 25%, transparent 78%);
}

h1, h2, h3, .logo__text { font-family: "Space Grotesk", sans-serif; line-height: 1.1; color: var(--text); }

a { color: inherit; text-decoration: none; }

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

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

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 30px var(--orange-glow);
}
.btn--primary:hover { transform: translateY(-2px); background: var(--orange-2); box-shadow: 0 14px 40px var(--orange-glow); }
.btn--ghost { border-color: var(--line); color: var(--text); background: transparent; }
.btn--ghost:hover { border-color: var(--orange); }
.btn--small { padding: 10px 18px; font-size: 14px; background: rgba(255,255,255,.05); border-color: var(--line); color: var(--text); }
.btn--small:hover { border-color: var(--orange); }
.btn--block { width: 100%; }

/* Botões "Falar com..." com luz laranja correndo na borda */
.glow-btn {
  position: relative;
  display: inline-flex;
  padding: 2px;                 /* espessura da borda iluminada */
  border-radius: 999px;
  background: var(--line-warm); /* anel de base, sempre visível */
  overflow: hidden;
  isolation: isolate;
}
.glow-btn::before {
  content: "";
  position: absolute;
  inset: -60%;                  /* cobre os cantos ao girar */
  z-index: -1;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 280deg,
    var(--orange-2) 320deg,
    #fff 345deg,
    var(--orange) 360deg
  );
  animation: glow-run 2.8s linear infinite;
}
.glow-btn__inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  transition: background .2s ease;
}
.glow-btn:hover .glow-btn__inner { background: var(--orange); }

@keyframes glow-run { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  .glow-btn::before { animation: none; }
}

/* FAQ (acordeão, ajuda no SEO e tira dúvidas do cliente) */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq__item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  padding: 4px 22px;
  transition: border-color .2s ease;
}
.faq__item[open] { border-color: var(--line-warm); }
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-weight: 600;
  color: var(--text);
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  color: var(--orange);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  transition: transform .2s ease;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--body); padding: 0 0 18px; margin: 0; }

.footer__contato {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  padding: 8px 24px 36px;
}
.footer__botoes { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(8, 8, 8, .75);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav__links { display: flex; gap: 28px; }
.nav__links a { color: var(--body); font-size: 15px; transition: color .2s; }
.nav__links a:hover, .nav__links a.active { color: var(--orange); }

/* Botão hambúrguer (só aparece no mobile) */
.nav__toggle { display: none; }
.nav__menu-cta { display: none; }

.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.logo__img { height: 48px; width: auto; display: block; }
.footer .logo__img { height: 64px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 110px 0 80px;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
}

/* Brilho âmbar suave no topo do hero, integrado ao fundo único do site */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(680px 420px at 18% 8%, rgba(245, 80, 0, .16), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.hero__inner { position: relative; text-align: center; }
.tag {
  display: inline-block;
  padding: 7px 16px;
  border: 1px solid var(--line-warm);
  border-radius: 999px;
  font-size: 13px;
  color: var(--orange-2);
  background: var(--orange-dim);
  margin-bottom: 28px;
}
.hero__title { font-size: clamp(2.4rem, 6vw, 4.4rem); font-weight: 700; }
.hero__sub { max-width: 620px; margin: 22px auto 0; color: var(--body); font-size: clamp(1rem, 2.5vw, 1.2rem); }
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }

.hero__visual {
  margin: 44px auto 0;
  max-width: 400px;
  position: relative;
}
.hero__visual img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 60px var(--orange-glow));
  animation: bob 8s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 760px;
  margin: 56px auto 0;
}
.stat { padding: 22px 16px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-soft); }
.stat strong { display: block; font-size: 2.1rem; font-family: "Inter", sans-serif; font-weight: 800; letter-spacing: -1px; color: var(--orange); }
.stat span { font-size: 13px; color: var(--body); }

/* Hero dividido (formulário no topo) */
.hero__split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
  text-align: left;
  position: relative;
  z-index: 1;
}
.hero__left .hero__title { font-size: clamp(2rem, 4.2vw, 3.3rem); }
.hero__left .hero__sub { margin: 20px 0 0; max-width: 520px; }
.hero__list { margin-top: 26px; }
.hero__right { position: relative; }
.form__title { font-size: clamp(1.35rem, 3vw, 1.7rem); margin: 6px 0 8px; }
.form__lead { color: var(--body); font-size: 14px; margin-bottom: 22px; }

/* ---------- Seções ---------- */
.section { padding: 90px 0; }
.section--alt { background: rgba(255, 255, 255, .022); border-block: 1px solid var(--line); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 54px; }
.eyebrow { color: var(--orange); font-weight: 600; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; }
.section__head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-top: 12px; }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  transition: transform .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-6px); border-color: var(--line-warm); }
.card__icon {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  background: #050505;
  border: 1px solid var(--line-warm);
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-bottom: 18px;
  transition: box-shadow .25s ease;
}
.card:hover .card__icon { box-shadow: 0 0 24px var(--orange-glow); }
.card__icon svg { width: 28px; height: 28px; color: var(--orange); stroke-width: 1.9; }
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { color: var(--body); font-size: 15px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { padding: 30px 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); position: relative; }
.step__num { font-family: "Inter", sans-serif; font-size: 2.8rem; font-weight: 800; letter-spacing: -1px; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; margin-bottom: 14px; }
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { color: var(--body); font-size: 15px; }

/* ---------- Diagnóstico ---------- */
.diag { position: relative; overflow: hidden; }
.diag__glow {
  position: absolute;
  right: -150px; bottom: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(closest-side, var(--orange-glow), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}
.diag__inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.diag__text h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 12px 0 18px; }
.diag__text p { color: var(--body); }
.diag__list { list-style: none; margin-top: 22px; display: grid; gap: 12px; }
.diag__list li { padding-left: 30px; position: relative; color: var(--text); }
.diag__list li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.diag__visual { margin-top: 34px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.diag__visual img { width: 100%; height: auto; display: block; }

/* ---------- Form ---------- */
.form { background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 32px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 7px; color: var(--text); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); }
.field textarea { resize: vertical; }
.form__note { text-align: center; font-size: 13px; color: var(--body); margin-top: 14px; }
.hidden { display: none; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding-top: 56px; background: transparent; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; padding-bottom: 40px; }
.footer__desc { color: var(--body); font-size: 14px; margin-top: 14px; max-width: 320px; }
.footer__links, .footer__social { display: flex; flex-direction: column; gap: 12px; }
.footer__links a, .footer__social a { color: var(--body); font-size: 15px; transition: color .2s; }
.footer__links a:hover, .footer__social a:hover { color: var(--orange); }
.footer__bottom { display: flex; justify-content: space-between; padding-block: 22px; border-top: 1px solid var(--line); font-size: 13px; color: var(--body); }

/* ---------- WhatsApp flutuante ---------- */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
  transition: transform .2s ease, box-shadow .2s ease;
  animation: wa-pulse 2.8s ease-out infinite;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 32px; height: 32px; }
@keyframes wa-pulse {
  0%   { box-shadow: 0 8px 24px rgba(0,0,0,.35), 0 0 0 0 rgba(37,211,102,.45); }
  70%  { box-shadow: 0 8px 24px rgba(0,0,0,.35), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 24px rgba(0,0,0,.35), 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Animação de entrada ao rolar ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Página Criação de Sites ---------- */
.nav__links a[aria-current="page"] { color: var(--orange); }
.section__sub { color: var(--body); margin-top: 14px; font-size: 1.05rem; }
.card__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--orange-2);
  background: var(--orange-dim);
  border: 1px solid var(--line-warm);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 12px;
}
.steps--four { grid-template-columns: repeat(4, 1fr); }

.highlight {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 56px 32px;
  border: 1px solid var(--line-warm);
  border-radius: 24px;
  background: var(--bg-soft);
}
.highlight__glow {
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 520px; height: 360px;
  background: radial-gradient(closest-side, var(--orange-glow), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}
.highlight > * { position: relative; z-index: 1; }
.highlight h2 { font-size: clamp(1.6rem, 4vw, 2.3rem); margin: 12px 0 16px; }
.highlight p { color: var(--body); max-width: 560px; margin: 0 auto 28px; }

/* Seção Criação de Sites na landing */
#criacao-de-sites { position: relative; overflow: hidden; }
.sites__glow {
  position: absolute; top: 8%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 480px;
  background: radial-gradient(closest-side, var(--orange-glow), transparent 70%);
  filter: blur(60px); pointer-events: none; z-index: 0;
}
#criacao-de-sites .container { position: relative; z-index: 1; }
.cards--mt { margin-top: 52px; }
.sites__sub { text-align: center; font-size: 1.3rem; margin: 58px 0 28px; }
.sites__cta { margin-top: 48px; }

/* Mockup de navegador */
.browser-mock {
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
}
.browser-mock__bar {
  display: flex; align-items: center; gap: 14px;
  padding: 11px 16px;
  background: var(--card2);
  border-bottom: 1px solid var(--line);
}
.browser-mock__dots { display: flex; gap: 7px; }
.browser-mock__dots i { width: 11px; height: 11px; border-radius: 50%; background: rgba(255, 255, 255, .16); }
.browser-mock__url {
  flex: 1; max-width: 340px;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 8px; padding: 6px 14px;
  font-size: 12px; color: var(--muted);
}
.browser-mock__view { padding: 22px clamp(18px, 4vw, 40px) 32px; background: var(--bg); }
.bm-nav { display: flex; align-items: center; gap: 14px; padding-bottom: 14px; }
.bm-logo { width: 26px; height: 26px; border-radius: 50%; background: var(--grad); }
.bm-links { display: flex; gap: 12px; flex: 1; }
.bm-links i { width: 38px; height: 7px; border-radius: 4px; background: rgba(255, 255, 255, .12); }
.bm-pill { width: 84px; height: 22px; border-radius: 999px; background: var(--orange); }
.bm-hero { display: flex; flex-direction: column; align-items: center; gap: 11px; text-align: center; padding: 26px 0 28px; }
.bm-bar { border-radius: 6px; background: rgba(255, 255, 255, .16); }
.bm-bar--lg { width: 62%; height: 20px; }
.bm-bar--grad { width: 44%; background: var(--grad); }
.bm-bar--sm { width: 54%; height: 9px; background: rgba(255, 255, 255, .1); margin-top: 6px; }
.bm-bar--xs { width: 40%; height: 9px; background: rgba(255, 255, 255, .1); }
.bm-btn { width: 132px; height: 30px; border-radius: 999px; background: var(--orange); margin-top: 12px; box-shadow: 0 8px 24px var(--orange-glow); }
.bm-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.bm-cards span { height: 78px; border-radius: 10px; background: var(--card); border: 1px solid var(--line); }

/* Texto de apoio e lista de recursos */
.sites__lead { text-align: center; color: var(--body); max-width: 580px; margin: -10px auto 30px; }
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature {
  display: flex;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}
.feature svg { width: 22px; height: 22px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.feature h4 { font-family: "Space Grotesk", sans-serif; font-size: 1.05rem; color: var(--text); margin-bottom: 5px; }
.feature p { color: var(--body); font-size: 14px; line-height: 1.5; }

/* O que inclui - painel único compacto */
.includes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px 36px;
  padding: 34px 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}
.includes__item { display: flex; gap: 13px; }
.includes__item svg { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.includes__item h4 { font-family: "Space Grotesk", sans-serif; font-size: .98rem; color: var(--text); margin-bottom: 3px; }
.includes__item p { color: var(--body); font-size: 13px; line-height: 1.45; }

/* Nichos - chips */
.niche-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 860px; margin: 0 auto; }
.niche-chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  font-size: 14px; color: var(--text);
  transition: border-color .2s ease, transform .2s ease;
}
.niche-chip:hover { border-color: var(--line-warm); transform: translateY(-2px); }
.niche-chip svg { width: 17px; height: 17px; color: var(--orange); flex-shrink: 0; }

/* Como criamos - fluxo sem moldura */
.flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.flow__num {
  display: block; margin-bottom: 10px;
  font-family: "Inter", sans-serif; font-weight: 800; font-size: 2rem; letter-spacing: -1px; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.flow__item h4 { font-family: "Space Grotesk", sans-serif; font-size: 1.05rem; color: var(--text); margin-bottom: 6px; }
.flow__item p { color: var(--body); font-size: 14px; line-height: 1.5; }

/* Galeria de exemplos de site */
.sites-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.site-frame {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--card2);
  transition: transform .25s ease, border-color .25s ease;
}
.site-frame:hover { transform: translateY(-6px); border-color: var(--line-warm); }
.site-frame img { width: 100%; height: auto; display: block; border-block: 1px solid var(--line); }
.site-frame figcaption { padding: 13px 16px; font-size: 13px; color: var(--body); text-align: center; }

/* Fundo de imagem no destaque/CTA */
.highlight__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .16; z-index: 0; }

/* Showcase (dashboard + celular) */
.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.showcase + .showcase { margin-top: 64px; }
.showcase--reverse .showcase__media { order: 2; }
.showcase__media img { width: 100%; height: auto; display: block; }
.showcase__media--framed img { border: 1px solid var(--line); border-radius: var(--radius); }
.showcase__text h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin: 12px 0 16px; }
.showcase__text p { color: var(--body); }
.showcase__text .diag__list { margin-top: 20px; }

/* ---------- Responsivo ---------- */
@media (max-width: 880px) {
  .cards, .steps, .features, .includes, .flow { grid-template-columns: 1fr 1fr; }
  .diag__inner { grid-template-columns: 1fr; gap: 32px; }
  .hero__split { grid-template-columns: 1fr; gap: 34px; }
  .hero__left .hero__sub { max-width: none; }
  .showcase { grid-template-columns: 1fr; gap: 30px; }
  .showcase--reverse .showcase__media { order: 0; }
  .sites-gallery { grid-template-columns: 1fr; }

  /* ----- Menu mobile ----- */
  .nav__toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;
    padding: 11px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, .04);
    cursor: pointer;
  }
  .nav__toggle span { display: block; height: 2px; width: 100%; background: var(--text); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
  .nav--open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav--open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav--open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav__cta-desktop { display: none; }

  .nav__links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    padding: 10px 24px 22px;
    background: rgba(8, 8, 8, .98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }
  .nav--open .nav__links { opacity: 1; transform: none; pointer-events: auto; }
  .nav__links a:not(.nav__menu-cta) { padding: 15px 4px; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav__menu-cta { display: inline-flex; justify-content: center; margin-top: 16px; }
}
@media (max-width: 560px) {
  .cards, .steps, .hero__stats, .features, .includes, .flow { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; }
  .whatsapp-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .whatsapp-float svg { width: 30px; height: 30px; }
}
