/* ============================================================
   ARROW CONTINGÊNCIA — Design System
   Dark premium · Cyan eléctrico · Mobile-first
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg: #0a0a0a;
  --bg-soft: #101012;
  --bg-card: #131316;
  --bg-elev: #18181c;

  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  --text: #f5f7fa;
  --text-dim: #a7afbb;
  --text-muted: #6f7684;

  --accent: #05bbd1;
  --accent-strong: #22d3ee;
  --accent-soft: #67e8f9;
  --accent-dim: rgba(5, 187, 209, 0.1);
  --accent-glow: rgba(5, 187, 209, 0.35);
  --grad-accent: linear-gradient(135deg, #05bbd1 0%, #22d3ee 100%);
  --grad-text: linear-gradient(115deg, #05bbd1 10%, #67e8f9 60%, #b6f6ff 100%);

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 26px;

  --shadow-lg: 0 30px 80px -30px rgba(0, 0, 0, 0.85);
  --shadow-glow: 0 10px 40px -10px var(--accent-glow);

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --container: 1180px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  color: inherit;
  cursor: pointer;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

::selection {
  background: var(--accent);
  color: #041318;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: #232329;
  border-radius: 10px;
  border: 2px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover {
  background: #2f2f37;
}

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.container-narrow {
  max-width: 840px;
}

.section {
  padding-block: clamp(76px, 10vw, 120px);
  position: relative;
}

.section-alt {
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-head {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 72px);
}

.section-head h2 {
  font-size: clamp(30px, 4.6vw, 46px);
  margin-bottom: 16px;
}

.section-head p {
  color: var(--text-dim);
  font-size: 17px;
}

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

/* ---------- Pills ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  backdrop-filter: blur(8px);
}

.pill-ghost {
  background: rgba(5, 187, 209, 0.08);
  border-color: rgba(5, 187, 209, 0.3);
  color: var(--accent-soft);
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent-glow);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(5, 187, 209, 0.45); }
  70%  { box-shadow: 0 0 0 9px rgba(5, 187, 209, 0); }
  100% { box-shadow: 0 0 0 0 rgba(5, 187, 209, 0); }
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.22s ease,
              border-color 0.22s ease,
              background-color 0.22s ease,
              color 0.22s ease;
  overflow: hidden;
}

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

.btn-lg {
  padding: 16px 28px;
  font-size: 16px;
  border-radius: 14px;
}

.btn-sm {
  padding: 11px 18px;
  font-size: 14px;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--grad-accent);
  color: #041318;
  box-shadow: 0 8px 24px -8px var(--accent-glow);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px var(--accent-glow);
}

.btn-primary:hover::after {
  transform: translateX(120%);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-strong);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: rgba(5, 187, 209, 0.6);
  background: rgba(5, 187, 209, 0.08);
  transform: translateY(-2px);
}

.wa-icon {
  width: 20px;
  height: 20px;
  flex: none;
}

/* ---------- Top bar ---------- */
.topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  background: linear-gradient(90deg, rgba(5, 187, 209, 0.08), rgba(5, 187, 209, 0.02) 50%, rgba(5, 187, 209, 0.08));
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.topbar-icon {
  width: 15px;
  height: 15px;
  color: var(--accent);
  flex: none;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.75);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 12px rgba(5, 187, 209, 0.25));
}

.brand-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
}

