/* ============================================================
   SONODA INFORMÁTICA — Tema Claro Premium
   Paleta derivada do logo: azul-marinho #1a4971 + prata #a9abae
   Inspiração: editorial/awwwards — claro, tipografia forte
   ============================================================ */
:root {
  --bg: #f6f8fb;
  --bg-2: #ffffff;

  --ink: #0e1c2b;          /* texto principal (azul-noite) */
  --navy: #1a4971;         /* azul do logo */
  --blue: #2e7cc0;
  --cyan: #4fd1ff;         /* usado só sobre superfícies escuras */
  --blue-soft: #eaf2fa;
  --silver: #a9abae;       /* prata do logo */

  --whats: #25d366;
  --whats-dark: #1eb457;

  --text: var(--ink);
  --muted: #5b6b7d;
  --border: #e3e9f0;
  --border-strong: #c9d6e3;

  --surface: #ffffff;
  --dark-panel: #0e1c2b;   /* painéis de contraste (terminal, contato) */

  --grad: linear-gradient(135deg, #1a4971 0%, #2e7cc0 100%);
  --grad-text: linear-gradient(90deg, #1a4971, #2e7cc0 60%, #3f97dd);

  --shadow-sm: 0 2px 10px rgba(16, 42, 67, .06);
  --shadow: 0 14px 40px rgba(16, 42, 67, .1);
  --shadow-lg: 0 24px 60px rgba(16, 42, 67, .14);
  --radius: 18px;
  --nav-h: 74px;

  --font-head: "Sora", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* Base */
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
  overflow-x: hidden;
}
html, body { height: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  padding-top: var(--nav-h);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* trava o scroll quando o menu lateral está aberto */
body.no-scroll { overflow: hidden; }

::selection { background: rgba(46, 124, 192, .22); }

img { max-width: 100%; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 96px 0; position: relative; }

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

.section-tag {
  display: inline-block;
  font-family: "Consolas", "SFMono-Regular", monospace;
  font-size: .82rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0 0 14px;
  color: var(--ink);
}

.section-sub {
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.65;
  margin: 0 0 40px;
  max-width: 640px;
}

/* ============================================================
   Barra de progresso de scroll
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--grad);
  z-index: 2000;
  transition: width .1s linear;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background .3s ease, box-shadow .3s ease;
}

.nav.scrolled {
  background: rgba(255, 255, 255, .95);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--nav-h);
}

.brand { display: flex; align-items: center; text-decoration: none; }

.brand-logo {
  width: 230px;
  height: auto;
  transition: opacity .2s ease;
}

.brand:hover .brand-logo { opacity: .85; }

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

.nav-links a {
  position: relative;
  padding: 10px 13px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: .95rem;
  transition: color .2s ease;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 13px; right: 13px; bottom: 6px;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.nav-links a:not(.nav-cta):hover { color: var(--blue); }
.nav-links a:not(.nav-cta):hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--blue); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
  background: var(--whats);
  color: #04140a !important;
  font-weight: 700;
  border-radius: 12px;
  padding: 10px 16px !important;
  box-shadow: 0 4px 16px rgba(37, 211, 102, .35);
  transition: transform .15s ease, box-shadow .2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(37, 211, 102, .45);
}

.burger {
  display: none;
  cursor: pointer;
  border: 1px solid var(--border-strong);
  padding: 9px 11px;
  border-radius: 12px;
  background: var(--surface);
}

.burger .burger-bar {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  margin: 4px 0;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}

.burger[aria-expanded="true"] .burger-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] .burger-bar:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 80px 0 70px;
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}

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

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 73, 113, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 73, 113, .05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 30%, transparent 75%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  animation: orb-float 14s ease-in-out infinite alternate;
  will-change: transform;
}

.orb-1 { width: 640px; height: 640px; top: -220px; left: -200px; background: radial-gradient(circle, rgba(46, 124, 192, .12) 0%, rgba(46, 124, 192, .04) 45%, transparent 70%); }
.orb-2 { width: 520px; height: 520px; bottom: -200px; right: -160px; background: radial-gradient(circle, rgba(26, 73, 113, .1) 0%, rgba(26, 73, 113, .03) 45%, transparent 70%); animation-delay: -5s; }
.orb-3 { width: 380px; height: 380px; top: 24%; right: 16%; background: radial-gradient(circle, rgba(79, 209, 255, .1) 0%, rgba(79, 209, 255, .03) 45%, transparent 70%); animation-delay: -9s; }

@keyframes orb-float {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(40px, -30px, 0) scale(1.12); }
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: var(--surface);
  color: var(--navy);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--whats);
  box-shadow: 0 0 0 0 rgba(37, 211, 102, .6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, .6); }
  70%  { box-shadow: 0 0 0 9px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.hero-text h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin: 0 0 18px;
  color: var(--ink);
}

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

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 28px;
}

.type-target { color: var(--blue); font-weight: 700; }

.type-caret {
  display: inline-block;
  width: 2px; height: 1.1em;
  margin-left: 2px;
  background: var(--blue);
  vertical-align: text-bottom;
  animation: caret-blink 1s step-end infinite;
}

@keyframes caret-blink { 50% { opacity: 0; } }

.hero-cta {
  display: flex;
  gap: 14px;
  margin: 0 0 24px;
  flex-wrap: wrap;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: transform .15s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease, color .2s ease;
  will-change: transform;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-whats {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--whats), var(--whats-dark));
  color: #04140a;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .35);
}

/* brilho que atravessa o botão no hover */
.btn-whats::after {
  content: "";
  position: absolute;
  top: 0; left: -90%;
  width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .5), transparent);
  transform: skewX(-20deg);
  transition: left .55s ease;
  pointer-events: none;
}

.btn-whats:hover::after { left: 140%; }

.btn-whats:hover { box-shadow: 0 10px 30px rgba(37, 211, 102, .45); }

.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--border-strong);
}

