/* ============================================================
   Digital Card - Landing institucional (superficie de marketing)
   ------------------------------------------------------------
   DIVERGE DE PROPOSITO do design system da Studio Connecta.
   Esta landing NAO importa colors_and_type.css nem usa tokens
   --sc-*. E uma copia fiel da linguagem visual de uma referencia
   externa (portfolio light-first, bege quente + acento azul),
   decidida conscientemente pelo mentorado apenas para esta pagina.
   Toda a paleta, radii e sombras sao definidos aqui, self-contained.
   Fonte da verdade da marca continua sendo o DS oficial da SC.
   ============================================================ */

/* ---------- Tokens locais (so desta landing) ---------- */
:root {
  /* Superficies */
  --outer: #D6D3D1;          /* stone-300, fundo externo */
  --paper: #F3F3F1;          /* bege quente, container central */
  --paper-soft: #FBFBFA;     /* superficie clara de apoio */
  --paper-veil: rgba(255, 255, 255, 0.55);
  --ink-section: #08090A;    /* secao escura near-black */
  --card-surface: #E7E5E3;   /* cartao/mock claro */
  --card-surface-2: #1A1A1E; /* mock escuro (device) */

  /* Texto */
  --text-strong: #0A0A0A;
  --text-900: #171717;
  --text-700: #404040;
  --text-500: #6B7280;
  --text-400: #9CA3AF;
  --text-on-dark: #F5F5F4;
  --text-on-dark-mut: #A1A1AA;

  /* Acento azul (unico acento, como a referencia) */
  --blue-400: #60A5FA;
  --blue-500: #3B82F6;
  --blue-600: #2563EB;
  --blue-700: #1D4ED8;
  --blue-900: #1E3A8A;

  /* Botao escuro (estilo referencia) */
  --btn-dark: #1A1A1A;
  --btn-dark-hover: #000000;

  /* Bordas / hairlines */
  --line: rgba(23, 23, 23, 0.10);
  --line-soft: rgba(23, 23, 23, 0.06);
  --glass-line: rgba(255, 255, 255, 0.40);

  /* Radii (cantos MUITO arredondados) */
  --r-container: 2.5rem;
  --r-section: 2rem;
  --r-card: 2.5rem;
  --r-lg: 1.5rem;
  --r-md: 1rem;
  --r-sm: 0.75rem;
  --r-pill: 999px;

  /* Sombras profundas */
  --shadow-2xl: 0 45px 90px -30px rgba(15, 20, 30, 0.45), 0 20px 45px -25px rgba(15, 20, 30, 0.30);
  --shadow-xl: 0 24px 50px -20px rgba(15, 20, 30, 0.35);
  --shadow-lg: 0 16px 34px -18px rgba(15, 20, 30, 0.28);
  --shadow-inner: inset 0 2px 24px rgba(23, 23, 23, 0.10);
  --shadow-btn: 0 14px 30px -12px rgba(37, 99, 235, 0.10), 0 8px 18px -10px rgba(15, 20, 30, 0.25);

  /* Tipografia */
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Bricolage Grotesque", "Inter", sans-serif;
  --font-mono: "Space Mono", ui-monospace, "SFMono-Regular", monospace;

  /* Ritmo */
  --pad-x: clamp(1.5rem, 5vw, 6rem);
}

/* ---------- Reset leve ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  min-height: 100vh;
  padding: clamp(0px, 1.2vw, 1.5rem);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: var(--outer);
  color: var(--text-900);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

::selection { background: rgba(59, 130, 246, 0.28); color: var(--blue-900); }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* Foco visivel acessivel */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--blue-600);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ---------- Container central ---------- */
.shell {
  width: 100%;
  max-width: 1400px;
  background: var(--paper);
  border-radius: var(--r-container);
  box-shadow: var(--shadow-2xl);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Ruido sutil global sobre o papel */
.shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--noise);
  opacity: 0.5;
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 0;
}
.shell > * { position: relative; z-index: 1; }

/* ---------- Micro-labels (kicker) ---------- */
.eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-400);
}
.section-head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3.4vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-900);
  font-family: var(--font-display);
}

