/* ============================================================
   Multi Rastreamento & Serviços — style.css
   v4.0 "Central Operacional"

   Design direction: the page should read like the monitoring room
   it describes — instrumented, precise, dense where it matters and
   quiet everywhere else. Deep navy ground, a real elevation ladder,
   hairline rules, tabular numerals, one authored motion moment.

   Brand locks: logo blue #2563EB + orange #F47826, Sora + Inter.
   ============================================================ */

/* ------------------------------------------------------------
   1. Tokens
   ------------------------------------------------------------ */
:root {
  /* --- ground & elevation ladder --- */
  --ink-950: #03090F;   /* deepest — footer, wells */
  --ink-900: #050E1A;   /* page ground */
  --ink-850: #071322;   /* legacy --bg value, alternating bands */
  --ink-800: #0A1829;   /* recessed panels */
  --ink-750: #0D2038;   /* card surface */
  --ink-700: #123054;   /* raised / hover surface */

  --bg: var(--ink-900);
  --dark-bg: var(--ink-900);
  --surface: var(--ink-750);
  --dark-surface: var(--ink-750);
  --surface-alt: var(--ink-850);
  --surface-raised: var(--ink-700);
  --surface-input: #071528;
  --surface-well: var(--ink-800);

  /* --- hairlines --- */
  --line: rgba(146, 180, 224, 0.13);
  --line-strong: rgba(146, 180, 224, 0.24);
  --line-faint: rgba(146, 180, 224, 0.07);
  --dark-line: var(--line);

  /* --- text (contrast-verified on --ink-900) --- */
  --text: #EDF3FA;          /* 16.8:1 */
  --text-muted: #A8BCD4;    /*  8.9:1 */
  --text-light: #8AA1BD;    /*  7.3:1 page · 5.0:1 on raised */
  --dark-text: var(--text);
  --dark-muted: var(--text-muted);

  /* --- brand --- */
  --primary: #2563EB;
  --primary-strong: #1D4ED8;
  --primary-dark: #1D4ED8;
  --primary-light: #7CB0FB;
  --primary-soft: rgba(37, 99, 235, 0.18);
  --primary-gradient: linear-gradient(140deg, #2563EB 0%, #1B45C4 100%);

  --accent: #F47826;
  --accent-dark: #D45B10;
  --accent-light: #FF9A55;
  --accent-soft: rgba(244, 120, 38, 0.15);
  --accent-gradient: linear-gradient(140deg, #FF9A55 0%, #F47826 100%);

  --wa: #25D366;
  --wa-dark: #128C7E;

  --ok: #34D399;
  --ok-soft: rgba(52, 211, 153, 0.14);
  --danger: #F87171;
  --danger-soft: rgba(248, 113, 113, 0.14);

  /* --- type --- */
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Sora", var(--font-body);

  --step-display: clamp(2.15rem, 1.5rem + 2.5vw, 3.25rem);
  --step-h2:      clamp(1.8rem, 1.38rem + 1.55vw, 2.55rem);
  --step-h3:      clamp(1.12rem, 1.02rem + 0.35vw, 1.3rem);
  --step-lead:    clamp(1.06rem, 1rem + 0.3vw, 1.2rem);
  --step-body:    1.0625rem;
  --step-sm:      0.9375rem;
  --step-xs:      0.8125rem;

  /* --- geometry --- */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-pill: 9999px;

  --container: 1180px;
  --container-narrow: 760px;
  --gutter: clamp(20px, 4.5vw, 40px);
  --space-section: clamp(68px, 8.5vw, 116px);

  /* --- depth: every shadow has offset + blur --- */
  --shadow-sm:    0 1px 2px rgba(2, 8, 18, .45), 0 2px 6px rgba(2, 8, 18, .32);
  --shadow-card:  0 2px 6px rgba(2, 8, 18, .40), 0 14px 32px -10px rgba(2, 8, 18, .62);
  --shadow-hover: 0 4px 10px rgba(2, 8, 18, .45), 0 26px 56px -14px rgba(2, 8, 18, .72);
  --shadow-float: 0 8px 20px rgba(2, 8, 18, .50), 0 34px 70px -16px rgba(2, 8, 18, .70);

  /* --- motion --- */
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
  --dur-fast: .16s;
  --dur: .3s;
  --dur-slow: .7s;
}

/* ------------------------------------------------------------
   2. Reset & base
   ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  color-scheme: dark;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--step-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  overflow-x: hidden;
}

img, svg, picture, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
strong, b { font-weight: 650; color: var(--text); }

/* skip link: first focusable stop, visible only when focused */
.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 200;
  padding: 11px 20px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-pill);
  background: var(--ink-800);
  color: var(--text);
  font-size: var(--step-sm);
  font-weight: 600;
  box-shadow: var(--shadow-float);
  transform: translateY(-160%);
  transition: transform var(--dur) var(--ease-out);
}
.skip-link:focus-visible { transform: translateY(0); }
#conteudo:focus { outline: none; }

/* --- browser surfaces: these ship with the design, not the browser --- */
::selection { background: rgba(244, 120, 38, .30); color: #FFF; }
::-moz-selection { background: rgba(244, 120, 38, .30); color: #FFF; }

:root { scrollbar-color: var(--ink-700) var(--ink-950); scrollbar-width: thin; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--ink-950); }
::-webkit-scrollbar-thumb {
  background: var(--ink-700);
  border-radius: var(--radius-pill);
  border: 3px solid var(--ink-950);
}
::-webkit-scrollbar-thumb:hover { background: #1B4272; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }

input, textarea, select { caret-color: var(--accent); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  /* corta animação decorativa e deslocamento, mas mantém a resposta de
     cor/opacidade — matar toda transição apaga o feedback de estado */
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-property: color, background-color, border-color, box-shadow, opacity !important;
    transition-duration: .12s !important;
  }
  .btn:hover, .card:hover, .link-card:hover,
  .partner-card:hover, .audience-card:hover, .wa-float:hover { transform: none !important; }
}

/* ------------------------------------------------------------
   3. Typography
   ------------------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
  text-wrap: balance;
  color: var(--text);
}
h1 { font-size: var(--step-display); letter-spacing: -0.042em; font-weight: 750; }
h2 { font-size: var(--step-h2); }
h3 { font-size: var(--step-h3); letter-spacing: -0.02em; line-height: 1.3; }
h4 { font-size: var(--step-sm); letter-spacing: -0.01em; }

p { text-wrap: pretty; }
p + p { margin-top: 1em; }

.lead {
  font-size: var(--step-lead);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 62ch;
}

.accent { color: var(--accent-light); }

/* numerals in data always align */
.stat-value, .plan-value, .step-index, .tnum { font-variant-numeric: tabular-nums; }

/* ------------------------------------------------------------
   4. Layout primitives
   ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.narrow-content { max-width: var(--container-narrow); }

.section { padding-block: var(--space-section); position: relative; }
.section-alt { background: var(--surface-alt); }

/* hairline seams instead of hard color jumps */
.section-alt::before,
.section-alt::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  height: 1px;
  background: var(--line-faint);
}
.section-alt::before { top: 0; }
.section-alt::after { bottom: 0; }