.brand-text strong {
  color: var(--accent);
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.2s ease;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--grad-accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav a:hover {
  color: var(--text);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-link {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.2s ease;
}

.header-link:hover {
  color: var(--accent-soft);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  background: rgba(10, 10, 10, 0.97);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a:not(.btn) {
  padding: 13px 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dim);
  border-bottom: 1px solid var(--line);
}

.mobile-nav a:hover {
  color: var(--text);
}

.mobile-nav .btn {
  margin-top: 12px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(72px, 10vw, 120px) clamp(88px, 12vw, 150px);
}

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

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(5, 187, 209, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 187, 209, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(ellipse 75% 62% at 50% 12%, #000 25%, transparent 72%);
  mask-image: radial-gradient(ellipse 75% 62% at 50% 12%, #000 25%, transparent 72%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
}

.hero-glow-a {
  width: 560px;
  height: 560px;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(5, 187, 209, 0.2), transparent 65%);
}

.hero-glow-b {
  width: 480px;
  height: 480px;
  right: -160px;
  bottom: -140px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.12), transparent 65%);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero-copy .pill {
  margin-bottom: 26px;
}

.hero-title {
  font-size: clamp(40px, 6vw, 64px);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
}

.hero-trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

/* Hero visual — terminal */
.hero-visual {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.terminal {
  position: relative;
  background: rgba(19, 19, 22, 0.72);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 80px -30px var(--accent-glow);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.terminal::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(103, 232, 249, 0.7), transparent);
}

.terminal-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.t-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.t-dot-r { background: #ff5f57; }
.t-dot-y { background: #febc2e; }
.t-dot-g { background: #28c840; }

.terminal-title {
  margin-left: 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-muted);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}

.terminal-live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: #4ade80;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
}

.terminal-body {
  padding: 20px 18px 18px;
}

.terminal-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.t-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.t-row:hover {
  border-color: rgba(5, 187, 209, 0.4);
  transform: translateX(3px);
}

.t-row-icon {
  width: 36px;
  height: 36px;
  flex: none;
  display: grid;
  place-items: center;
  color: var(--accent);
}

.t-row-icon svg {
  width: 17px;
  height: 17px;
}

.t-row-info {
  flex: 1;
  min-width: 0;
}

.t-row-name {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.t-row-meta {
  font-size: 12px;
  color: var(--text-muted);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}

.t-pill {
  flex: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border-radius: 999px;
}

.t-pill-ok {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.25);
}

.t-pill-proc {
  color: var(--accent-soft);
  background: rgba(5, 187, 209, 0.12);
  border: 1px solid rgba(5, 187, 209, 0.3);
}

.terminal-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  font-size: 13px;
  color: var(--text-dim);
}

.terminal-foot svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  background: rgba(24, 24, 28, 0.85);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  animation: float 5.5s ease-in-out infinite;
  z-index: 3;
}

.float-card-a {
  top: -22px;
  left: -30px;
}

.float-card-b {
  bottom: 34px;
  right: -26px;
  animation-delay: 1.6s;
}

.float-icon {
  width: 34px;
  height: 34px;
  flex: none;
  display: grid;
  place-items: center;
  color: var(--accent);
}

.float-icon svg {
  width: 17px;
  height: 17px;
}

.float-text strong {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
}

.float-text span {
  font-size: 12px;
  color: var(--text-muted);
}

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

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text-muted);
  transition: color 0.2s ease, border-color 0.2s ease;
  z-index: 2;
}

.hero-scroll svg {
  width: 18px;
  height: 18px;
  animation: bounce 2s infinite;
}

.hero-scroll:hover {
  color: var(--accent);
  border-color: rgba(5, 187, 209, 0.5);
}

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

/* ---------- Ticker ---------- */
.ticker {
  border-block: 1px solid var(--line);
  background: var(--bg-soft);
  overflow: hidden;
  padding-block: 18px;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
}

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

.ticker-group {
  display: flex;
  align-items: center;
  flex: none;
}

.tick-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-inline: 26px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  white-space: nowrap;
}

.tick-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

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