/* ---------- Navbar ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.75rem var(--pad-x);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}
.brand-mark {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 26px;
}
.brand-mark span {
  width: 8px;
  border-radius: var(--r-pill);
  background: var(--text-strong);
  transition: height 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.brand-mark span:nth-child(1) { height: 16px; }
.brand-mark span:nth-child(2) { height: 26px; }
.brand-mark span:nth-child(3) { height: 20px; }
.brand:hover .brand-mark span:nth-child(1) { height: 26px; }
.brand:hover .brand-mark span:nth-child(2) { height: 14px; }
.brand:hover .brand-mark span:nth-child(3) { height: 26px; }
.brand-word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--text-strong);
}
.brand-word b { color: var(--blue-600); font-weight: 600; }

.nav-links {
  display: none;
  align-items: center;
  gap: 2.4rem;
}
.nav-links a {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-500);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--text-strong); }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border: 0;
  transition: transform 0.25s ease, background 0.25s ease, color 0.2s ease, box-shadow 0.25s ease;
}
.btn svg { width: 14px; height: 14px; }
.btn-primary {
  background: var(--btn-dark);
  color: #fff;
  padding: 0.85rem 1.5rem;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover { background: var(--btn-dark-hover); transform: translateY(-2px) scale(1.03); }
.btn-ghost {
  color: var(--text-500);
  padding: 0.6rem 1rem;
  border-radius: var(--r-pill);
  background: transparent;
}
.btn-ghost:hover { color: var(--text-strong); background: rgba(23, 23, 23, 0.05); }

.btn-lg {
  padding: 1.05rem 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}
.btn-dark-lg {
  background: #000;
  color: #fff;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-xl);
}
.btn-dark-lg:hover { background: var(--text-700); transform: translateY(-2px) scale(1.02); }
.btn-dark-lg svg { width: 16px; height: 16px; }
.btn-outline-lg {
  background: transparent;
  color: var(--text-900);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
}
.btn-outline-lg:hover { border-color: rgba(23,23,23,0.28); background: var(--paper-veil); transform: translateY(-2px); }
.btn-outline-lg svg { width: 16px; height: 16px; }

/* Botao hamburguer (mobile) */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: var(--paper-veil);
  color: var(--text-900);
}
.nav-toggle svg { width: 18px; height: 18px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* Menu mobile (painel) */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 var(--pad-x) 1.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 0.85rem 0.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-500);
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu a:hover { color: var(--text-strong); }

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1fr;
}
.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem var(--pad-x) 3rem;
  z-index: 2;
}
.hero-title-wrap { position: relative; margin: 1.5rem 0 1.5rem; }
.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.85;
  color: var(--text-strong);
  font-size: clamp(3.4rem, 12vw, 8.5rem);
}
.hero-title .accent { color: var(--blue-600); }
.hero-badge {
  position: absolute;
  bottom: -1rem;
  left: 0.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #000;
  color: #fff;
  padding: 0.55rem 1.1rem;
  border-radius: var(--r-pill);
  transform: rotate(-2deg);
  box-shadow: var(--shadow-xl);
  transition: transform 0.35s ease;
}
.hero-badge:hover { transform: rotate(0deg); }
.hero-badge span {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.25);
}
.hero-sub {
  margin: 2.25rem 0 1rem;
  max-width: 34rem;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--text-900);
}
.hero-sub .accent { color: var(--blue-600); }
.hero-lead {
  max-width: 32rem;
  color: var(--text-500);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 2rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }

/* Painel visual do hero (mockup) */
.hero-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem 3rem;
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(37, 99, 235, 0.16), transparent 60%),
    radial-gradient(90% 80% at 15% 90%, rgba(96, 165, 250, 0.18), transparent 62%),
    linear-gradient(160deg, #101827 0%, #0b1220 55%, #080b14 100%);
  border-top-left-radius: 3rem;
}
.hero-visual .glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero-visual .glow.a { width: 60%; height: 55%; top: -10%; right: -8%; background: rgba(37, 99, 235, 0.45); }
.hero-visual .glow.b { width: 48%; height: 48%; bottom: -12%; left: -6%; background: rgba(96, 165, 250, 0.30); }
.hero-visual .noise-layer {
  position: absolute; inset: 0;
  background-image: var(--noise);
  opacity: 0.28; mix-blend-mode: soft-light; pointer-events: none;
}