.btn-ghost:hover {
  border-color: var(--navy);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.btn-ghost .arrow { transition: transform .2s ease; }
.btn-ghost:hover .arrow { transform: translateX(4px); }

.btn-lg { padding: 16px 28px; font-size: 1.05rem; }

.wa-ico { width: 19px; height: 19px; }

.badges {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.badges li {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: .88rem;
  box-shadow: var(--shadow-sm);
}

/* Hero art — terminal (painel escuro de contraste) */
.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.terminal-card {
  width: min(460px, 100%);
  background: var(--dark-panel);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform .2s ease;
  animation: float-y 6s ease-in-out infinite;
}

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, .05);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.t-dot { width: 11px; height: 11px; border-radius: 50%; }
.t-dot.red { background: #ff5f57; }
.t-dot.yellow { background: #febc2e; }
.t-dot.green { background: #28c840; }

.terminal-title {
  margin-left: 8px;
  font-family: "Consolas", monospace;
  font-size: .78rem;
  color: #8fa3bb;
}

.terminal-body {
  padding: 20px 22px;
  font-family: "Consolas", "SFMono-Regular", monospace;
  font-size: .88rem;
  line-height: 2.05;
}

.terminal-body p { margin: 0; color: #b7c6d6; white-space: nowrap; }
.t-prompt { color: var(--cyan); margin-right: 8px; }
.t-ok { color: var(--whats); }
.t-warn { color: #febc2e; }

.t-result {
  margin-top: 8px !important;
  padding-top: 10px;
  border-top: 1px dashed rgba(255, 255, 255, .18);
  color: #fff !important;
}

.t-result strong { color: var(--cyan); }

/* chips flutuantes */
.float-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow);
  animation: float-y 5s ease-in-out infinite;
}

.float-chip img {
  width: 16px; height: 16px;
  filter: brightness(0) saturate(100%) invert(26%) sepia(21%) saturate(1905%) hue-rotate(182deg) brightness(94%) contrast(92%);
}

.chip-1 { top: -18px; left: 2%; animation-delay: -1.2s; }
.chip-2 { bottom: 8%; right: -2%; animation-delay: -2.6s; }
.chip-3 { bottom: -20px; left: 10%; animation-delay: -4s; }

/* indicador de scroll */
.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid var(--border-strong);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-hint span {
  width: 4px; height: 8px;
  border-radius: 4px;
  background: var(--blue);
  animation: scroll-hint 1.8s ease-in-out infinite;
}

@keyframes scroll-hint {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  padding: 16px 0;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}

.ticker:hover .ticker-track { animation-play-state: paused; }

.ticker-track span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy);
  white-space: nowrap;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ticker-track i { color: var(--blue); font-style: normal; font-size: .55rem; opacity: .6; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   CARDS (serviços)
   ============================================================ */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px, 2.6vw, 32px) clamp(20px, 2.2vw, 28px);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(360px 160px at var(--mx, 50%) var(--my, 0%), rgba(46, 124, 192, .07), transparent 65%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}

.card:hover::before { opacity: 1; }

.card-ico {
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--blue-soft);
  border: 1px solid var(--border);
  margin-bottom: 18px;
  transition: transform .25s ease, background .25s ease;
}

.card:hover .card-ico {
  transform: scale(1.08) rotate(-4deg);
  background: #dcebf9;
}

.card-svg {
  width: 26px; height: 26px;
  filter: brightness(0) saturate(100%) invert(26%) sepia(21%) saturate(1905%) hue-rotate(182deg) brightness(94%) contrast(92%);
}

.card h3 {
  font-family: var(--font-head);
  margin: 0 0 8px;
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--ink);
}

.card p { color: var(--muted); margin: 0; font-size: .93rem; line-height: 1.6; }

/* ============================================================
   CAROUSEL
   ============================================================ */
.carousel { position: relative; margin-top: 8px; }

.car-viewport {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.car-track { display: flex; transition: transform .5s cubic-bezier(.22, .8, .3, 1); }

.car-item {
  min-width: 100%;
  padding: 24px 28px 30px;
  display: grid;
  place-items: center;
  text-align: center;
  align-content: start;
}

/* spotlight atrás do produto */
.car-art {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  padding: 8px 0 2px;
}

.car-art::before {
  content: "";
  position: absolute;
  width: min(300px, 80%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 124, 192, .16), rgba(46, 124, 192, .05) 45%, transparent 68%);
  pointer-events: none;
}

.car-art svg { position: relative; }

.prod-art {
  width: min(330px, 88%);
  height: auto;
  filter: drop-shadow(0 14px 28px rgba(16, 42, 67, .14));
}

.car-item.active .prod-art { animation: float-y 5s ease-in-out infinite; }

.car-item h3 {
  font-family: var(--font-head);
  margin: 12px 0 0;
  color: var(--ink);
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-weight: 800;
}

.car-desc {
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.55;
  margin: 6px 0 0;
  max-width: 340px;
}

.car-tags {
  list-style: none;
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 12px 0 0;
}

.car-tags li {
  font-size: .78rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--blue-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 13px;
}

.car-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
  transition: color .2s ease, gap .2s ease;
}