.section-head {
  max-width: 58ch;
  margin-bottom: clamp(32px, 4vw, 52px);
}
.section-head h2 { margin-bottom: 18px; }
.section-head .section-sub,
.section-sub {
  font-size: var(--step-lead);
  color: var(--text-muted);
  max-width: 58ch;
}
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .section-sub { margin-inline: auto; }

.section-more {
  margin-top: 32px;
  font-size: var(--step-sm);
  color: var(--text-light);
}
.section-more a {
  color: var(--primary-light);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(124, 176, 251, .4);
  transition: text-decoration-color var(--dur-fast) var(--ease-out);
}
.section-more a:hover { text-decoration-color: var(--primary-light); }

/* .kicker survives for internal pages, but as a quiet structural tag —
   never as a decorative eyebrow above a heading. */
.kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--step-xs);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
}
.section-head .kicker { display: none; }

/* variante de rótulo destacada — substitui estilos de cor inline no HTML */
.kicker-accent {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 12px;
  border: 1px solid rgba(244, 120, 38, .4);
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  color: var(--accent-light);
}
.section-head .kicker-accent,
.cta-banner .kicker,
.final-cta .kicker { display: none; }

/* ------------------------------------------------------------
   5. Buttons
   ------------------------------------------------------------ */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  --btn-border: var(--line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid var(--btn-border);
  border-radius: var(--radius-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-body);
  font-size: var(--step-sm);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform var(--dur-fast) var(--ease-out),
    box-shadow var(--dur) var(--ease-out),
    background-color var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    filter var(--dur-fast) var(--ease-out);
}
.btn { text-decoration: none; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); transition-duration: .05s; }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-primary {
  --btn-bg: var(--primary-gradient);
  --btn-fg: #FFF;
  --btn-border: transparent;
  box-shadow: 0 1px 2px rgba(2, 8, 18, .4), 0 8px 20px -6px rgba(29, 78, 216, .55);
}
.btn-primary:hover {
  --btn-bg: linear-gradient(140deg, #1D4ED8 0%, #16389E 100%);
  box-shadow: 0 2px 4px rgba(2, 8, 18, .4), 0 14px 30px -8px rgba(29, 78, 216, .7);
}

.btn-accent {
  --btn-bg: var(--accent-gradient);
  --btn-fg: #1A0B02;
  --btn-border: transparent;
  box-shadow: 0 1px 2px rgba(2, 8, 18, .4), 0 8px 20px -6px rgba(212, 91, 16, .5);
}
.btn-accent:hover {
  filter: brightness(1.06);
  box-shadow: 0 2px 4px rgba(2, 8, 18, .4), 0 14px 30px -8px rgba(212, 91, 16, .62);
}

.wa-cta {
  --btn-bg: #1FBF5C;
  --btn-fg: #04220F;
  --btn-border: transparent;
  box-shadow: 0 1px 2px rgba(2, 8, 18, .4), 0 8px 20px -6px rgba(18, 140, 126, .5);
}
.wa-cta:hover {
  --btn-bg: #25D366;
  box-shadow: 0 2px 4px rgba(2, 8, 18, .4), 0 14px 30px -8px rgba(18, 140, 126, .62);
}

.btn-secondary,
.btn-ghost {
  --btn-bg: rgba(146, 180, 224, .06);
  --btn-fg: var(--text);
  --btn-border: var(--line-strong);
}
.btn-secondary:hover,
.btn-ghost:hover {
  --btn-bg: rgba(146, 180, 224, .12);
  --btn-border: rgba(146, 180, 224, .38);
}

.btn-ghost-light {
  --btn-bg: rgba(255, 255, 255, .10);
  --btn-fg: #FFF;
  --btn-border: rgba(255, 255, 255, .34);
  backdrop-filter: blur(8px);
}
.btn-ghost-light:hover {
  --btn-bg: rgba(255, 255, 255, .18);
  --btn-border: rgba(255, 255, 255, .5);
}

.btn-emergency {
  --btn-bg: var(--danger-soft);
  --btn-fg: #FFC9C9;
  --btn-border: rgba(248, 113, 113, .45);
}
.btn-emergency:hover { --btn-bg: rgba(248, 113, 113, .22); --btn-border: var(--danger); }

.btn-sm { padding: 10px 18px; font-size: var(--step-xs); }
.btn-lg { padding: 16px 30px; font-size: 1rem; }
.btn-block { display: flex; width: 100%; }

.btn[disabled], .btn[aria-disabled="true"] {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
  filter: none;
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: var(--step-sm);
  font-weight: 600;
  color: var(--primary-light);
}
.link-more::after {
  content: "→";
  transition: transform var(--dur) var(--ease-out);
}

/* inline external-link mark (lucide arrow-up-right) */
.ext-icon {
  display: inline-block;
  vertical-align: -2px;
  width: 15px;
  height: 15px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--step-sm);
  font-weight: 550;
  color: var(--text-light);
  transition: color var(--dur-fast) var(--ease-out);
}
.back-link:hover { color: var(--text); }

/* ------------------------------------------------------------
   6. Header
   ------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 14, 26, .72);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid transparent;
  transition:
    background-color var(--dur) var(--ease-out),
    border-color var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out);
}
.site-header.is-scrolled {
  background: rgba(5, 14, 26, .92);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 2px rgba(2, 8, 18, .5), 0 10px 30px -12px rgba(2, 8, 18, .8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

/* horizontal lockup: the real icon mark + a typeset wordmark.
   The full stacked logo asset is square and illegible at header size. */
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: none;
  transition: opacity var(--dur-fast) var(--ease-out);
}
.brand:hover { opacity: .86; }
/* The supplied logo is a stacked square lockup drawn for light grounds.
   Scale it as far as the header allows and lift it off the navy; a
   horizontal light-on-dark variant is the asset this slot really wants. */