/* ---------- Mockup de telefone (self-contained) ---------- */
.phone {
  position: relative;
  width: min(300px, 78vw);
  aspect-ratio: 300 / 620;
  border-radius: 2.6rem;
  background: linear-gradient(160deg, #23232a, #0d0d10);
  padding: 12px;
  box-shadow: var(--shadow-2xl), 0 0 0 1px rgba(255,255,255,0.06);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-visual:hover .phone { transform: translateY(-8px) rotate(-1deg); }
.phone::before {
  content: "";
  position: absolute;
  top: 16px; left: 50%; transform: translateX(-50%);
  width: 34%; height: 7px; border-radius: var(--r-pill);
  background: rgba(0,0,0,0.55);
  z-index: 4;
}
.phone-screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 2rem;
  overflow: hidden;
  background: #0d0e12;
  display: flex;
  flex-direction: column;
}
/* Cartao dentro da tela (reflete o produto real) */
.mini-cover {
  position: relative;
  padding: 1.4rem 1.2rem 1.15rem;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(8,10,14,0.05), rgba(8,10,14,0.82)),
    linear-gradient(150deg, #26407a 0%, #1b2a52 48%, #16203c 100%);
  color: #fff;
}
.mini-cover .mini-logo {
  position: absolute; top: 1.1rem; left: 1.2rem;
  display: inline-flex; align-items: baseline; gap: 4px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: -0.01em;
}
.mini-cover .mini-logo em { font-style: normal; font-weight: 300; color: var(--blue-400); }
.mini-eyebrow {
  font-size: 0.5rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.22em; color: rgba(255,255,255,0.7); margin: 0 0 0.35rem;
}
.mini-name { margin: 0; font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; letter-spacing: -0.02em; }
.mini-role { margin: 0.15rem 0 0; font-size: 0.72rem; color: rgba(255,255,255,0.72); }
.mini-body {
  flex: 1;
  padding: 0.9rem 1rem 1.1rem;
  background: #0f1116;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.mini-save {
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.6rem; border-radius: var(--r-pill);
  background: var(--blue-600); color: #fff;
  font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
}
.mini-save svg { width: 13px; height: 13px; }
.mini-row {
  display: flex; align-items: center; gap: 0.55rem;
  padding: 0.5rem 0.65rem; border-radius: var(--r-md);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
}
.mini-row .ic {
  width: 26px; height: 26px; flex: none;
  border-radius: 8px; display: grid; place-items: center;
  background: rgba(96,165,250,0.16); color: var(--blue-400);
}
.mini-row .ic svg { width: 14px; height: 14px; }
.mini-row .tx { display: flex; flex-direction: column; min-width: 0; }
.mini-row .tx b { font-size: 0.6rem; color: #fff; font-weight: 600; }
.mini-row .tx span { font-size: 0.54rem; color: rgba(255,255,255,0.55); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-orbs { display: flex; gap: 0.4rem; margin-top: 0.15rem; }
.mini-orbs span {
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
}
.mini-orbs span svg { width: 15px; height: 15px; }

/* Pill de vidro flutuante */
.float-pill {
  position: absolute;
  z-index: 5;
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.10);
  border: 1px solid var(--glass-line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff;
  font-size: 0.58rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em;
  box-shadow: var(--shadow-lg);
}
.float-pill svg { width: 13px; height: 13px; color: var(--blue-400); }
.float-pill.tr { top: 12%; right: 6%; animation: floaty 6s ease-in-out infinite; }
.float-pill.bl { bottom: 10%; left: 4%; animation: floaty 7s ease-in-out infinite 0.6s; }
.float-orb {
  position: absolute; z-index: 5;
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.85);
  top: 46%; left: 5%;
  animation: pulse 3s ease-in-out infinite;
}
.float-orb svg { width: 20px; height: 20px; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .float-pill.tr, .float-pill.bl, .float-orb { animation: none; }
}

/* ---------- Manifesto (secao escura) ---------- */
.manifesto {
  padding: clamp(1rem, 2.5vw, 2rem);
}
.manifesto-inner {
  position: relative;
  border-radius: var(--r-section);
  background: var(--ink-section);
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 7rem) clamp(1.5rem, 6vw, 4rem);
  text-align: center;
}
.manifesto-inner .amb-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 60rem; height: 24rem;
  background: rgba(37, 99, 235, 0.14);
  filter: blur(120px); border-radius: 50%;
  pointer-events: none; opacity: 0.7;
}
.manifesto-inner .noise-layer {
  position: absolute; inset: 0;
  background-image: var(--noise);
  opacity: 0.2; mix-blend-mode: soft-light; pointer-events: none;
}
.manifesto-content { position: relative; z-index: 1; max-width: 64rem; margin: 0 auto; }
.manifesto h2 {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
  font-size: clamp(1.7rem, 4.4vw, 3rem);
}
.manifesto h2 .accent { color: var(--blue-400); }
.manifesto p {
  margin: 0 auto 2.5rem;
  max-width: 46rem;
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  line-height: 1.55;
  color: var(--text-on-dark-mut);
}
.manifesto p .bright { color: #E4E4E7; }
.manifesto-stats {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem;
}
.manifesto-stats .chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1.1rem; border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: var(--text-on-dark-mut);
  font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.manifesto-stats .chip svg { width: 14px; height: 14px; color: var(--blue-400); }

/* ---------- Recursos (grid alternado) ---------- */
.features { padding: clamp(2rem, 4vw, 3rem) var(--pad-x) clamp(4rem, 8vw, 6rem); }
.feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-bottom: clamp(3.5rem, 8vw, 6rem);
}
.feature:last-child { margin-bottom: 0; }