.car-link:hover { color: var(--navy); gap: 11px; }

/* entrada escalonada do slide ativo */
.car-item .car-art,
.car-item h3,
.car-item .car-desc,
.car-item .car-tags,
.car-item .car-link {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s cubic-bezier(.22, .8, .3, 1);
}

.car-item.active .car-art,
.car-item.active h3,
.car-item.active .car-desc,
.car-item.active .car-tags,
.car-item.active .car-link {
  opacity: 1;
  transform: none;
}

.car-item.active .car-art { transition-delay: .05s; }
.car-item.active h3 { transition-delay: .14s; }
.car-item.active .car-desc { transition-delay: .2s; }
.car-item.active .car-tags { transition-delay: .26s; }
.car-item.active .car-link { transition-delay: .32s; }

.car-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--navy);
  border-radius: 12px;
  padding: 9px 13px;
  cursor: pointer;
  font-size: .9rem;
  box-shadow: var(--shadow-sm);
  transition: background .2s ease, box-shadow .2s ease;
}

.car-btn:hover { background: var(--blue-soft); box-shadow: var(--shadow); }
.car-btn.prev { left: 8px; }
.car-btn.next { right: 8px; }

.car-dots { display: flex; gap: 8px; justify-content: center; margin-top: 14px; }

.car-dots button {
  width: 22px; height: 5px;
  border-radius: 4px;
  border: none;
  background: #d4dfe9;
  cursor: pointer;
  transition: background .25s ease, width .25s ease;
}

