/* ============================================================
   TELNET TELECOM — Design System 2026
   Temas: dark (padrão) e light, alternáveis via [data-theme]
   Fontes: Sora (display) + Inter (texto)
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  /* Marca */
  --brand: #F5A71B;
  --brand-strong: #E29200;
  --brand-soft: rgba(245, 167, 27, 0.13);
  --brand-glow: rgba(245, 167, 27, 0.32);
  --accent: #4CC3FF;
  --accent-soft: rgba(76, 195, 255, 0.10);
  --wa: #25D366;

  /* Tipografia */
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Métricas */
  --container: 1200px;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --header-h: 76px;
  --solbar-h: 0px; /* barra de soluções incorporada ao menu principal */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Tema escuro (padrão) */
  color-scheme: dark;
  --bg: #070B14;
  --bg-2: #0A101D;
  --bg-3: #0D1424;
  --card: rgba(255, 255, 255, 0.03);
  --card-solid: #0E1526;
  --border: rgba(148, 163, 184, 0.15);
  --border-strong: rgba(148, 163, 184, 0.28);
  --text: #EEF2F8;
  --text-2: #9AA6BB;
  --text-3: #6B7890;
  --btn-primary-text: #180F02;
  --header-bg: rgba(7, 11, 20, 0.78);
  --chip-logo-bg: #F4F6FA;
  --shadow-card: 0 8px 30px rgba(2, 6, 16, 0.45);
  --shadow-pop: 0 18px 50px rgba(2, 6, 16, 0.6);
  --hero-grid-line: rgba(148, 163, 184, 0.07);
  --input-bg: rgba(255, 255, 255, 0.04);
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #FFFFFF;
  --bg-2: #F5F7FC;
  --bg-3: #EEF2F9;
  --card: #FFFFFF;
  --card-solid: #FFFFFF;
  --border: #E5EAF3;
  --border-strong: #CBD5E6;
  --text: #121A2C;
  --text-2: #505D75;
  --text-3: #7A8699;
  --btn-primary-text: #180F02;
  --header-bg: rgba(255, 255, 255, 0.82);
  --chip-logo-bg: #FFFFFF;
  --shadow-card: 0 6px 24px rgba(18, 26, 44, 0.07);
  --shadow-pop: 0 18px 50px rgba(18, 26, 44, 0.14);
  --hero-grid-line: rgba(18, 26, 44, 0.05);
  --input-bg: #FFFFFF;
}

/* ---------- 2. Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--solbar-h) + 12px);
  -webkit-text-size-adjust: 100%;
  /* mesmo fundo do body: evita qualquer flash claro entre uma página e outra */
  background-color: var(--bg);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color 0.35s ease, color 0.35s ease;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--brand); color: #180F02; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-wrap: balance;
}

p { margin: 0 0 1em; }

/* ---------- 3. Helpers ---------- */
.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

.section { padding: clamp(4rem, 9vw, 7rem) 0; position: relative; }
.section--alt { background: var(--bg-2); }

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid rgba(245, 167, 27, 0.25);
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}

.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 10px var(--brand-glow);
}

.section-title { font-size: clamp(1.8rem, 4vw, 2.7rem); }
.section-sub { color: var(--text-2); font-size: clamp(1rem, 1.4vw, 1.12rem); max-width: 60ch; }
.section-head--center .section-sub { margin-inline: auto; }

.text-brand { color: var(--brand); }