.brand-mark,
.brand-logo {
  height: 62px;
  width: auto;
  flex: none;
  filter: brightness(1.22) saturate(1.1);
}
.brand-word {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text);
}
.brand-word em {
  font-family: var(--font-body);
  font-style: normal;
  font-size: .56rem;
  font-weight: 600;
  letter-spacing: .215em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 3px;
}

.main-nav { display: flex; align-items: center; gap: 4px; }
/* the UA [hidden] rule loses to .main-nav's display — restore it explicitly */
.main-nav[hidden] { display: none; }
.main-nav a {
  position: relative;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  font-size: var(--step-sm);
  font-weight: 550;
  color: var(--text-muted);
  transition: color var(--dur-fast) var(--ease-out), background-color var(--dur-fast) var(--ease-out);
}
.main-nav a:hover { color: var(--text); background: rgba(146, 180, 224, .08); }
.main-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(146, 180, 224, .09);
}
.main-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}

.header-actions { display: flex; align-items: center; gap: 10px; flex: none; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: rgba(146, 180, 224, .06);
  cursor: pointer;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 11px;
  width: 18px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--text);
  transition: transform var(--dur) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 20.5px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ------------------------------------------------------------
   7. Hero
   ------------------------------------------------------------ */
.hero {
  position: relative;
  padding-block: clamp(40px, 4.5vw, 64px) clamp(44px, 5vw, 72px);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto -20%;
  height: 130%;
  z-index: -2;
  background:
    radial-gradient(52% 44% at 22% 18%, rgba(37, 99, 235, .26) 0%, transparent 62%),
    radial-gradient(44% 40% at 88% 44%, rgba(244, 120, 38, .13) 0%, transparent 60%);
  pointer-events: none;
}
/* a single hairline seam closes the hero instead of a decorative grid field */
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line), transparent);
  pointer-events: none;
}

.hero-with-image {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}

.hero-text { max-width: 100%; }
.hero-title { margin-bottom: 20px; max-width: 15ch; }
.hero-sub {
  font-size: var(--step-lead);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 50ch;
  margin-bottom: 34px;
}

/* live status — accent hairline under a pulsing dot */
.status-pulse {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  padding: 8px 16px 8px 13px;
  border: 1px solid rgba(244, 120, 38, .3);
  border-radius: var(--radius-pill);
  background: rgba(244, 120, 38, .09);
  font-size: var(--step-xs);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--accent-light);
}
.pulse-dot {
  position: relative;
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: var(--accent);
}
.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  animation: pulse-ring 2.4s var(--ease-out) infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(.5); opacity: .9; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.hero-points li {
  position: relative;
  padding-left: 26px;
  font-size: var(--step-sm);
  line-height: 1.45;
  color: var(--text-muted);
}
.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .34em;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid rgba(244, 120, 38, .45);
}
.hero-points li::after {
  content: "";
  position: absolute;
  left: 4.6px;
  top: .62em;
  width: 5.5px;
  height: 3px;
  border-left: 1.6px solid var(--accent-light);
  border-bottom: 1.6px solid var(--accent-light);
  transform: rotate(-45deg);
}

/* hero photo — framed as an instrument panel, not a floating image */
.hero-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  box-shadow: var(--shadow-float);
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 9, 15, .82) 0%, rgba(3, 9, 15, .18) 42%, transparent 70%);
  pointer-events: none;
}
/* grade the warm office photo into the cool control-room world */
.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(.86) contrast(1.06) brightness(.9);
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(150deg, rgba(37, 99, 235, .22) 0%, rgba(5, 14, 26, .1) 55%, rgba(244, 120, 38, .1) 100%);
  mix-blend-mode: color;
  pointer-events: none;
}

.photo-badge-overlay {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-pill);
  background: rgba(5, 14, 26, .68);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: var(--step-xs);
  font-weight: 600;
  color: #FFF;
}
.photo-badge-overlay svg { width: 15px; height: 15px; flex: none; color: var(--accent-light); }

/* --- hero stat band: real operational facts, no invented metrics --- */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 1fr));
  gap: 1px;
  margin-top: clamp(44px, 5vw, 68px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.stat-cell {
  padding: 26px clamp(18px, 2vw, 28px);
  background: var(--surface-well);
}
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.2rem + 1.1vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 7px;
}
.stat-value em { font-style: normal; color: var(--accent-light); }
.stat-label {
  display: block;
  font-size: var(--step-sm);
  line-height: 1.4;
  color: var(--text-light);
}

/* ------------------------------------------------------------
   8. Cards
   ------------------------------------------------------------ */
.card {
  position: relative;
  padding: clamp(24px, 2.4vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  transition:
    transform var(--dur) var(--ease-out),
    border-color var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out),
    background-color var(--dur) var(--ease-out);
}
.card h3 { margin-bottom: 12px; }
.card p { font-size: var(--step-sm); color: var(--text-muted); }

.link-card { display: flex; flex-direction: column; }
.link-card p { flex: 1; margin-bottom: 20px; }
.link-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: var(--surface-raised);
  box-shadow: var(--shadow-hover);
}
.link-card:hover .link-more::after { transform: translateX(4px); }

.card-icon,
.audience-icon,
.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(59, 130, 246, .2) 0%, rgba(59, 130, 246, .05) 100%);
  color: var(--primary-light);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}
.card-icon svg,
.audience-icon svg,
.trust-icon svg { width: 22px; height: 22px; }

.cards-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(16px, 1.8vw, 24px);
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(16px, 1.8vw, 24px);
}

/* ------------------------------------------------------------
   9. Audience (PF / PJ)
   ------------------------------------------------------------ */
/* .audience-card carries no .card class in the markup — give it the surface */
.audience-card {
  padding: clamp(28px, 3vw, 40px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  transition: transform var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.audience-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-hover);
}
.audience-card p { color: var(--text-muted); }
.audience-card .kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: rgba(146, 180, 224, .07);
  color: var(--accent-light);
  letter-spacing: .09em;
}
.audience-card .audience-icon { color: var(--accent-light); background: linear-gradient(150deg, rgba(244, 120, 38, .2) 0%, rgba(244, 120, 38, .05) 100%); }
.audience-card h3 { margin-bottom: 14px; }
.audience-card p { font-size: var(--step-body); }