.car-dots button.active { background: var(--navy); }

.car-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 8px;
}

/* ============================================================
   Faixa de marcas
   ============================================================ */
.brands { margin-top: 56px; }

.brands-label {
  text-align: center;
  font-family: "Consolas", "SFMono-Regular", monospace;
  font-size: .8rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin: 0 0 22px;
}

.brands-ticker {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: ticker-scroll 38s linear infinite;
}

.brands-ticker:hover .brands-track { animation-play-state: paused; }

.brands-track span {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  letter-spacing: -.5px;
  color: #a9b4c2;
  white-space: nowrap;
  transition: color .25s ease;
  cursor: default;
}

.brands-track span:hover { color: var(--navy); }

.brands-track i {
  font-style: normal;
  color: var(--blue);
  opacity: .45;
  font-size: 1.2rem;
}

/* ============================================================
   TONER / SOBRE
   ============================================================ */
.about-flex {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
}

.about-text p { color: var(--muted); line-height: 1.75; }
.about-text .section-title { margin-bottom: 14px; }
.about-text strong { color: var(--ink); }

.btn-left { margin-top: 24px; }

.glow-frame {
  position: relative;
  border-radius: var(--radius);
  padding: 4px;
  background: linear-gradient(135deg, rgba(26, 73, 113, .25), rgba(46, 124, 192, .08), rgba(26, 73, 113, .25));
  box-shadow: var(--shadow);
}

.glow-frame img,
.glow-frame svg {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  background: var(--surface);
}

/* Ilustração da entrega de toner */
.toner-route { animation: route-dash 1.4s linear infinite; }

@keyframes route-dash {
  to { stroke-dashoffset: -36; }
}

.toner-van { animation: van-drive 5s ease-in-out infinite; }

@keyframes van-drive {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10px, -3px); }
}

.toner-pin {
  transform-origin: 400px 172px;
  animation: pin-bounce 2.2s ease-in-out infinite;
}

@keyframes pin-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.toner-badge { animation: float-y 6s ease-in-out infinite; }

.list-check {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}

.list-check li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 500;
}

.check-ico {
  width: 24px; height: 24px;
  flex: 0 0 24px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #e7f6ec;
  border: 1px solid #bfe8cd;
  color: #169a4c;
  font-weight: 800;
  font-size: .85rem;
}

/* Timeline */
.store-photo {
  margin: 56px 0 0;
}

.store-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.store-photo figcaption {
  margin-top: 14px;
  text-align: center;
  color: var(--muted);
  font-size: .9rem;
}

.timeline {
  position: relative;
  padding-left: 28px;
  display: grid;
  gap: 26px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--navy), var(--blue), transparent);
}

.tl-item { position: relative; }

.tl-item::before {
  content: "";
  position: absolute;
  left: -28px; top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--blue);
  box-shadow: var(--shadow-sm);
}

.tl-year {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--navy);
  font-size: 1.05rem;
}

.tl-item p { margin: 4px 0 0; color: var(--muted); line-height: 1.6; }