/* ---------- 4. Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s, border-color 0.25s, color 0.25s;
  white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; flex: none; }

.btn--primary {
  background: linear-gradient(135deg, #FFC24D, var(--brand) 55%, var(--brand-strong));
  color: var(--btn-primary-text);
  box-shadow: 0 8px 24px var(--brand-glow);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px var(--brand-glow); }

.btn--ghost {
  border: 1px solid var(--border-strong);
  color: var(--text);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }

.btn--sm { padding: 0.6rem 1.2rem; font-size: 0.88rem; }
.btn[disabled] { opacity: 0.6; pointer-events: none; }

/* ---------- 5. Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}

.header.is-scrolled {
  background: var(--header-bg);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header__logo { display: flex; align-items: center; flex: none; position: relative; z-index: 2; }
.header__logo img { height: 54px; width: auto; }
.logo-dark-theme { display: block; }
.logo-light-theme { display: none; }
:root[data-theme="light"] .logo-dark-theme { display: none; }
:root[data-theme="light"] .logo-light-theme { display: block; }

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

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-2);
  padding: 0.45rem 0.85rem;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav a svg { width: 15px; height: 15px; color: var(--brand); flex: none; }
.nav a:hover { color: var(--brand); }
.nav a.is-current { color: var(--brand); }
.nav a.is-current::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2px;
  width: 20px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #FFC24D, var(--brand));
}
.nav .nav__mobile-only { display: none; }

.header__actions { display: flex; align-items: center; gap: 0.7rem; position: relative; z-index: 2; }

/* Alternador de tema */
.theme-toggle {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  transition: color 0.25s, border-color 0.25s, transform 0.4s var(--ease);
}
.theme-toggle:hover { color: var(--brand); border-color: var(--brand); transform: rotate(25deg); }
.theme-toggle svg { width: 19px; height: 19px; }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
:root[data-theme="light"] .theme-toggle .icon-sun { display: block; }
:root[data-theme="light"] .theme-toggle .icon-moon { display: none; }

/* Ao abrir o menu mobile, o blur do header criaria um "containing block"
   que prende o overlay fixo dentro do header — desliga o blur nesse estado. */
body.nav-open .header {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background: var(--bg);
  /* sem transição: o blur animando por 0,3s mantinha o header como
     "containing block" e prendia o menu fixo dentro da faixa do topo */
  transition: none;
}

/* Barra fixa de acesso rápido às soluções */
.sol-bar {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 57;
  height: var(--solbar-h);
  display: flex;
  align-items: center;
  background: var(--header-bg);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.sol-bar__inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.sol-bar__inner::-webkit-scrollbar { display: none; }
.sol-bar__label {
  flex: none;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-right: 0.3rem;
}
.sol-bar a {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-2);
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s, transform 0.2s var(--ease);
}
.sol-bar a svg { width: 13px; height: 13px; color: var(--brand); flex: none; }
.sol-bar a:hover { color: var(--brand); border-color: var(--brand); transform: translateY(-1px); }
.sol-bar a.is-current {
  color: #180F02;
  background: linear-gradient(120deg, #FFC24D, var(--brand));
  border-color: transparent;
}
.sol-bar a.is-current svg { color: #180F02; }

/* Hamburger */
.nav-burger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-burger span {
  width: 18px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
body.nav-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
body.nav-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + var(--solbar-h) + 2.5rem) 0 4rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 45% at 78% 22%, var(--brand-soft), transparent 65%),
    radial-gradient(ellipse 40% 38% at 12% 82%, var(--accent-soft), transparent 70%),
    var(--bg);
}

/* Hero da home: sem folga vertical extra — conteúdo junto ao menu, como nos sub-sites */
.hero--tight { min-height: auto; }

/* Texto do hero alinhado ao topo do grid (quando a coluna da arte é mais alta) */
.hero__inner.hero__inner--top { align-items: start; }

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(var(--hero-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--hero-grid-line) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 30%, transparent 75%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  position: relative;
}

.hero__title {
  font-size: clamp(2.3rem, 5.2vw, 3.9rem);
  font-weight: 800;
}

.hero__title .grad {
  background: linear-gradient(100deg, var(--brand) 10%, #FFC24D 45%, var(--brand) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__sub {
  color: var(--text-2);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  max-width: 54ch;
  margin-bottom: 2rem;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.4rem; }

.hero__chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }

/* Faixa de marca oficial (sub-sites de parceiros) */
.brand-strip { display: flex; align-items: center; gap: 1rem; }
.brand-strip__label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
}
.brand-chip {
  display: inline-flex;
  align-items: center;
  background: var(--chip-logo-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
}
.brand-chip img { height: 38px; width: auto; }

/* Selo de credencial em destaque (parceria/certificação) */
.credential-card {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  background: var(--card);
  border: 1px solid rgba(245, 167, 27, 0.4);
  border-radius: var(--radius);
  padding: 0.9rem 1.5rem 0.9rem 1.1rem;
  box-shadow: var(--shadow-card);
}
.credential-card__badge {
  height: 92px;
  width: auto;
  flex: none;
}
.credential-card__text { display: flex; flex-direction: column; gap: 0.15rem; }
.credential-card__text .eyebrow { margin-bottom: 0.3rem; }
.credential-card__text strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text);
}
.credential-card__text span {
  font-size: 0.88rem;
  color: var(--text-2);
}
.credential-card__badge--wide { height: 46px; }