/* ------------------------------------------------------------
   10. Planos
   ------------------------------------------------------------ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
  gap: clamp(16px, 1.8vw, 22px);
  align-items: start;
}

.plan-card {
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 2.6vw, 34px);
}
.plan-card h3 { margin-bottom: 6px; }
.plan-desc {
  font-size: var(--step-sm);
  color: var(--text-light);
  margin-bottom: 22px;
  min-height: 2.9em;
}
.plan-price {
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.plan-value {
  font-family: var(--font-display);
  font-size: 1.62rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--text);
}
.plan-period { font-size: var(--step-sm); color: var(--text-light); }

.plan-list-title {
  margin: 22px 0 12px;
  font-family: var(--font-body);
  font-size: var(--step-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
}
.plan-list { display: grid; gap: 10px; }
.plan-list li {
  position: relative;
  padding-left: 25px;
  font-size: var(--step-sm);
  line-height: 1.45;
  color: var(--text-muted);
}
.plan-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .5em;
  width: 6px;
  height: 3.5px;
  border-left: 1.7px solid var(--ok);
  border-bottom: 1.7px solid var(--ok);
  transform: rotate(-45deg);
}

.plan-featured {
  border-color: rgba(244, 120, 38, .42);
  background:
    linear-gradient(180deg, rgba(244, 120, 38, .085) 0%, transparent 46%),
    var(--surface-raised);
  box-shadow: 0 3px 8px rgba(2, 8, 18, .45), 0 24px 56px -14px rgba(212, 91, 16, .34);
}
.plan-featured .plan-value { color: var(--accent-light); }

.plan-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--accent-gradient);
  color: #1A0B02;
  font-size: var(--step-xs);
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  box-shadow: 0 1px 2px rgba(2, 8, 18, .35), 0 6px 16px -6px rgba(212, 91, 16, .6);
}
/* keep the vertical rhythm identical across tiers that have no badge */
.plan-card:not(.plan-featured)::before {
  content: "";
  display: block;
  height: 29px;
  margin-bottom: 14px;
}

.plan-toggle {
  margin-top: 20px;
  padding: 11px 16px;
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: rgba(146, 180, 224, .06);
  color: var(--text-muted);
  font-size: var(--step-xs);
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.plan-toggle::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform var(--dur) var(--ease-out);
}
.plan-toggle:hover {
  background: rgba(146, 180, 224, .12);
  border-color: rgba(146, 180, 224, .34);
  color: var(--text);
}
.plan-toggle[aria-expanded="true"]::after { transform: translateY(1px) rotate(-135deg); }

/* ------------------------------------------------------------
   10b. TAG — the second-layer feature
   ------------------------------------------------------------ */
.tag-section { position: relative; overflow: hidden; isolation: isolate; }
.tag-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(46% 58% at 22% 46%, rgba(244, 120, 38, .13) 0%, transparent 64%);
  pointer-events: none;
}

.tag-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.tag-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.tag-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(108%, 420px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 120, 38, .17) 0%, transparent 66%);
  pointer-events: none;
}
.tag-visual img {
  position: relative;
  width: min(100%, 330px);
  height: auto;
}

.tag-content .section-head { margin-bottom: 30px; }

/* the two layers read as a stack, not as sibling cards */
.layer-list {
  counter-reset: layer;
  display: grid;
  gap: 2px;
  margin-bottom: 30px;
}
.layer-list li {
  counter-increment: layer;
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 18px;
  row-gap: 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-faint);
}
.layer-list li:last-child { border-bottom: 0; }
.layer-list li::before {
  content: "Camada " counter(layer);
  grid-row: 1 / span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 6px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  font-family: var(--font-body);
  font-size: .5rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.25;
  color: var(--text-light);
  box-shadow: var(--shadow-sm);
}
/* the hidden layer is the one that earns the accent */
.layer-list li:last-child::before {
  border-color: rgba(244, 120, 38, .45);
  background: rgba(244, 120, 38, .1);
  color: var(--accent-light);
}
.layer-list li strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--step-h3);
  font-weight: 650;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.layer-list li span {
  display: block;
  font-size: var(--step-sm);
  color: var(--text-muted);
}

.tag-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 24px;
  margin-bottom: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.tag-points li {
  position: relative;
  padding-left: 26px;
  font-size: var(--step-sm);
  line-height: 1.45;
  color: var(--text-muted);
}
.tag-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .34em;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid rgba(244, 120, 38, .45);
}
.tag-points li::after {
  content: "";
  position: absolute;
  left: 4.6px;
  top: .62em;
  width: 5.5px;
  height: 3px;
  border-left: 1.6px solid var(--accent-light);
  border-bottom: 1.6px solid var(--accent-light);
  transform: rotate(-45deg);
}

.tag-cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* destaque em bloco — substitui o border-left 4px inline */
.callout {
  margin-top: 28px;
  padding: 20px 24px;
  border: 1px solid rgba(244, 120, 38, .3);
  border-radius: var(--radius);
  background: var(--accent-soft);
  box-shadow: var(--shadow-sm);
}
.callout p { color: var(--text-muted); }
.callout strong { color: var(--accent-light); }

.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ------------------------------------------------------------
   11. Steps — a connected sequence, not a flat list
   ------------------------------------------------------------ */
.steps {
  display: grid;
  gap: 0;
  counter-reset: step;
  position: relative;
}
.steps li {
  counter-increment: step;
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  column-gap: 20px;
  row-gap: 0;
  padding: 24px 0 24px 0;
  border-bottom: 1px solid var(--line-faint);
}
.steps li:last-child { border-bottom: 0; }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  grid-row: 1 / span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  font-family: var(--font-display);
  font-size: var(--step-sm);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--accent-light);
  box-shadow: var(--shadow-sm);
}
/* connector between markers */
.steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 74px;
  bottom: -4px;
  width: 1px;
  background: linear-gradient(to bottom, var(--line-strong), transparent);
}
.steps li strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--step-h3);
  font-weight: 650;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.steps li span {
  display: block;
  font-size: var(--step-sm);
  color: var(--text-muted);
}

/* human block */
.human-block {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 40px;
  padding: 22px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-well);
  box-shadow: var(--shadow-card);
}
.human-img {
  flex: none;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
/* <picture> is only a wrapper: it must fill the frame or height:100% on the
   img resolves against an auto height and the crop goes wrong. */
.human-img picture { display: block; width: 100%; height: 100%; }
.human-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
}
.human-text { font-size: var(--step-sm); color: var(--text-muted); }
.human-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--step-h3);
  font-weight: 650;
  letter-spacing: -0.02em;
  margin-bottom: 5px;
}

/* ------------------------------------------------------------
   12. Trust band
   ------------------------------------------------------------ */