/* ============================================================
   STATS
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 6px;
}

.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.stat:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}

.stat-ico { font-size: 28px; margin-bottom: 6px; }

.stat-val {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-sub { color: var(--muted); font-size: .92rem; margin-top: 4px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.testimonial:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}

.stars { color: #f5a623; letter-spacing: 3px; margin-bottom: 12px; font-size: .95rem; }

.testimonial blockquote {
  margin: 0 0 16px;
  font-size: .98rem;
  line-height: 1.65;
  color: var(--ink);
}

.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 600;
}

.avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--grad);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
}

.review-src {
  font-weight: 400;
  font-size: .8rem;
  color: var(--muted);
  opacity: .85;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: grid; gap: 14px; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: clip;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.faq-item[open] { border-color: var(--border-strong); box-shadow: var(--shadow); }

.faq-summary {
  list-style: none;
  cursor: pointer;
  padding: clamp(20px, 2.6vw, 30px) clamp(20px, 3.2vw, 36px);
  font-weight: 700;
  font-family: var(--font-head);
  font-size: clamp(1.02rem, 1.8vw, 1.25rem);
  color: var(--ink);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  transition: color .2s ease;
}

.faq-summary:hover { color: var(--blue); }
.faq-summary::-webkit-details-marker { display: none; }

.faq-summary:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: var(--radius);
}

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

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

.faq-icon::before { width: 18px; height: 2.5px; }
.faq-icon::after { width: 2.5px; height: 18px; }

.faq-item[open] .faq-icon::after { transform: scaleY(0); opacity: 0; }

.faq-content {
  padding: 0 clamp(20px, 3.2vw, 36px) clamp(20px, 2.6vw, 28px);
  color: var(--muted);
  font-size: clamp(.95rem, 1.4vw, 1.05rem);
  line-height: 1.7;
  max-width: 900px;
}

.faq-content p { margin: 0; }
.faq-content strong { color: var(--ink); }

/* ============================================================
   CONTATO — painel escuro de contraste
   ============================================================ */
.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: center;
  background: linear-gradient(135deg, #0e1c2b 0%, #16385a 100%);
  border-radius: 26px;
  padding: 52px 48px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-glow {
  position: absolute;
  top: -120px; right: -120px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 209, 255, .16), transparent 70%);
  pointer-events: none;
}

.contact-left h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  letter-spacing: -.5px;
  margin: 0 0 12px;
  color: #fff;
}

.contact-left p { color: #a8bcd2; margin: 0; line-height: 1.65; }

.contact-right {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.contact-right li { display: flex; gap: 14px; align-items: flex-start; }

.contact-right .ci {
  width: 40px; height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  font-size: 17px;
}

.contact-right strong {
  display: block;
  color: #fff;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.contact-right a, .contact-right span {
  color: #a8bcd2;
  text-decoration: none;
  font-size: .95rem;
  transition: color .2s ease;
  word-break: break-word;
}

.contact-right a:hover { color: var(--cyan); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

.footer-flex {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 30px 0;
}

.ft-brand img { width: 240px; height: auto; }

.ft-social { display: flex; gap: 10px; align-items: center; justify-content: center; }

.ft-social a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--ink);
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color .2s ease, box-shadow .2s ease, transform .15s ease;
}

.ft-social a:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.ft-whatsapp {
  width: auto !important;
  padding: 0 16px;
  font-weight: 600;
  font-size: .9rem;
}

.ft-copy {
  text-align: right;
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.6;
  padding-right: 84px; /* espaço para o botão flutuante do WhatsApp */
}

@media (max-width: 640px) {
  .ft-copy { padding-right: 0; padding-bottom: 70px; }
}

/* ============================================================
   Página legal (política de privacidade)
   ============================================================ */
.legal .section-title { font-size: clamp(30px, 4.2vw, 52px); }

/* nav da página legal: sempre visível (não há menu hambúrguer aqui) */
.nav-links.legal-nav { display: flex; }

.legal-content {
  max-width: none;
  margin-top: 8px;
}

.legal-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -.5px;
  color: var(--ink);
  margin: 40px 0 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }

.legal-content p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 14px;
  font-size: 1rem;
}

.legal-content a {
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(46, 124, 192, .3);
  transition: color .2s ease, border-color .2s ease;
  word-break: break-word;
}

.legal-content a:hover { color: var(--navy); border-bottom-color: var(--navy); }

.nowrap { white-space: nowrap; }

.ft-link {
  color: var(--blue);
  text-decoration: none;
}

.ft-link:hover { color: var(--navy); text-decoration: underline; }

/* ============================================================
   WhatsApp flutuante
   ============================================================ */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--whats), var(--whats-dark));
  box-shadow: 0 8px 28px rgba(37, 211, 102, .45);
  animation: wa-pulse 2.4s infinite;
  transition: transform .2s ease;
}