/* Versão compacta: só o logo, um pouco menor que o selo 3CX */
.credential-card--compact {
  padding: 1.6rem 1.9rem;
}
.credential-card--compact img { height: 44px; width: auto; }
@media (max-width: 480px) {
  .credential-card--compact { padding: 1.2rem 1.4rem; }
  .credential-card--compact img { height: 34px; }
}

/* Coluna da arte do hero: credencial acima da ilustração */
.hero__art--stacked {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
}
.hero__art--stacked svg { width: 100%; height: auto; }
@media (max-width: 1024px) {
  .hero__art--stacked { align-items: center; }
}

/* Bloco de texto sem mídia ao lado (feat-split de 1 coluna) */
.feat-split--solo {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin-inline: auto;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-2);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.chip svg { width: 15px; height: 15px; color: var(--brand); flex: none; }

.hero__art { position: relative; }
.hero__art svg { width: 100%; height: auto; }

/* animações do SVG do hero */
.pulse-ring { animation: pulseRing 3.2s ease-out infinite; transform-origin: center; transform-box: fill-box; }
.pulse-ring--d1 { animation-delay: 1.05s; }
.pulse-ring--d2 { animation-delay: 2.1s; }
@keyframes pulseRing {
  0%   { transform: scale(0.55); opacity: 0.85; }
  100% { transform: scale(1.6); opacity: 0; }
}

.float-slow { animation: floatY 7s ease-in-out infinite; }
.float-slow--alt { animation: floatY 8.5s ease-in-out 1.2s infinite; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-13px); }
}

.dash-flow { stroke-dasharray: 6 10; animation: dashFlow 2.6s linear infinite; }
@keyframes dashFlow { to { stroke-dashoffset: -64; } }

.node-blink { animation: nodeBlink 2.4s ease-in-out infinite; }
.node-blink--d1 { animation-delay: 0.7s; }
.node-blink--d2 { animation-delay: 1.5s; }
@keyframes nodeBlink { 0%, 100% { opacity: 0.55; } 50% { opacity: 1; } }

.hero__scroll {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-3);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero__scroll::after {
  content: "";
  width: 1px; height: 34px;
  background: linear-gradient(var(--brand), transparent);
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; } }

/* ---------- 7. Cards de Soluções ---------- */
.grid-solutions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.grid-solutions--four { grid-template-columns: repeat(2, 1fr); }

.sol-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.sol-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(220px 140px at 85% -10%, var(--brand-soft), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.sol-card:hover { transform: translateY(-6px); border-color: rgba(245, 167, 27, 0.45); box-shadow: var(--shadow-pop); }
.sol-card:hover::before { opacity: 1; }

.sol-card__icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--brand-soft);
  border: 1px solid rgba(245, 167, 27, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
}
.sol-card__icon svg { width: 26px; height: 26px; }

.sol-card h3 { font-size: 1.22rem; margin: 0; }
.sol-card__tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}
.sol-card p { color: var(--text-2); font-size: 0.95rem; margin: 0; flex: 1; }

/* Versão destaque: card maior, para equilibrar com uma coluna de texto ao lado */
.sol-card--destaque { padding: 2.6rem; gap: 1.1rem; }
.sol-card--destaque .sol-card__icon { width: 64px; height: 64px; border-radius: 16px; }
.sol-card--destaque .sol-card__icon svg { width: 30px; height: 30px; }
.sol-card--destaque h3 { font-size: 1.4rem; }
.sol-card--destaque p { font-size: 1rem; line-height: 1.7; flex: none; }
.sol-card--destaque .check-list { margin-top: 0.2rem; }

.sol-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brand);
}
.sol-card__link svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.sol-card:hover .sol-card__link svg { transform: translateX(5px); }