.feature-media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-card);
  background: var(--card-surface);
  box-shadow: var(--shadow-inner);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.feature-media .mglow {
  position: absolute; width: 70%; height: 70%;
  border-radius: 50%; filter: blur(70px); opacity: 0.2; pointer-events: none;
}
.feature-media .mglow.blue { background: var(--blue-500); top: -18%; left: -18%; }
.feature-media .mglow.deep { background: var(--blue-900); bottom: -18%; right: -14%; opacity: 0.18; }
.feature-media .mglow.sky { background: var(--blue-400); top: 30%; right: -10%; opacity: 0.22; }

.feature-content { padding: 0; }
.feature-num {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 1rem;
}
.feature-num .bar { width: 1.6rem; height: 1px; background: var(--blue-600); opacity: 0.5; }
.feature-content h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--text-900);
  line-height: 1.02;
}
.feature-content p {
  margin: 0 0 1.5rem;
  max-width: 32rem;
  color: var(--text-500);
  font-size: 1.05rem;
  line-height: 1.65;
}
.feature-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.feature-tags span {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 0.85rem; border-radius: var(--r-pill);
  background: var(--paper-veil);
  border: 1px solid var(--line);
  font-size: 0.68rem; font-weight: 600; color: var(--text-700);
  letter-spacing: 0.01em;
}
.feature-tags span svg { width: 13px; height: 13px; color: var(--blue-600); }