.wa-float:hover { transform: scale(1.1); }
.wa-float img { width: 30px; height: 30px; }

@keyframes wa-pulse {
  0%   { box-shadow: 0 8px 28px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, .45); }
  70%  { box-shadow: 0 8px 28px rgba(37, 211, 102, .45), 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 8px 28px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================================
   Sidebar (mobile)
   ============================================================ */
.sidebar {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  height: 100dvh;
  width: 80vw;
  max-width: 330px;
  background: var(--surface);
  border-right: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  transform: translateX(-100%);
  visibility: hidden;
  transition: transform .3s cubic-bezier(.22, .8, .3, 1), visibility .3s;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.sidebar.open { transform: translateX(0); visibility: visible; }

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
}

.sidebar-title {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: .9rem;
}

.sidebar-close {
  border: none;
  background: transparent;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
}

.sidebar-links { display: flex; flex-direction: column; padding: 12px; gap: 2px; }

.side-link {
  padding: 13px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  transition: background .2s ease, color .2s ease;
}

.side-link:hover { background: var(--blue-soft); color: var(--navy); }

.side-link.cta {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--whats), var(--whats-dark));
  color: #04140a;
  font-weight: 700;
  margin-top: 10px;
}


.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 35, .4);
  backdrop-filter: blur(3px);
  z-index: 1100;
}

.backdrop[hidden] { display: none; }

/* ============================================================
   Aviso de privacidade (LGPD)
   ============================================================ */
.consent {
  position: fixed;
  left: 16px; right: 16px;
  bottom: 84px; /* acima do botão flutuante do WhatsApp */
  z-index: 1250;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 18px;
  display: grid;
  gap: 12px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .35s ease, transform .35s cubic-bezier(.22, .8, .3, 1);
}

.consent.show { opacity: 1; transform: none; }

.consent p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.6;
}

.consent a { color: var(--blue); font-weight: 600; }

.consent-accept {
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .93rem;
  color: #04140a;
  background: linear-gradient(135deg, var(--whats), var(--whats-dark));
  box-shadow: 0 4px 16px rgba(37, 211, 102, .3);
  transition: transform .15s ease, box-shadow .2s ease;
}

.consent-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(37, 211, 102, .4);
}

@media (min-width: 641px) {
  .consent { left: 22px; right: auto; bottom: 22px; margin: 0; }
}

/* ============================================================
   Escolha de app de mapas (celular)
   ============================================================ */
.map-chooser { position: fixed; inset: 0; z-index: 1300; }
.map-chooser[hidden] { display: none; }

.map-chooser-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 35, .45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.map-chooser-sheet {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  margin: 0 auto;
  max-width: 480px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: 22px 22px 0 0;
  padding: 22px 20px calc(22px + env(safe-area-inset-bottom, 0px));
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 10px;
  animation: sheet-up .28s cubic-bezier(.22, .8, .3, 1);
}

@keyframes sheet-up {
  from { transform: translateY(40px); opacity: 0; }
}

.map-chooser-title {
  margin: 0 0 4px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  text-align: center;
}

.map-app {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  background: var(--bg);
  color: var(--ink);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease;
}

.map-app:hover { border-color: var(--blue); background: var(--blue-soft); }

.map-chooser-cancel {
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  padding: 12px;
  cursor: pointer;
}

.map-chooser-cancel:hover { color: var(--ink); }

/* ============================================================
   Títulos — animação palavra por palavra
   ============================================================ */
.section-title .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.22, .8, .3, 1);
}

.section-title.title-in .w {
  opacity: 1;
  transform: none;
}

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22, .8, .3, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* stagger nos grids */
.grid-cards .reveal:nth-child(2), .stats-grid .reveal:nth-child(2), .testimonials-grid .reveal:nth-child(2) { transition-delay: .1s; }
.grid-cards .reveal:nth-child(3), .stats-grid .reveal:nth-child(3), .testimonials-grid .reveal:nth-child(3) { transition-delay: .2s; }
.grid-cards .reveal:nth-child(4), .stats-grid .reveal:nth-child(4) { transition-delay: .3s; }