/* ---------- 8. Serviços ---------- */
.grid-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.srv-item {
  display: flex;
  gap: 1.1rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.srv-item:hover { border-color: var(--border-strong); transform: translateY(-4px); }

.srv-item__icon {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  background: var(--brand-soft);
}
.srv-item__icon svg { width: 22px; height: 22px; }

.srv-item h3 { font-size: 1.02rem; margin-bottom: 0.35rem; }
.srv-item p { color: var(--text-2); font-size: 0.9rem; margin: 0; }

/* Par de quadros de destaque (ex.: Campanhas / Canais de entrada no TChat) */
.duo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
.duo-card {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  transition: border-color 0.25s, transform 0.25s;
}
.duo-card:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.duo-card__head {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  margin-bottom: 1rem;
}
.duo-card__head .srv-item__icon { margin: 0; }
.duo-card__head h3 { font-size: 1.18rem; margin: 0; }
.duo-card > p { color: var(--text-2); font-size: 0.95rem; margin-bottom: 1rem; }
.duo-card .check-list { margin-top: 1rem; }
.duo-card .check-list li { font-size: 0.9rem; }

/* Fileira de pills ilustrativas dentro dos quadros */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}
.pill {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-2);
  background: var(--card-solid);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 0.32rem 0.72rem;
  white-space: nowrap;
}
.pill--ok { color: var(--brand); border-color: rgba(245, 167, 27, 0.45); }
.pill-sep { color: var(--text-3); font-size: 0.8rem; }

@media (max-width: 760px) {
  .duo-grid { grid-template-columns: 1fr; }
}

/* ---------- 9. Faixa de Números ---------- */
.stats {
  border-block: 1px solid var(--border);
  background:
    radial-gradient(ellipse 50% 90% at 50% 0%, var(--brand-soft), transparent 70%),
    var(--bg-2);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat__value {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
}
.stat__value .sign { color: var(--brand); }
.stat__label {
  color: var(--text-2);
  font-size: 0.92rem;
  margin-top: 0.3rem;
}

/* ---------- 10. Sobre / Pilares ---------- */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.about__text .section-head { margin-bottom: 1.6rem; }

.about__list { display: flex; flex-direction: column; gap: 0.8rem; margin: 0 0 1.8rem; padding: 0; list-style: none; }
.about__list li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--text-2); }
.about__list svg { width: 20px; height: 20px; color: var(--brand); flex: none; margin-top: 0.15rem; }

.pillars { display: flex; flex-direction: column; gap: 1.1rem; }

.pillar {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--brand);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.pillar:hover { transform: translateX(6px); box-shadow: var(--shadow-pop); }
.pillar h3 {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.4rem;
}
.pillar p { margin: 0; color: var(--text-2); font-size: 0.95rem; }

/* ---------- 11. Marquee de Logos ---------- */
.logos-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  padding-block: 0.6rem;
}

.logos-track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: marquee var(--marquee-speed, 60s) linear infinite;
}
.logos-track:hover { animation-play-state: paused; }
.logos-marquee--reverse .logos-track { animation-direction: reverse; }

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

.logo-chip {
  flex: none;
  width: 150px;
  height: 84px;
  border-radius: var(--radius-sm);
  background: var(--chip-logo-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
}
.logo-chip img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: saturate(0.95);
}

.logos-stack { display: flex; flex-direction: column; gap: 1.2rem; }

/* Grade estática de parceiros (sem animação) */
.logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.logos-grid .logo-chip { width: 156px; height: 88px; }

/* Logo wall de clientes: grade viva com troca animada */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.1rem;
}
.logo-wall .logo-chip {
  width: 100%;
  height: 122px;
  padding: 0.6rem;
  position: relative;
  overflow: hidden;
}
.logo-wall .logo-chip img {
  max-height: 88%;
  max-width: 88%;
  transition: opacity 0.5s ease, transform 0.5s var(--ease);
}
.logo-wall .logo-chip.is-swapping img {
  opacity: 0;
  transform: scale(0.8) translateY(6px);
}
.logo-wall .logo-chip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(245, 167, 27, 0.12) 50%, transparent 70%);
  transform: translateX(-100%);
  pointer-events: none;
}
.logo-wall .logo-chip.is-swapping::after {
  animation: wallShine 0.9s ease;
}
@keyframes wallShine {
  to { transform: translateX(100%); }
}