.trust-section {
  padding-block: clamp(52px, 6vw, 84px);
  background: var(--surface-alt);
  border-block: 1px solid var(--line-faint);
}
.trust-title {
  font-size: clamp(1.4rem, 1.15rem + .9vw, 1.85rem);
  margin-bottom: 34px;
}
.trust-grid,
.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: clamp(16px, 1.8vw, 24px);
}
.trust-item {
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.trust-item .trust-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: var(--accent-light);
  background: linear-gradient(150deg, rgba(244, 120, 38, .2) 0%, rgba(244, 120, 38, .05) 100%);
}
.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--step-h3);
  font-weight: 650;
  letter-spacing: -0.02em;
  margin-bottom: 7px;
}
/* must exclude .trust-icon — it is a span too, and display:block here
   was killing its inline-flex centring, pinning the glyph to the corner */
.trust-item > span:not(.trust-icon) {
  display: block;
  font-size: var(--step-sm);
  color: var(--text-muted);
}

/* ------------------------------------------------------------
   13. FAQ
   ------------------------------------------------------------ */
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 800px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease-out), background-color var(--dur) var(--ease-out);
}
.faq-item[open] { border-color: var(--line-strong); background: var(--surface-raised); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 22px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 620;
  letter-spacing: -0.018em;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex: none;
  width: 9px;
  height: 9px;
  border-right: 1.7px solid var(--text-light);
  border-bottom: 1.7px solid var(--text-light);
  transform: translateY(-2px) rotate(45deg);
  transition: transform var(--dur) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.faq-item[open] summary::after {
  transform: translateY(2px) rotate(-135deg);
  border-color: var(--accent-light);
}
.faq-item summary:hover { color: var(--text); }
.faq-item > p {
  padding: 0 22px 21px;
  font-size: var(--step-sm);
  color: var(--text-muted);
  max-width: 68ch;
}

/* ------------------------------------------------------------
   14. Final CTA
   ------------------------------------------------------------ */
.final-cta,
.cta-banner {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(40px, 5.5vw, 68px) clamp(26px, 4vw, 60px);
  border: 1px solid rgba(146, 180, 224, .2);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(70% 120% at 12% 0%, rgba(59, 130, 246, .32) 0%, transparent 62%),
    radial-gradient(60% 110% at 92% 100%, rgba(244, 120, 38, .24) 0%, transparent 58%),
    var(--ink-800);
  box-shadow: var(--shadow-float);
}
/* inner light catch along the top edge gives the panel a real material */
.final-cta::after,
.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .09);
}
.final-cta h2,
.cta-banner h2 { margin-bottom: 14px; max-width: 20ch; }
.final-cta > p,
.cta-banner > p {
  font-size: var(--step-lead);
  color: var(--text-muted);
  max-width: 52ch;
  margin-bottom: 30px;
}
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.emergency-cta {
  margin-top: 28px;
  padding: 18px 22px;
  border: 1px solid rgba(248, 113, 113, .3);
  border-radius: var(--radius);
  background: rgba(248, 113, 113, .07);
  font-size: var(--step-sm);
  color: var(--text-muted);
}

/* ------------------------------------------------------------
   15. Page hero (internal pages)
   ------------------------------------------------------------ */
.page-hero {
  position: relative;
  padding-block: clamp(52px, 6.5vw, 88px) clamp(36px, 4.5vw, 56px);
  border-bottom: 1px solid var(--line-faint);
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: -50% -20% auto -20%;
  height: 160%;
  z-index: -1;
  background: radial-gradient(48% 46% at 26% 10%, rgba(37, 99, 235, .2) 0%, transparent 62%);
  pointer-events: none;
}
.page-hero h1 { margin-bottom: 18px; max-width: 20ch; }
.page-hero p { font-size: var(--step-lead); color: var(--text-muted); max-width: 62ch; }
.page-hero .back-link { margin-bottom: 22px; }

/* linha de ação do page-hero — o botão precisa de respiro e de companhia,
   senão fica órfão colado no parágrafo */
.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.page-hero-note {
  margin-top: 16px;
  font-size: var(--step-sm);
  color: var(--text-light);
}

.content-section { padding-block: clamp(48px, 6vw, 84px); }
.content-section + .content-section { padding-top: 0; }

/* ------------------------------------------------------------
   16. Prose & content lists
   ------------------------------------------------------------ */
.prose { max-width: 70ch; }
.prose p { color: var(--text-muted); }
.prose h2 { margin: 44px 0 16px; }
.prose h3 { margin: 32px 0 12px; }
.prose ul:not(.content-list):not(.plan-list):not(.footer-nav) { margin: 18px 0; display: grid; gap: 10px; }
.prose ul:not(.content-list):not(.plan-list):not(.footer-nav) li {
  position: relative;
  padding-left: 22px;
  color: var(--text-muted);
}
.prose ul:not(.content-list):not(.plan-list):not(.footer-nav) li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: .7em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.prose a:not(.btn) {
  color: var(--primary-light);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(124, 176, 251, .42);
  transition: text-decoration-color var(--dur-fast) var(--ease-out);
}
.prose a:not(.btn):hover { text-decoration-color: var(--primary-light); }

.content-list { display: grid; gap: 2px; margin-top: 8px; }
.content-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line-faint);
}
.content-list li:last-child { border-bottom: 0; }
.content-list li strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--step-h3);
  font-weight: 650;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.content-list li span {
  display: block;
  font-size: var(--step-sm);
  color: var(--text-muted);
}

/* ------------------------------------------------------------
   17. Figures & photos
   ------------------------------------------------------------ */
.storefront-figure,
.photo-side {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-card);
}
.storefront-figure img,
.photo-side img { width: 100%; object-fit: cover; }
.storefront-figure figcaption {
  padding: 14px 20px;
  border-top: 1px solid var(--line);
  background: var(--surface-well);
  font-size: var(--step-xs);
  color: var(--text-light);
}

.team-and-storefront {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(16px, 1.8vw, 24px);
  margin-block: 32px;
}
.team-and-storefront figure {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-card);
}
.team-and-storefront img { width: 100%; object-fit: cover; }
.team-and-storefront figcaption {
  padding: 13px 18px;
  border-top: 1px solid var(--line);
  background: var(--surface-well);
  font-size: var(--step-xs);
  color: var(--text-light);
}

.tech-support-photo {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 34px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-well);
  box-shadow: var(--shadow-card);
}
.tech-img {
  flex: none;
  width: 140px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-strong);
}
.tech-img img { width: 100%; object-fit: cover; }
.tech-text { flex: 1; min-width: 220px; font-size: var(--step-sm); color: var(--text-muted); }
.tech-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--step-h3);
  font-weight: 650;
  letter-spacing: -0.02em;
  margin-bottom: 7px;
}