/* Mocks internos dos recursos (device claro/escuro) */
.mock {
  position: relative;
  width: 100%;
  border-radius: var(--r-section);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.feature-media:hover .mock { transform: translateY(-8px); }
.mock.framed-blue { border: 7px solid var(--blue-600); }
.mock.framed-dark { border: 6px solid #1b1b20; }

/* Mock 1: barra de endereco / slug */
.mock-url {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  width: 100%;
}
.mock-url .bar {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 0.9rem;
  background: #F4F4F5; border-bottom: 1px solid var(--line);
}
.mock-url .bar .dots { display: flex; gap: 5px; }
.mock-url .bar .dots i { width: 9px; height: 9px; border-radius: 50%; }
.mock-url .bar .dots i:nth-child(1){ background:#F87171; }
.mock-url .bar .dots i:nth-child(2){ background:#FBBF24; }
.mock-url .bar .dots i:nth-child(3){ background:#34D399; }
.mock-url .bar .addr {
  flex: 1; display: flex; align-items: center; gap: 0.4rem;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 0.35rem 0.7rem;
  font-family: var(--font-mono); font-size: 0.62rem; color: var(--text-700);
  overflow: hidden;
}
.mock-url .bar .addr svg { width: 12px; height: 12px; color: var(--blue-600); flex: none; }
.mock-url .bar .addr .slug { color: var(--blue-700); font-weight: 700; }
.mock-url .people { padding: 0.9rem; display: flex; flex-direction: column; gap: 0.55rem; }
.mock-url .person {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.55rem 0.7rem; border-radius: var(--r-md);
  border: 1px solid var(--line-soft); background: var(--paper-soft);
}
.mock-url .person .av {
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 0.66rem;
  font-family: var(--font-display);
}
.mock-url .person .av.b1 { background: linear-gradient(135deg, var(--blue-500), var(--blue-700)); }
.mock-url .person .av.b2 { background: linear-gradient(135deg, #34528f, #1e3a8a); }
.mock-url .person .av.b3 { background: linear-gradient(135deg, #6b7280, #374151); }
.mock-url .person .meta { display: flex; flex-direction: column; min-width: 0; }
.mock-url .person .meta b { font-size: 0.72rem; color: var(--text-900); }
.mock-url .person .meta span { font-family: var(--font-mono); font-size: 0.6rem; color: var(--text-500); }
.mock-url .person .meta span .slug { color: var(--blue-700); }

/* Mock 2: marca do cliente (2 variacoes de cor no cartao) */
.mock-brands { display: flex; gap: 0.9rem; width: 100%; }
.brand-card {
  flex: 1;
  border-radius: var(--r-lg);
  padding: 1rem 0.9rem 1.1rem;
  color: #fff;
  box-shadow: var(--shadow-xl);
  min-height: 168px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.brand-card.violet { background: linear-gradient(155deg, #3b2a63, #241640); }
.brand-card.teal { background: linear-gradient(155deg, #0d4c53, #08262b); }
.brand-card .bc-logo {
  display: inline-flex; align-items: baseline; gap: 3px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: -0.01em;
}
.brand-card.violet .bc-logo em { font-style: normal; font-weight: 300; color: #C4B5FD; }
.brand-card.teal .bc-logo em { font-style: normal; font-weight: 300; color: #5EEAD4; }
.brand-card .bc-name { font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; letter-spacing: -0.01em; }
.brand-card .bc-role { font-size: 0.62rem; color: rgba(255,255,255,0.68); margin-top: 0.1rem; }
.brand-card .bc-cta {
  margin-top: 0.7rem;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.35rem;
  padding: 0.45rem; border-radius: var(--r-pill);
  font-size: 0.56rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
}
.brand-card.violet .bc-cta { background: #8B5CF6; color: #fff; }
.brand-card.teal .bc-cta { background: #2DD4BF; color: #06251f; }
.brand-card .bc-cta svg { width: 12px; height: 12px; }
.brand-swatch { display: inline-flex; gap: 5px; margin-top: 0.55rem; }
.brand-swatch i { width: 14px; height: 14px; border-radius: 5px; border: 1px solid rgba(255,255,255,0.2); }

/* Mock 3: vCard / salvar contato */
.mock-vcard {
  width: 100%; max-width: 260px;
  background: #fff; border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2xl);
  overflow: hidden;
}
.mock-vcard .vc-top {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 1rem; border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(160deg, #eef2fb, #fff);
}
.mock-vcard .vc-top .av {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-900));
  display: grid; place-items: center; color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
}
.mock-vcard .vc-top .meta b { display: block; font-size: 0.82rem; color: var(--text-900); }
.mock-vcard .vc-top .meta span { font-size: 0.62rem; color: var(--text-500); }
.mock-vcard .vc-fields { padding: 0.7rem 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.mock-vcard .vc-fields .f { display: flex; align-items: center; gap: 0.55rem; }
.mock-vcard .vc-fields .f svg { width: 13px; height: 13px; color: var(--blue-600); flex: none; }
.mock-vcard .vc-fields .f span { font-size: 0.66rem; color: var(--text-700); }
.mock-vcard .vc-fields .f .line { flex: 1; height: 6px; border-radius: var(--r-pill); background: #EEF0F4; }
.mock-vcard .vc-save {
  margin: 0.4rem 1rem 1rem;
  display: flex; align-items: center; justify-content: center; gap: 0.45rem;
  padding: 0.7rem; border-radius: var(--r-pill);
  background: var(--blue-600); color: #fff;
  font-size: 0.64rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
}
.mock-vcard .vc-save svg { width: 14px; height: 14px; }
.tap-ring {
  position: absolute; right: 12%; bottom: 14%;
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--blue-500); opacity: 0.55;
  animation: tap 2.4s ease-out infinite;
}
@keyframes tap {
  0% { transform: scale(0.6); opacity: 0.7; }
  100% { transform: scale(1.9); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .tap-ring { animation: none; } }

/* Mock 4: redes + botoes custom */
.mock-links {
  width: 100%; max-width: 250px;
  background: #0f1116; border-radius: var(--r-lg);
  padding: 1rem; box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; gap: 0.6rem;
}
.mock-links .ml-orbs { display: flex; justify-content: center; gap: 0.55rem; }
.mock-links .ml-orbs span {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
}
.mock-links .ml-orbs span svg { width: 17px; height: 17px; }
.mock-links .ml-label {
  font-family: var(--font-mono); font-size: 0.54rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin: 0.3rem 0 0.1rem;
}
.mock-links .ml-btn {
  display: flex; align-items: center; gap: 0.55rem;
  padding: 0.6rem 0.7rem; border-radius: var(--r-md);
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07);
}
.mock-links .ml-btn .ic { width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center; background: rgba(96,165,250,0.16); color: var(--blue-400); flex: none; }
.mock-links .ml-btn .ic svg { width: 13px; height: 13px; }
.mock-links .ml-btn b { font-size: 0.64rem; color: #fff; font-weight: 600; flex: 1; }
.mock-links .ml-btn .chev { color: rgba(255,255,255,0.35); }
.mock-links .ml-btn .chev svg { width: 13px; height: 13px; }

/* Mock 5: selo de disponibilidade + estatisticas */
.mock-panel {
  width: 100%;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-2xl);
  overflow: hidden;
}
.mock-panel .mp-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 1rem; border-bottom: 1px solid var(--line-soft);
  background: #fff;
}
.mock-panel .status {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.35rem 0.75rem; border-radius: var(--r-pill);
  background: rgba(52, 211, 153, 0.14); color: #047857;
  font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
}
.mock-panel .status .live { width: 7px; height: 7px; border-radius: 50%; background: #10B981; box-shadow: 0 0 0 3px rgba(16,185,129,0.2); }
.mock-panel .mp-head .tag { font-family: var(--font-mono); font-size: 0.58rem; color: var(--text-400); text-transform: uppercase; letter-spacing: 0.12em; }
.mock-panel .mp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-soft); }
.mock-panel .cell { background: var(--paper-soft); padding: 0.85rem 1rem; }
.mock-panel .cell .k { font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-400); font-weight: 600; }
.mock-panel .cell .v { display: flex; align-items: baseline; gap: 0.3rem; margin-top: 0.35rem; }
.mock-panel .cell .v .bars { display: inline-flex; align-items: flex-end; gap: 3px; height: 22px; }
.mock-panel .cell .v .bars i { width: 6px; border-radius: 2px 2px 0 0; background: var(--blue-500); }
.mock-panel .cell .v .bars i:nth-child(1){ height: 40%; opacity: 0.4; }
.mock-panel .cell .v .bars i:nth-child(2){ height: 65%; opacity: 0.6; }
.mock-panel .cell .v .bars i:nth-child(3){ height: 90%; }
.mock-panel .cell .v .bars i:nth-child(4){ height: 55%; opacity: 0.55; }
.mock-panel .cell .v .word { font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; color: var(--text-900); }
.mock-panel .cell .trend { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.6rem; color: #047857; font-weight: 700; }
.mock-panel .cell .trend svg { width: 12px; height: 12px; }

/* ---------- CTA final ---------- */
.cta {
  padding: 0 var(--pad-x) clamp(2.5rem, 5vw, 3.5rem);
}
.cta-inner {
  position: relative;
  border-radius: var(--r-section);
  background: linear-gradient(150deg, #12213f 0%, #0c1730 60%, #0a1226 100%);
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 3.5rem);
  text-align: center;
}
.cta-inner .amb-glow {
  position: absolute; bottom: -30%; left: 50%; transform: translateX(-50%);
  width: 80%; height: 20rem; background: rgba(37,99,235,0.35);
  filter: blur(110px); border-radius: 50%; pointer-events: none;
}
.cta-inner .noise-layer { position: absolute; inset: 0; background-image: var(--noise); opacity: 0.18; mix-blend-mode: soft-light; }
.cta-inner .inner { position: relative; z-index: 1; }
.cta-inner .eyebrow { color: rgba(255,255,255,0.55); margin-bottom: 1rem; }
.cta-inner h2 {
  margin: 0 auto 1rem; max-width: 30rem;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.7rem, 4vw, 2.6rem); letter-spacing: -0.02em; color: #fff; line-height: 1.1;
}
.cta-inner p { margin: 0 auto 2rem; max-width: 30rem; color: var(--text-on-dark-mut); font-size: 1.05rem; line-height: 1.6; }
.cta-inner .cta-row { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }
.cta-inner .btn-light {
  background: #fff; color: #0a1226;
  padding: 1.05rem 2rem; border-radius: var(--r-pill);
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em;
  box-shadow: var(--shadow-xl);
  display: inline-flex; align-items: center; gap: 0.55rem;
}
.cta-inner .btn-light:hover { transform: translateY(-2px) scale(1.02); }
.cta-inner .btn-light svg { width: 16px; height: 16px; }
.cta-inner .btn-glass {
  background: rgba(255,255,255,0.08); color: #fff;
  border: 1px solid var(--glass-line);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  padding: 1.05rem 2rem; border-radius: var(--r-pill);
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em;
  display: inline-flex; align-items: center; gap: 0.55rem;
}
.cta-inner .btn-glass:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }
.cta-inner .btn-glass svg { width: 16px; height: 16px; }

/* ---------- Footer ---------- */
.foot {
  padding: clamp(2rem, 4vw, 2.5rem) var(--pad-x) clamp(2.5rem, 5vw, 3rem);
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 1.25rem;
  align-items: center;
  text-align: center;
}
.foot-brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.foot-links { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
.foot-links a {
  font-size: 0.68rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--text-500); transition: color 0.2s ease;
}
.foot-links a:hover { color: var(--text-strong); }
.foot-sig { font-size: 0.8rem; color: var(--text-400); }
.foot-sig em { font-style: italic; color: var(--text-700); }

/* ---------- Reveal no scroll ---------- */
.reveal {
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.7s ease;
  will-change: opacity, transform;
}
/* So esconde quando ha JS (classe .js no <html>); sem JS o conteudo fica visivel. */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(6px);
}
.reveal.in,
.js .reveal.in { opacity: 1; transform: none; filter: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; filter: none; transition: none; }
}

/* ============================================================
   Responsivo (mobile-first: acima expandem em 2 colunas)
   ============================================================ */
@media (min-width: 720px) {
  .hero-cta { gap: 1rem; }
}

@media (min-width: 1000px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }

  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 72vh;
  }
  .hero-copy { padding: 2rem var(--pad-x) 4rem; }
  .hero-visual { min-height: auto; }

  .feature { grid-template-columns: 1fr 1fr; }
  /* alterna: nos pares, media vai para a direita */
  .feature.flip .feature-media { order: 2; }
  .feature.flip .feature-content { order: 1; }
  .feature-content { padding-right: 2rem; }
  .feature.flip .feature-content { padding-right: 0; padding-left: 2rem; }
}

@media (min-width: 1280px) {
  .hero-copy { padding-left: clamp(3rem, 6vw, 6rem); padding-right: clamp(2rem, 4vw, 4rem); }
}