/* Barras animadas (artes SVG de dashboards) */
.bar-grow { animation: barGrow 2.4s ease-in-out infinite alternate; transform-origin: bottom; transform-box: fill-box; }
.bar-grow--d1 { animation-delay: 0.35s; }
.bar-grow--d2 { animation-delay: 0.7s; }
.bar-grow--d3 { animation-delay: 1.05s; }
@keyframes barGrow {
  from { transform: scaleY(0.45); }
  to { transform: scaleY(1); }
}

/* Bolhas de chat (arte SVG do TChat) */
.bubble-pop { animation: bubblePop 5s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
.bubble-pop--d1 { animation-delay: 1.2s; }
.bubble-pop--d2 { animation-delay: 2.4s; }
@keyframes bubblePop {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(-6px); opacity: 0.92; }
}

/* ---------- 12. Contato ---------- */
.contact__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.1rem; }

.info-line {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
}
.info-line svg { width: 21px; height: 21px; color: var(--brand); flex: none; margin-top: 0.15rem; }
.info-line--cta {
  border-color: rgba(245, 167, 27, 0.45);
  background: linear-gradient(135deg, var(--brand-soft), transparent 60%), var(--card);
}
.info-line strong { font-family: var(--font-display); font-size: 0.95rem; display: block; margin-bottom: 0.15rem; }
.info-line span, .info-line a { color: var(--text-2); font-size: 0.92rem; display: block; }
.info-line a:hover { color: var(--brand); }

.social-row { display: flex; gap: 0.7rem; margin-top: 0.4rem; }
.social-row a {
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  transition: color 0.25s, border-color 0.25s, transform 0.25s var(--ease);
}
.social-row a:hover { color: #1A1206; background: var(--brand); border-color: var(--brand); transform: translateY(-3px); }
.social-row svg { width: 19px; height: 19px; }

/* Card do formulário */
.form-card {
  background: var(--card-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pop);
  overflow: hidden;
}

.form-tabs { display: flex; border-bottom: 1px solid var(--border); }
.form-tabs button {
  flex: 1;
  padding: 1.1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-3);
  border-bottom: 2px solid transparent;
  transition: color 0.25s, border-color 0.25s, background-color 0.25s;
}
.form-tabs button.is-active { color: var(--brand); border-bottom-color: var(--brand); background: var(--brand-soft); }

.form-panel { padding: clamp(1.4rem, 3vw, 2.2rem); display: none; }
.form-panel.is-active { display: block; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid .full { grid-column: 1 / -1; }

.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-2);
}

.field input, .field select, .field textarea {
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 0.78rem 0.95rem;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-3); }

/* Upload de arquivo */
.file-drop {
  border: 1.5px dashed var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 1.3rem;
  text-align: center;
  color: var(--text-2);
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.25s, background-color 0.25s;
}
.file-drop:hover, .file-drop.is-drag { border-color: var(--brand); background: var(--brand-soft); }
.file-drop svg { width: 26px; height: 26px; color: var(--brand); margin: 0 auto 0.4rem; }
.file-drop input { display: none; }
.file-drop .file-name { font-weight: 600; color: var(--brand); }

.form-feedback {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
}
.form-feedback.is-ok { display: block; background: rgba(37, 211, 102, 0.12); color: #3ddc7f; border: 1px solid rgba(37, 211, 102, 0.35); }
.form-feedback.is-err { display: block; background: rgba(239, 68, 68, 0.1); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.35); }
:root[data-theme="light"] .form-feedback.is-ok { color: #0e8f43; }
:root[data-theme="light"] .form-feedback.is-err { color: #c22525; }

/* ---------- 12b. Página de conteúdo (privacidade etc.) ---------- */
.content-page { padding: calc(var(--header-h) + var(--solbar-h) + 3rem) 0 5rem; }
.content-page .page-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.content-page .page-head h1 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }

.prose { max-width: 780px; margin-inline: auto; color: var(--text-2); }
.prose h2 {
  font-size: 1.25rem;
  color: var(--text);
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--border);
}
.prose p { margin-bottom: 1.1em; }
.prose a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.prose ul { padding-left: 1.3rem; display: flex; flex-direction: column; gap: 0.5rem; margin: 0 0 1.1em; }
.prose li::marker { color: var(--brand); }