/* ---------- Produtos ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.p-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px 24px 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.p-card:hover {
  transform: translateY(-6px);
  border-color: rgba(5, 187, 209, 0.45);
  box-shadow: 0 26px 60px -28px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(5, 187, 209, 0.12), 0 12px 50px -20px var(--accent-glow);
}

.p-skel {
  cursor: default;
}

.p-skel:hover {
  transform: none;
  border-color: var(--line);
  box-shadow: none;
}

.p-skel .skeleton-line:first-child {
  margin-top: 0;
}

.p-card-featured {
  border-color: rgba(5, 187, 209, 0.35);
  background: linear-gradient(180deg, rgba(5, 187, 209, 0.07), var(--bg-card) 45%);
}

.p-card-featured:hover {
  border-color: rgba(5, 187, 209, 0.7);
}

.p-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.p-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--accent-dim);
  border: 1px solid rgba(5, 187, 209, 0.25);
  color: var(--accent);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.p-icon svg {
  width: 21px;
  height: 21px;
}

.p-card:hover .p-icon {
  background: var(--grad-accent);
  color: #041318;
  transform: scale(1.06) rotate(-3deg);
}

.p-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-soft);
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(5, 187, 209, 0.1);
  border: 1px solid rgba(5, 187, 209, 0.3);
}

.p-badge-hot {
  color: #041318;
  background: var(--grad-accent);
  border-color: transparent;
}

.p-title {
  font-size: 19px;
  margin-bottom: 8px;
}

.p-desc {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 18px;
  min-height: 60px;
}

.p-feats {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}

.p-feats li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--text-dim);
}

.p-feats li svg {
  width: 15px;
  height: 15px;
  flex: none;
  color: var(--accent);
}

.p-foot {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.p-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.p-price span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-right: 1px;
  vertical-align: 6px;
}

.p-cta {
  flex: none;
}

.p-stock-out {
  color: #fca5a5;
}

.p-soldout {
  flex: none;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
}

.grid-fallback {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  color: var(--text-dim);
}

.skeleton-line {
  display: block;
  height: 13px;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0.05) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.grid-fallback p {
  margin-bottom: 18px;
}

.products-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: var(--text-muted);
}

.products-note svg {
  width: 17px;
  height: 17px;
  color: var(--accent);
}

/* ---------- Como funciona ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 46px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(5, 187, 209, 0.4) 15%, rgba(5, 187, 209, 0.4) 85%, transparent);
}

.step {
  position: relative;
  text-align: center;
  padding: 0 10px;
}

.step-num {
  position: absolute;
  top: 0;
  right: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.step-icon {
  position: relative;
  z-index: 1;
  width: 92px;
  height: 92px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  color: var(--accent);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.step-icon svg {
  width: 34px;
  height: 34px;
}

.step:hover .step-icon {
  transform: translateY(-5px);
  border-color: rgba(5, 187, 209, 0.5);
  box-shadow: 0 16px 40px -16px var(--accent-glow);
}

.step h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: var(--text-dim);
}

/* ---------- Benefícios ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 72px;
}

.b-card {
  padding: 28px 26px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.b-card:hover {
  transform: translateY(-5px);
  border-color: rgba(5, 187, 209, 0.4);
  box-shadow: 0 22px 50px -28px rgba(0, 0, 0, 0.9);
}

.b-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--accent-dim);
  color: var(--accent);
  margin-bottom: 18px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.b-icon svg {
  width: 21px;
  height: 21px;
}

.b-card:hover .b-icon {
  background: var(--grad-accent);
  color: #041318;
}

.b-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.b-card p {
  font-size: 14px;
  color: var(--text-dim);
}

/* ---------- Painel do cliente ---------- */
.panel-showcase {
  position: relative;
  max-width: 860px;
  margin-inline: auto;
  margin-bottom: clamp(56px, 7vw, 80px);
}

.browser {
  position: relative;
  background: rgba(19, 19, 22, 0.72);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 80px -30px var(--accent-glow);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.browser::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(103, 232, 249, 0.7), transparent);
}