/* ------------------------------------------------------------
   18. Partners
   ------------------------------------------------------------ */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
  gap: clamp(16px, 1.8vw, 24px);
}
.partner-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  transition: transform var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.partner-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-hover);
}
.partner-card h3 { margin-bottom: 10px; }
.partner-card p { font-size: var(--step-sm); color: var(--text-muted); }
/* Partner marks here are white/yellow lockups built for dark grounds —
   a white plate erases them. Keep the plate in the site's own surface. */
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 88px;
  margin-bottom: 20px;
  padding: 16px 22px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--ink-800);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}
.partner-logo img { max-height: 100%; width: auto; object-fit: contain; }

/* ------------------------------------------------------------
   19. Forms
   ------------------------------------------------------------ */
.form-card {
  padding: clamp(26px, 3vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-float);
}
.field { display: grid; gap: 8px; margin-bottom: 20px; }
.field label,
.label {
  font-size: var(--step-xs);
  font-weight: 650;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-light);
}
.field .optional { font-weight: 500; letter-spacing: 0; text-transform: none; color: var(--text-light); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--surface-input);
  color: var(--text);
  font-size: var(--step-body);
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background-color var(--dur-fast) var(--ease-out);
}
.field textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.field input::placeholder,
.field textarea::placeholder { color: var(--text-light); opacity: 1; }
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: rgba(146, 180, 224, .34); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--ink-800);
  box-shadow: 0 0 0 3px rgba(244, 120, 38, .17);
}
.field input:user-invalid,
.field textarea:user-invalid { border-color: rgba(248, 113, 113, .6); }

.field select {
  appearance: none;
  padding-right: 42px;
  background-image: linear-gradient(45deg, transparent 50%, var(--text-light) 50%), linear-gradient(135deg, var(--text-light) 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% + 1px), calc(100% - 14px) calc(50% + 1px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.field-hint { font-size: var(--step-xs); color: var(--text-light); }

/* injected by main.js on validation failure */
.field-error {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-top: 2px;
  font-size: var(--step-xs);
  font-weight: 550;
  color: #FCA5A5;
}
.field-error::before {
  content: "";
  flex: none;
  width: 14px;
  height: 14px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--danger-soft);
  border: 1px solid rgba(248, 113, 113, .55);
}
[aria-invalid="true"] { border-color: rgba(248, 113, 113, .6) !important; }

.field-consent { display: block; }
/* must outrank `.field label`, which uppercases every other label */
.field .consent-label,
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: var(--step-sm);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-muted);
  cursor: pointer;
}
.consent-label input[type="checkbox"] {
  flex: none;
  width: 24px;
  height: 24px;
  margin-top: 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 4px; }
.chip {
  padding: 8px 15px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: rgba(146, 180, 224, .06);
  color: var(--text-muted);
  font-size: var(--step-xs);
  font-weight: 550;
  cursor: pointer;
  transition: background-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.chip:hover {
  background: rgba(146, 180, 224, .13);
  border-color: rgba(146, 180, 224, .36);
  color: var(--text);
}
.chip-emergency {
  border-color: rgba(248, 113, 113, .38);
  background: rgba(248, 113, 113, .09);
  color: #FCA5A5;
}
.chip-emergency:hover { background: rgba(248, 113, 113, .18); border-color: var(--danger); color: #FFD5D5; }

.form-note { margin-top: 18px; font-size: var(--step-xs); color: var(--text-light); }
.form-status {
  margin-top: 16px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-size: var(--step-sm);
  display: none;
}
.form-status[data-state] { display: block; }
.form-status[data-state="ok"],
.status-ok {
  border: 1px solid rgba(52, 211, 153, .34);
  background: var(--ok-soft);
  color: #A7F3D0;
}
.form-status[data-state="error"] {
  border: 1px solid rgba(248, 113, 113, .38);
  background: var(--danger-soft);
  color: #FCA5A5;
}

/* --- Solicitação Comercial Form Enhancements --- */
.form-header-badge {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.form-header-badge h2 {
  font-size: var(--step-2);
  margin-top: 6px;
}
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.field-label-bold {
  font-size: var(--step-sm);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.field-sublabel {
  font-size: var(--step-xs);
  color: var(--text-light);
  margin-bottom: 8px;
}
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}
.check-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--surface-input);
  color: var(--text-muted);
  font-size: var(--step-sm);
  cursor: pointer;
  user-select: none;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.check-pill:hover {
  border-color: rgba(146, 180, 224, .38);
  background: rgba(146, 180, 224, .06);
  color: var(--text);
}
.check-pill input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.check-pill-box {
  flex: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--line-strong);
  border-radius: 4px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-fast) var(--ease-out);
}
.check-pill-box::after {
  content: "";
  display: none;
  width: 5px;
  height: 9px;
  border: solid #FFF;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-bottom: 2px;
}
.check-pill input[type="checkbox"]:checked + .check-pill-box {
  background: var(--accent);
  border-color: var(--accent);
}
.check-pill input[type="checkbox"]:checked + .check-pill-box::after {
  display: block;
}
.check-pill input[type="checkbox"]:checked ~ .check-pill-text {
  color: var(--text);
  font-weight: 600;
}
.check-pill:has(input[type="checkbox"]:checked) {
  border-color: var(--accent);
  background: rgba(244, 120, 38, .08);
}
.check-pill input[type="checkbox"]:focus-visible + .check-pill-box {
  box-shadow: 0 0 0 3px rgba(244, 120, 38, .3);
}

.radio-inline-group {
  display: flex;
  gap: 14px;
}
.radio-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--surface-input);
  color: var(--text-muted);
  font-size: var(--step-sm);
  cursor: pointer;
  user-select: none;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.radio-pill:hover {
  border-color: rgba(146, 180, 224, .38);
  color: var(--text);
}
.radio-pill input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.radio-pill-box {
  flex: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--line-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-fast) var(--ease-out);
}
.radio-pill-box::after {
  content: "";
  display: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FFF;
}
.radio-pill input[type="radio"]:checked + .radio-pill-box {
  background: var(--accent);
  border-color: var(--accent);
}
.radio-pill input[type="radio"]:checked + .radio-pill-box::after {
  display: block;
}
.radio-pill:has(input[type="radio"]:checked) {
  border-color: var(--accent);
  background: rgba(244, 120, 38, .08);
}
.radio-pill input[type="radio"]:checked ~ .radio-pill-text {
  color: var(--text);
  font-weight: 600;
}