/* ============================================================
   Skip link (acessibilidade)
   ============================================================ */
.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 3000;
  background: var(--navy);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 12px 12px;
  font-weight: 700;
  text-decoration: none;
  transition: top .2s ease;
}

.skip-link:focus { top: 0; }

/* ============================================================
   Toggle de tema
   ============================================================ */
.nav-actions { display: flex; align-items: center; gap: 10px; }

.theme-toggle {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: var(--surface);
  color: var(--navy);
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .15s ease;
}

.theme-toggle:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.theme-toggle .ico-sun { display: none; }
[data-theme="dark"] .theme-toggle .ico-sun { display: block; }
[data-theme="dark"] .theme-toggle .ico-moon { display: none; }

/* ============================================================
   Formulário de orçamento
   ============================================================ */
.quote-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .88rem;
  color: var(--ink);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 13px 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  width: 100%;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(46, 124, 192, .15);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder { color: #9aa8b8; }

.quote-form .btn { justify-content: center; border: none; cursor: pointer; font-family: var(--font-body); }

.form-note {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: .8rem;
}

.quote-form input.invalid,
.quote-form textarea.invalid { border-color: #e05252; }

/* ============================================================
   Mapa
   ============================================================ */
.map-wrap {
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  line-height: 0;
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
}

/* ============================================================
   Ver avaliações / voltar ao topo
   ============================================================ */
.reviews-cta { display: flex; justify-content: center; margin-top: 30px; }

.to-top {
  position: fixed;
  right: 22px;
  bottom: 94px;
  z-index: 900;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--navy);
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, border-color .2s ease;
}

.to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.to-top:hover { border-color: var(--blue); color: var(--blue); }

/* ============================================================
   Página 404
   ============================================================ */
.nf { min-height: calc(100svh - var(--nav-h) - 1px); display: flex; align-items: center; }

.nf-wrap {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 8px;
}

.nf-terminal { margin-bottom: 26px; animation: none; }

.nf-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 10px; }

/* ============================================================
   TEMA ESCURO
   ============================================================ */
:root[data-theme="dark"] {
  --bg: #050b16;
  --bg-2: #081120;
  --ink: #e9f1fa;
  --text: #e9f1fa;
  --muted: #93a7bd;
  --border: rgba(139, 178, 216, .16);
  --border-strong: rgba(139, 178, 216, .34);
  --surface: #0c1a2c;
  --dark-panel: #0a1626;
  --blue-soft: rgba(79, 209, 255, .1);
  --grad-text: linear-gradient(90deg, #5db4f0, #4fd1ff 60%, #9be1ff);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, .35);
  --shadow: 0 14px 40px rgba(0, 0, 0, .45);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, .55);
}

:root { color-scheme: light; }
:root[data-theme="dark"] { color-scheme: dark; }

body { transition: background-color .3s ease, color .3s ease; }

[data-theme="dark"] .nav { background: rgba(5, 11, 22, .8); }
[data-theme="dark"] .nav.scrolled { background: rgba(5, 11, 22, .95); }

[data-theme="dark"] .brand-logo,
[data-theme="dark"] .ft-brand img {
  filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(79, 209, 255, .2));
}

[data-theme="dark"] .type-target,
[data-theme="dark"] .type-caret { color: var(--cyan); background-color: transparent; }
[data-theme="dark"] .type-caret { background: var(--cyan); }