.browser-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.b-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex: none;
}
.b-dot-r { background: #ff5f57; }
.b-dot-y { background: #febc2e; }
.b-dot-g { background: #28c840; }

.browser-url {
  margin-inline: auto;
  font-size: 12px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  padding: 5px 16px;
  border-radius: 8px;
}

.browser-lock {
  flex: none;
  display: grid;
  place-items: center;
  color: #4ade80;
}
.browser-lock svg {
  width: 15px;
  height: 15px;
}

.browser-body {
  padding: 22px 22px 24px;
}

.bp-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.bp-eyebrow {
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.bp-title {
  font-size: 19px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.bp-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #4ade80;
}

.bp-stats {
  display: flex;
  gap: 10px;
}

.bp-stat {
  text-align: center;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 12px;
  min-width: 74px;
}

.bp-stat strong {
  display: block;
  font-size: 17px;
  color: var(--text);
}

.bp-stat span {
  font-size: 10.5px;
  color: var(--text-muted);
}

.bp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.bp-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.bp-card:hover {
  border-color: rgba(5, 187, 209, 0.4);
  transform: translateY(-3px);
}

.bp-card-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bp-ico {
  flex: none;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--accent-dim);
  color: var(--accent);
}

.bp-ico svg {
  width: 16px;
  height: 16px;
}

.bp-card-meta {
  flex: 1;
  min-width: 0;
}

.bp-card-meta strong {
  display: block;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bp-card-meta small {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}

.bp-pill {
  flex: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 4px 8px;
  border-radius: 999px;
}

.bp-pill.ok {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.25);
}

.bp-pill.wait {
  color: var(--accent-soft);
  background: rgba(5, 187, 209, 0.12);
  border: 1px solid rgba(5, 187, 209, 0.3);
}

.bp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0;
}

.bp-tags span {
  font-size: 10.5px;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  padding: 3px 8px;
  border-radius: 999px;
}

.bp-warm {
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.bp-warm-bar {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
}

/* ---------- Ferramentas do painel ---------- */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.t-card {
  padding: 26px 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.t-card:hover {
  transform: translateY(-5px);
  border-color: rgba(5, 187, 209, 0.4);
  box-shadow: 0 22px 50px -28px rgba(0, 0, 0, 0.9);
}

.t-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.t-card p {
  font-size: 13.5px;
  color: var(--text-dim);
}

.panel-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(40px, 5vw, 56px);
}

/* ---------- Comparativo ---------- */
.compare {
  max-width: 820px;
  margin-inline: auto;
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
}

.compare-head {
  text-align: center;
  margin-bottom: 32px;
}

.compare-head h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.compare-head p {
  font-size: 15px;
  color: var(--text-dim);
}

.compare-table {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.c-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.c-row:last-child {
  border-bottom: none;
}

.c-row-head {
  background: rgba(255, 255, 255, 0.03);
}

.c-col {
  padding: 15px 18px;
  font-size: 14px;
  text-align: center;
}

.c-feat {
  text-align: left;
  color: var(--text-dim);
  font-weight: 500;
}

.c-row-head .c-col {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}

.c-arrow {
  color: var(--text);
  background: rgba(5, 187, 209, 0.06);
}

.c-row-head .c-arrow {
  color: var(--accent-soft);
  background: rgba(5, 187, 209, 0.1);
}

.c-others {
  color: var(--text-muted);
}

.c-ok {
  width: 17px;
  height: 17px;
  color: #4ade80;
  margin-inline: auto;
}

.c-no {
  width: 17px;
  height: 17px;
  color: #f87171;
  margin-inline: auto;
}

/* ---------- FAQ ---------- */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.open {
  border-color: rgba(5, 187, 209, 0.4);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color 0.2s ease;
}

.faq-q:hover {
  color: var(--accent-soft);
}

.faq-plus {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-plus {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-a-inner {
  padding: 0 22px 22px;
  font-size: 15px;
  color: var(--text-dim);
  max-width: 660px;
}

/* ---------- CTA final ---------- */
.cta-panel {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(56px, 9vw, 96px) clamp(24px, 6vw, 80px);
  border: 1px solid rgba(5, 187, 209, 0.3);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(5, 187, 209, 0.1), rgba(19, 19, 22, 0.6) 40%, var(--bg-card));
}

.cta-glow {
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 620px;
  height: 380px;
  background: radial-gradient(ellipse, rgba(5, 187, 209, 0.22), transparent 65%);
  filter: blur(50px);
  pointer-events: none;
}

.cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(5, 187, 209, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 187, 209, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 80% 90% at 50% 0%, #000 20%, transparent 80%);
  mask-image: radial-gradient(ellipse 80% 90% at 50% 0%, #000 20%, transparent 80%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin-inline: auto;
}

.cta-inner .pill {
  margin-bottom: 26px;
}

.cta-inner h2 {
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 18px;
}

.cta-inner p {
  font-size: 17px;
  color: var(--text-dim);
  margin-bottom: 34px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.cta-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  margin-bottom: 0;
  font-size: 13.5px;
  color: var(--text-muted) !important;
}

.cta-meta svg {
  width: 15px;
  height: 15px;
  color: var(--accent);
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: #08080a;
  padding-top: clamp(56px, 8vw, 84px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
}

.f-brand p {
  font-size: 14.5px;
  color: var(--text-dim);
  margin: 18px 0 22px;
  max-width: 320px;
}

.f-brand .brand {
  margin-bottom: 6px;
}

.f-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border: 1px solid rgba(5, 187, 209, 0.4);
  border-radius: 999px;
  background: rgba(5, 187, 209, 0.08);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-soft);
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.f-wa:hover {
  background: rgba(5, 187, 209, 0.16);
  transform: translateY(-2px);
}

.f-col h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.f-col a {
  display: block;
  font-size: 14.5px;
  color: var(--text-dim);
  margin-bottom: 12px;
  transition: color 0.2s ease, transform 0.2s ease;
  width: fit-content;
}

.f-col a:hover {
  color: var(--accent-soft);
  transform: translateX(3px);
}

.f-meta {
  display: block;
  font-size: 13.5px;
  color: var(--text-muted);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 26px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-disclaimer {
  max-width: 760px;
  margin: 14px auto 0;
  line-height: 1.6;
}

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 200;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #05bbd1, #22d3ee);
  color: #041318;
  box-shadow: 0 12px 34px -8px var(--accent-glow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(5, 187, 209, 0.6);
  animation: wa-ring 2.4s ease-out infinite;
}

.wa-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 18px 44px -8px var(--accent-glow);
}

.wa-float .wa-icon {
  width: 27px;
  height: 27px;
}

.wa-float-label {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-elev);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 9px 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.wa-float:hover .wa-float-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@keyframes wa-ring {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.75); opacity: 0; }
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .products-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 44px 20px;
  }

  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps::before {
    display: none;
  }

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

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .pill {
    margin-bottom: 22px;
  }

  .hero-sub {
    margin-inline: auto;
  }

  .hero-cta,
  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
    max-width: 520px;
    margin-inline: auto;
  }

  .float-card-a {
    left: -8px;
  }

  .float-card-b {
    right: -8px;
  }
}

@media (max-width: 720px) {
  .main-nav {
    display: none;
  }

  .site-header .brand-text {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .topbar {
    font-size: 12px;
  }

  .hero {
    padding-block: 56px 84px;
  }

  .hero-scroll {
    display: none;
  }

  .products-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .tools-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .bp-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .bp-stats {
    width: 100%;
  }

  .bp-stat {
    flex: 1;
  }

  .step {
    max-width: 360px;
    margin-inline: auto;
  }

  .p-desc {
    min-height: 0;
  }

  .c-row {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .c-col {
    padding: 13px 10px;
    font-size: 13px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .wa-float {
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }

  .wa-float-label {
    display: none;
  }

  .hero-title {
    font-size: clamp(36px, 10vw, 46px);
  }

  .p-foot {
    flex-direction: column;
    align-items: flex-start;
  }

  .p-cta {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-cta .btn,
  .cta-actions .btn {
    width: 100%;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .ticker-track {
    animation: none;
  }
}