.input-with-suffix {
  position: relative;
  display: flex;
  align-items: center;
}
.input-with-suffix input {
  padding-right: 100px;
}
.input-suffix {
  position: absolute;
  right: 14px;
  font-size: var(--step-sm);
  color: var(--text-light);
  pointer-events: none;
}
.field-cond {
  margin-top: 10px;
  animation: fadeIn 0.25s ease-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Form groups: native fieldset/legend without default chrome */
.field-group {
  border: 0;
  margin: 0 0 20px;
  padding: 0;
  min-width: 0;
}
.field-group legend {
  padding: 0;
  margin-bottom: 4px;
}
.field-group[data-invalid="true"] .check-pill,
.field-group[data-invalid="true"] .radio-pill {
  border-color: rgba(248, 113, 113, .6);
}
.field-cond { margin-bottom: 0; }
/* .field sets display:grid, which would override the [hidden] attribute */
.field-cond[hidden] { display: none; }
/* Long CTA labels must wrap on narrow screens instead of overflowing */
.btn-block { white-space: normal; text-align: center; }
/* WCAG 2.5.5 / 2.5.8: touch targets >= 44px */
.check-pill,
.radio-pill {
  min-height: 44px;
}
.radio-pill input[type="radio"]:focus-visible + .radio-pill-box {
  box-shadow: 0 0 0 3px rgba(244, 120, 38, .3);
}
.form-required-note { margin: -4px 0 16px; }
.form-noscript {
  margin-bottom: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
}
@media (prefers-reduced-motion: reduce) {
  .field-cond { animation: none; }
}

/* --- Addon Accordion (Serviços Adicionais) --- */
.addon-accordion {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.addon-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.addon-item:hover {
  border-color: rgba(146, 180, 224, .32);
}
.addon-item[open] {
  border-color: rgba(244, 120, 38, .45);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .25);
  background: var(--surface-card);
}
.addon-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  cursor: pointer;
  user-select: none;
  list-style: none;
}
.addon-summary::-webkit-details-marker {
  display: none;
}
.addon-summary-main {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}
.addon-icon {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(244, 120, 38, .12);
  color: var(--accent);
}
.addon-item[open] .addon-icon {
  background: var(--accent);
  color: #FFF;
}
.addon-title-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.addon-title {
  font-size: var(--step-body);
  font-weight: 700;
  color: var(--text);
}
.addon-subtitle {
  font-size: var(--step-xs);
  color: var(--text-muted);
}
.addon-summary-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.addon-price {
  font-size: var(--step-body);
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}
.addon-price small {
  font-size: var(--step-xs);
  color: var(--text-light);
  font-weight: 500;
}
.addon-chevron {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--text-light);
  transition: transform var(--dur-normal) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.addon-item[open] .addon-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}
.addon-content {
  padding: 0 24px 24px 24px;
  border-top: 1px solid var(--line);
  margin-top: 4px;
  animation: fadeIn 0.25s ease-out;
}
.addon-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
  padding-top: 18px;
}
@media (max-width: 820px) {
  .addon-summary {
    flex-wrap: wrap;
    gap: 12px;
  }
  .addon-content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.addon-desc h3 {
  font-size: var(--step-sm);
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
}
.addon-desc p {
  font-size: var(--step-sm);
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.addon-desc p:last-child {
  margin-bottom: 0;
}
.addon-meta-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--surface-alt);
  border: 1px solid var(--line);
}
.addon-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.addon-meta-label {
  font-size: var(--step-xs);
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.addon-meta-val {
  font-size: var(--step-sm);
  color: var(--text);
  font-weight: 600;
}
.addon-meta-box .btn {
  margin-top: 6px;
}

/* ------------------------------------------------------------
   20. Contact page
   ------------------------------------------------------------ */
.contact-with-photo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(24px, 3vw, 44px);
  align-items: start;
}
/* long addresses and e-mails must not set a min-content floor wider than the screen */
.contact-list,
.contact-list a,
.prose li,
.footer-address,
.fc-item { overflow-wrap: anywhere; }
.contact-list { display: grid; gap: 2px; }
.contact-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line-faint);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list .label { display: block; margin-bottom: 6px; }
.contact-list a,
.contact-list strong {
  font-family: var(--font-display);
  font-size: var(--step-h3);
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--text);
  transition: color var(--dur-fast) var(--ease-out);
}
.contact-list a:hover { color: var(--accent-light); }

.map-panel {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-card);
}
.map-panel iframe { display: block; width: 100%; min-height: 320px; border: 0; filter: saturate(.8) contrast(1.05); }

/* facade: o embed só entra quando a pessoa pede */
.map-load {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 320px;
  padding: 32px 24px;
  border: 0;
  background:
    radial-gradient(60% 70% at 50% 40%, rgba(37, 99, 235, .16) 0%, transparent 70%),
    var(--surface-well);
  color: var(--text);
  cursor: pointer;
  transition: background-color var(--dur) var(--ease-out);
}
.map-load:hover { background-color: var(--ink-700); }
.map-load-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(244, 120, 38, .12);
  color: var(--accent-light);
}
.map-load-icon svg { width: 22px; height: 22px; }
.map-load-label {
  font-family: var(--font-display);
  font-size: var(--step-h3);
  font-weight: 650;
  letter-spacing: -0.02em;
}
.map-load-hint { font-size: var(--step-xs); color: var(--text-light); }
.map-open {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius-pill);
  background: rgba(5, 14, 26, .84);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: var(--step-xs);
  font-weight: 600;
  color: #FFF;
  transition: background-color var(--dur-fast) var(--ease-out);
}
.map-open:hover { background: rgba(5, 14, 26, .96); }
.map-note { margin-top: 12px; font-size: var(--step-xs); color: var(--text-light); }
.map-pin-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: var(--step-xs);
  color: var(--text-light);
}

.social-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 17px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: rgba(146, 180, 224, .06);
  font-size: var(--step-sm);
  font-weight: 550;
  color: var(--text-muted);
  transition: background-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.social-link:hover {
  background: rgba(146, 180, 224, .13);
  border-color: rgba(146, 180, 224, .34);
  color: var(--text);
}

/* ------------------------------------------------------------
   21. Footer
   ------------------------------------------------------------ */
.site-footer {
  padding-block: clamp(52px, 6vw, 80px) 28px;
  background: var(--ink-950);
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 750;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 12px;
}
.footer-brand em { font-style: normal; color: var(--accent); }
.footer-tag {
  font-size: var(--step-sm);
  color: var(--text-light);
  max-width: 42ch;
  margin-bottom: 24px;
}
.footer-head {
  font-family: var(--font-body);
  font-size: var(--step-xs);
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 18px;
}
.footer-contact { display: grid; gap: 11px; }
.fc-item {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: var(--step-sm);
  color: var(--text-muted);
  transition: color var(--dur-fast) var(--ease-out);
  width: fit-content;
}
.fc-item:hover { color: var(--accent-light); }
.fc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(146, 180, 224, .06);
  color: var(--text-light);
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.fc-item:hover .fc-icon { color: var(--accent-light); border-color: rgba(244, 120, 38, .34); }