/* ---------- 13. Footer ---------- */
.footer {
  position: relative;
  background:
    radial-gradient(ellipse 42% 60% at 6% 0%, var(--brand-soft), transparent 70%),
    radial-gradient(ellipse 36% 52% at 96% 100%, var(--accent-soft), transparent 72%),
    var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 4.5rem 0 0;
  overflow: hidden;
}

/* fio de marca no topo do rodapé */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--brand) 20%, #FFC24D 50%, var(--brand) 80%, transparent 100%);
  opacity: 0.9;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.85fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3.2rem;
}

.footer__brand img { height: 58px; width: auto; margin-bottom: 1.1rem; }
.footer__brand p {
  color: var(--text-2);
  font-size: 0.92rem;
  max-width: 34ch;
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.footer h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.2rem;
}
.footer h4::after {
  content: "";
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brand), #FFC24D);
  margin-top: 0.55rem;
}

.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.footer ul a, .footer ul span { color: var(--text-2); font-size: 0.92rem; line-height: 1.55; transition: color 0.2s, padding-left 0.2s; }
.footer ul a:hover { color: var(--brand); padding-left: 5px; }
.wa-inline {
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: -2px;
  margin-left: 3px;
  color: var(--wa);
}

/* Coluna de contato com ícones */
.footer__contact li { display: flex; align-items: flex-start; gap: 0.7rem; }
.footer__contact li > svg {
  width: 17px;
  height: 17px;
  flex: none;
  margin-top: 3px;
  color: var(--brand);
}
.footer__contact li > svg.wa-mini { color: var(--wa); }
.footer__contact a:hover { padding-left: 0; }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 1.4rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
  color: var(--text-3);
  font-size: 0.85rem;
}
.footer__bottom a { color: var(--text-2); }
.footer__bottom a:hover { color: var(--brand); }

/* ---------- 14. Flutuantes ---------- */
.wa-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 55;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--wa);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--wa);
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ---------- 15. Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
[data-reveal].revealed { opacity: 1; transform: none; }