[data-theme="dark"] .hero-badge { color: #9ecbf0; }

[data-theme="dark"] .card-svg,
[data-theme="dark"] .float-chip img { filter: brightness(0) invert(1); }

[data-theme="dark"] .brands-track span { color: #5b708a; }
[data-theme="dark"] .brands-track span:hover { color: var(--cyan); }

[data-theme="dark"] .car-btn { color: var(--cyan); }
[data-theme="dark"] .car-dots button { background: rgba(139, 178, 216, .25); }
[data-theme="dark"] .car-dots button.active { background: var(--cyan); }
[data-theme="dark"] .car-tags li { color: #9ecbf0; }
[data-theme="dark"] .car-link { color: #6db5ec; }
[data-theme="dark"] .car-link:hover { color: var(--cyan); }

[data-theme="dark"] .check-ico {
  background: rgba(37, 211, 102, .12);
  border-color: rgba(37, 211, 102, .3);
  color: #3ee07f;
}

[data-theme="dark"] .tl-year { color: #6db5ec; }
[data-theme="dark"] .tl-item::before { border-color: var(--cyan); }

[data-theme="dark"] .faq-icon::before,
[data-theme="dark"] .faq-icon::after { background: var(--cyan); }
[data-theme="dark"] .faq-summary:hover { color: var(--cyan); }

[data-theme="dark"] .sidebar-title { color: var(--cyan); }
[data-theme="dark"] .side-link:hover { color: var(--cyan); }

[data-theme="dark"] .theme-toggle { color: #f5d76e; }

[data-theme="dark"] .to-top { color: #9ecbf0; }
[data-theme="dark"] .to-top:hover { color: var(--cyan); border-color: var(--cyan); }

[data-theme="dark"] .nav-links a:not(.nav-cta):hover,
[data-theme="dark"] .nav-links a.active { color: var(--cyan); }

[data-theme="dark"] .section-tag { color: var(--cyan); }
[data-theme="dark"] .legal-content a { color: #6db5ec; }
[data-theme="dark"] .ft-link { color: #6db5ec; }

[data-theme="dark"] .map-wrap iframe { filter: invert(90%) hue-rotate(180deg) contrast(.9); }

[data-theme="dark"] .quote-form input,
[data-theme="dark"] .quote-form select,
[data-theme="dark"] .quote-form textarea { background: var(--bg-2); }

/* ============================================================
   Acessibilidade — reduz movimento
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVO
   ============================================================ */

/* <= 1100px */
@media (max-width: 1100px) {
  .nav-links { gap: 0; }
  .nav-links a { padding: 10px 9px; font-size: .9rem; }
  .brand-logo { width: 190px; }
}

/* <= 1000px */
@media (max-width: 1000px) {
  .hero { min-height: auto; padding: 56px 0 76px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 56px; }
  .hero-text { text-align: center; }
  .hero-cta, .badges { justify-content: center; }
  .hero-art { margin-top: 4px; }

  .grid-cards { grid-template-columns: repeat(2, 1fr); }
  .about-flex { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .contact-card { grid-template-columns: minmax(0, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .car-duo { grid-template-columns: minmax(0, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* <= 900px — menu mobile */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .brand-logo { width: 200px; }
}

/* <= 640px */
@media (max-width: 640px) {
  .section { padding: 64px 0; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .hero { padding: 40px 0 70px; }
  .hero-text h1 br { display: none; }

  .float-chip { display: none; }
  .terminal-card { width: 100%; }
  .terminal-body { font-size: .8rem; padding: 16px 16px; }

  .contact-card { padding: 34px 24px; }

  .footer-flex {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .ft-copy { text-align: center; }

  .btn-left { display: flex; justify-content: center; }
  .about-text { text-align: center; }
  .list-check { justify-items: center; }
  .timeline { margin: 0 auto; max-width: 420px; }
}

/* <= 560px */
@media (max-width: 560px) {
  .grid-cards { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat { padding: 20px 12px; }

  .btn { padding: 12px 18px; font-size: .93rem; }
  .btn-lg { padding: 14px 20px; font-size: .98rem; }

  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }

  .brand-logo { width: 170px; }

  .wa-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .wa-float img { width: 27px; height: 27px; }

  .car-btn { padding: 7px 10px; font-size: .8rem; }
  .car-btn.prev { left: 4px; }
  .car-btn.next { right: 4px; }
  .car-item { padding: 20px 40px 26px; }
  .car-desc { max-width: 100%; }
  .scroll-hint { display: none; }

  .map-wrap iframe { height: 300px; }
}

/* <= 380px */
@media (max-width: 380px) {
  .stats-grid { grid-template-columns: 1fr; }
  .brand-logo { width: 150px; }
  .terminal-body { font-size: .72rem; }
}