.footer-nav { display: grid; gap: 10px; }
.footer-nav a {
  font-size: var(--step-sm);
  color: var(--text-muted);
  width: fit-content;
  transition: color var(--dur-fast) var(--ease-out);
}
.footer-nav a:hover { color: var(--accent-light); }

.footer-address,
.footer-hours {
  font-size: var(--step-sm);
  line-height: 1.7;
  color: var(--text-muted);
}
.footer-address { margin-bottom: 16px; }
.footer-hours strong { color: var(--accent-light); }

.footer-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: clamp(36px, 4vw, 52px);
  padding-top: 24px;
  border-top: 1px solid var(--line-faint);
}
.footer-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--step-xs);
  color: var(--text-light);
}
.footer-badge-item svg { flex: none; color: var(--ok); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 24px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line-faint);
  font-size: var(--step-xs);
  color: var(--text-light);
}
.footer-credits a {
  color: var(--text-muted);
  text-decoration: underline;
  text-decoration-color: var(--line-strong);
  text-underline-offset: 3px;
  transition: color var(--dur-fast) var(--ease-out);
}
.footer-credits a:hover { color: var(--accent-light); }

/* ------------------------------------------------------------
   21b. Pricing tables & tag chips (Planos)
   ------------------------------------------------------------ */
.tag-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag-chip {
  padding: 6px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: rgba(146, 180, 224, .06);
  font-size: var(--step-xs);
  font-weight: 550;
  color: var(--text-muted);
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.price-table,
.compare-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: var(--step-sm);
}
.price-table th,
.price-table td,
.compare-table th,
.compare-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.price-table tr:last-child td,
.compare-table tr:last-child td { border-bottom: 0; }
.price-table th,
.compare-table th {
  font-family: var(--font-display);
  font-size: var(--step-xs);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-light);
  background: var(--surface-alt);
}
.price-table td:last-child {
  font-weight: 700;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.compare-table { min-width: 620px; }
.compare-table td:first-child { color: var(--text-muted); font-weight: 550; white-space: normal; }
.compare-table td:not(:first-child),
.compare-table th:not(:first-child) { text-align: center; }
.compare-table .check-icon { color: var(--ok); vertical-align: -3px; }
.compare-table .cell-dash { color: var(--text-light); }
.compare-table .cell-note { display: block; margin-top: 2px; font-size: var(--step-xs); color: var(--text-light); }
.compare-table tr.compare-price td {
  font-weight: 700;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  background: var(--surface-alt);
}

/* ------------------------------------------------------------
   22. WhatsApp float
   ------------------------------------------------------------ */
.wa-float {
  position: fixed;
  right: clamp(16px, 2.5vw, 26px);
  bottom: clamp(16px, 2.5vw, 26px);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1FBF5C;
  color: #04220F;
  box-shadow: 0 4px 10px rgba(2, 8, 18, .45), 0 16px 36px -10px rgba(18, 140, 126, .6);
  transition: transform var(--dur) var(--ease-out), background-color var(--dur-fast) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.05);
  background: #25D366;
  box-shadow: 0 6px 14px rgba(2, 8, 18, .45), 0 22px 46px -10px rgba(18, 140, 126, .7);
}

/* ------------------------------------------------------------
   23. Motion — one authored moment
   ------------------------------------------------------------ */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity var(--dur-slow) var(--ease-out),
    transform var(--dur-slow) var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }

/* never hide content when JS or motion is unavailable */
.no-js [data-reveal],
[data-reveal].is-revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ------------------------------------------------------------
   24. Responsive
   ------------------------------------------------------------ */
@media (max-width: 1040px) {
  .tag-layout { grid-template-columns: 1fr; gap: 36px; }
  .tag-visual { order: -1; }
  .tag-visual img { width: min(72%, 260px); }
  .hero-with-image { grid-template-columns: 1fr; gap: 40px; }
  .hero-text { max-width: 44ch; }
  .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr)); }
}

@media (max-width: 880px) {
  .main-nav {
    position: absolute;
    left: var(--gutter);
    right: var(--gutter);
    top: calc(100% + 10px);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    background: rgba(7, 19, 34, .97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-float);
  }
  .main-nav a { padding: 13px 16px; border-radius: var(--radius-sm); font-size: 1rem; }
  .main-nav a[aria-current="page"]::after { display: none; }
  .nav-toggle { display: block; }
  .site-header { position: sticky; }
  .header-inner { position: relative; }
}

@media (max-width: 680px) {
  :root { --space-section: clamp(56px, 11vw, 76px); }
  .hero-points { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .stat-cell { padding: 20px 22px; }
  .hero-cta .btn,
  .final-cta-actions .btn,
  .page-hero-actions .btn,
  .cta-actions .btn { flex: 1 1 100%; }
  .steps li { grid-template-columns: 40px minmax(0, 1fr); column-gap: 16px; row-gap: 0; }
  .steps li::before { width: 36px; height: 36px; font-size: var(--step-xs); }
  .steps li:not(:last-child)::after { left: 18px; top: 64px; }
  .human-block { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer-bottom { flex-direction: column; }
  .contact-with-photo,
  .tech-support-photo { grid-template-columns: 1fr; }
  .plan-card:not(.plan-featured)::before { display: none; }
  .plan-desc { min-height: 0; }
  .tag-points { grid-template-columns: 1fr; }
  .tag-cta .btn { flex: 1 1 100%; }
  .layer-list li { grid-template-columns: 40px minmax(0, 1fr); column-gap: 14px; row-gap: 0; }
  .layer-list li::before { width: 40px; height: 40px; font-size: .46rem; }
  .price-table th, .price-table td,
  .compare-table th, .compare-table td { padding: 11px 14px; }
}

@media (max-width: 460px) {
  .header-cta { display: none; }
  .brand-logo { height: 34px; }
}

/* ------------------------------------------------------------
   25. Print
   ------------------------------------------------------------ */
@media print {
  .site-header, .wa-float, .nav-toggle, .final-cta, .cta-banner { display: none !important; }
  body { background: #FFF; color: #000; }
  .card, .plan-card, .trust-item { border: 1px solid #CCC; box-shadow: none; }
}