/* ---------- 16. Menu mobile / Responsivo ---------- */
@media (max-width: 1024px) {
  .grid-solutions, .grid-services { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { max-width: 520px; margin-inline: auto; }
  .about__inner { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    flex-direction: column;
    justify-content: center;
    gap: 0.6rem;
    background: var(--bg);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }
  .nav a { font-size: 1.35rem; padding: 0.65rem 1.6rem; }
  .nav a svg { width: 20px; height: 20px; }
  .nav a.is-current::after { bottom: 6px; width: 28px; }
  .nav .nav__mobile-only { display: block; color: var(--brand); }
  body.nav-open .nav { opacity: 1; pointer-events: auto; z-index: 1; }
  body.nav-open { overflow: hidden; }
  .nav-burger { display: inline-flex; }
}
@media (max-width: 640px) {
  .header__cta { display: none; }
}

/* No celular, a home não mostra a ilustração animada do hero */
@media (max-width: 768px) {
  .hero--tight .hero__art { display: none; }
}

@media (max-width: 1024px) {
  .logo-wall { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 640px) {
  .grid-solutions, .grid-services { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .hero { min-height: auto; }
  .hero__scroll { display: none; }
  .logo-chip { width: 124px; height: 72px; }
  .logo-wall { grid-template-columns: repeat(2, 1fr); }
  .logo-wall .logo-chip { height: 92px; }
}

/* ---------- 18. Páginas de produto (sub-sites) ---------- */
.hero--product { min-height: auto; padding-bottom: clamp(3rem, 6vw, 5rem); }

.p-mock { filter: drop-shadow(0 24px 48px rgba(2, 6, 16, 0.4)); }
:root[data-theme="light"] .p-mock { filter: drop-shadow(0 24px 48px rgba(18, 26, 44, 0.16)); }

.shot-frame {
  background: var(--card-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pop);
  overflow: hidden;
}
.shot-frame__bar {
  display: flex;
  gap: 6px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
}
.shot-frame__bar span { width: 10px; height: 10px; border-radius: 50%; background: var(--border-strong); }
.shot-frame__bar span:first-child { background: var(--brand); }
.shot-frame img { width: 100%; display: block; }

.feat-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.feat-split + .feat-split { margin-top: clamp(3.5rem, 7vw, 6rem); }
.feat-split--rev .feat-split__text { order: 2; }
.feat-split h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.feat-split p { color: var(--text-2); }
.feat-split__media svg { width: 100%; height: auto; }

.check-list { list-style: none; margin: 1.2rem 0 0; padding: 0; display: grid; gap: 0.6rem; }
.check-list li { display: flex; gap: 0.6rem; align-items: flex-start; color: var(--text-2); font-size: 0.95rem; }
.check-list svg { width: 18px; height: 18px; color: var(--brand); flex: none; margin-top: 0.18rem; }
.check-list--cols { grid-template-columns: 1fr 1fr; column-gap: 1.5rem; }

.cta-band {
  background: linear-gradient(120deg, #FFC24D, #F5A71B 55%, #E29200);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  color: #180F02;
  box-shadow: 0 20px 60px var(--brand-glow);
}
.cta-band h2 { color: #180F02; font-size: clamp(1.6rem, 3.5vw, 2.3rem); }
.cta-band p { color: rgba(24, 15, 2, 0.78); max-width: 56ch; margin: 0 auto 1.6rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }
.btn--dark { background: #16110A; color: #fff; box-shadow: 0 8px 24px rgba(22, 17, 10, 0.35); }
.btn--dark:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(22, 17, 10, 0.45); }
.cta-band .btn--ghost { border-color: rgba(24, 15, 2, 0.4); color: #180F02; }
.cta-band .btn--ghost:hover { border-color: #180F02; color: #180F02; }

/* Planos e preços */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.1rem 1.8rem 1.8rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-pop); }
.price-card--pop { border-color: rgba(245, 167, 27, 0.55); }
.price-card__tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(120deg, #FFC24D, var(--brand));
  color: #180F02;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card h3 { margin: 0; font-size: 1.05rem; letter-spacing: 0.08em; text-transform: uppercase; }
.price-card__value { font-family: var(--font-display); font-size: 2.3rem; font-weight: 800; line-height: 1; }
.price-card__value small { font-size: 0.95rem; font-weight: 500; color: var(--text-3); }
.price-card .check-list { margin-top: 0.2rem; flex: 1; }
.price-card .btn { margin-top: 1rem; }
.price-note { color: var(--text-3); font-size: 0.85rem; margin-top: 1.4rem; text-align: center; }

/* Tabela comparativa */
.compare-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--card); }
.compare { width: 100%; border-collapse: collapse; min-width: 620px; }
.compare th, .compare td { padding: 0.85rem 1.1rem; border-bottom: 1px solid var(--border); font-size: 0.92rem; text-align: left; }
.compare tr:last-child td { border-bottom: 0; }
.compare thead th { font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text); background: var(--bg-2); }
.compare th:nth-child(n+2), .compare td:nth-child(n+2) { text-align: center; width: 190px; }
.compare td:first-child { color: var(--text-2); }
.mark-yes, .mark-no {
  display: inline-flex;
  width: 26px; height: 26px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
.mark-yes { background: rgba(37, 211, 102, 0.14); color: #2fbf68; }
.mark-no { background: rgba(239, 68, 68, 0.12); color: #e05252; }
.mark-yes svg, .mark-no svg { width: 14px; height: 14px; }

/* Galeria de telas */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.gallery .shot-frame { transition: transform 0.3s var(--ease); }
.gallery .shot-frame:hover { transform: translateY(-5px); }

@media (max-width: 1024px) {
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .feat-split { grid-template-columns: 1fr; }
  .feat-split--rev .feat-split__text { order: 0; }
}
@media (max-width: 640px) {
  .check-list--cols { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
}

/* ---------- 19. Transição entre páginas ---------- */
/* A navegação nunca é atrasada nem esconde a tela. O crossfade nativo entre
   documentos (@view-transition) foi REMOVIDO de vez: o overlay de "retratos"
   que o navegador põe por cima durante a animação engolia o clique de quem
   navegava rápido entre dois menus, e pointer-events:none nos pseudo-elementos
   não resolveu de forma confiável. A suavidade fica por conta apenas da
   entrada do <main> abaixo — que anima um elemento comum da página e nunca
   intercepta cliques. Transform só no <main> (nada position:fixed vive dentro
   dele — ver bug do menu mobile). */
main {
  animation: pageRise 0.55s var(--ease) both;
}
@keyframes pageRise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

/* ---------- 20. Acessibilidade ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}

:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }
