:root {
  --bg-midnight: #080809;
  --surface-glass: rgba(255, 255, 255, 0.04);
  --surface-hover: rgba(255, 255, 255, 0.07);
  --accent-gold: #D4AF37;
  --text-main: #FAFAF9;
  --text-muted: #A1A1AA;
  --border-light: rgba(255, 255, 255, 0.09);
  --border-accent: rgba(212, 175, 55, 0.34);
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Skip link ─────────────────────────────────────────────── */
.skip-link {
  position: fixed;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.65rem 1.25rem;
  background: var(--accent-gold);
  color: #080809;
  font-weight: 800;
  font-size: 0.875rem;
  border-radius: 0 0 0.75rem 0.75rem;
  text-decoration: none;
  transition: top 0.15s ease;
}

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

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-midnight);
  color: var(--text-main);
  background-image:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08), transparent 36rem),
    radial-gradient(circle at 12% 18%, rgba(34, 197, 94, 0.05), transparent 24rem),
    linear-gradient(180deg, #080809 0%, #0b0b0d 45%, #070708 100%);
  background-attachment: fixed;
}

section[id] {
  scroll-margin-top: 5.5rem;
}

main,
section,
header,
footer {
  max-width: 100%;
  overflow-x: clip;
}

.glass-nav {
  background: rgba(5, 8, 15, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tech-nav-brand { display: inline-flex; align-items: center; gap: .72rem; color: #fff; text-decoration: none; }
.tech-nav-brand__mark { display: grid; place-items: center; width: 2.55rem; height: 2.55rem; border: 1px solid rgba(212, 175, 55, .55); border-radius: .78rem; background: linear-gradient(145deg, rgba(212, 175, 55, .22), rgba(255, 255, 255, .035)); color: #F3DF98; font-size: 1.22rem; font-weight: 900; letter-spacing: -.08em; }
.tech-nav-brand__copy { display: grid; gap: .12rem; line-height: 1; }
.tech-nav-brand__copy strong { font-size: .82rem; font-weight: 900; letter-spacing: .15em; }
.tech-nav-brand__copy small { color: #A1A1AA; font-size: .5rem; font-weight: 800; letter-spacing: .14em; }

.bento-card {
  background: var(--surface-glass);
  border: 1px solid var(--border-light);
  border-radius: 1.25rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, background 0.35s ease;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.bento-card:hover {
  background: var(--surface-hover);
  transform: translateY(-3px);
  border-color: var(--border-accent);
  box-shadow: 0 22px 50px -16px rgba(0, 0, 0, 0.9), 0 0 28px -12px rgba(212, 175, 55, 0.22);
}

.card-icon {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-light);
  border-radius: 1rem;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: all 0.35s ease;
}

.bento-card:hover .card-icon {
  background: var(--accent-gold);
  color: var(--bg-midnight);
  border-color: var(--accent-gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.32);
}

.premium-btn,
.premium-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-main);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  padding: 0.78rem 1.5rem;
  transition: all 0.2s ease;
  background: transparent;
  width: max-content;
  max-width: 100%;
  margin-top: 1.5rem;
  cursor: pointer;
  text-decoration: none;
}

/* Foco consistente para navegação por teclado em toda a jornada comercial. */
a:focus-visible,
button:focus-visible,
[role="tab"]:focus-visible,
.niche-chip:focus-visible {
  outline: 3px solid #f3df98;
  outline-offset: 3px;
}

.premium-btn:hover,
.premium-link:hover {
  transform: translateY(-2px);
}

.premium-btn.primary,
.premium-link.primary {
  background: var(--accent-gold);
  color: var(--bg-midnight);
  border-color: var(--accent-gold);
}

.premium-btn.primary:hover,
.premium-link.primary:hover {
  background: #c39e2e;
  border-color: #c39e2e;
}

.premium-btn.light,
.premium-link.light {
  background: var(--text-main);
  color: var(--bg-midnight);
  border-color: var(--text-main);
}

.premium-btn.light:hover,
.premium-link.light:hover {
  background: var(--accent-gold);
  color: var(--bg-midnight);
  border-color: var(--accent-gold);
}

.tab-btn {
  background: var(--surface-glass);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  padding: 0.75rem 1.45rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.25s ease;
  cursor: pointer;
  flex: 0 0 auto;
}

.tab-btn:hover {
  background: var(--surface-hover);
  color: var(--text-main);
}

.tab-btn.active {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--border-accent);
  color: var(--accent-gold);
}

.tab-pane {
  display: none;
  animation: smoothReveal 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.tab-pane.active {
  display: grid;
}

.scrollbar-none {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar-none::-webkit-scrollbar {
  display: none;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #fff 0%, #f3df98 42%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.proof-pill {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  color: #d4d4d8;
  font-size: 0.82rem;
  font-weight: 700;
}

.mobile-whatsapp {
  display: none;
}

.hero-kicker {
  max-width: 100%;
}

.tech-showcase {
  --light-bg: #ffffff;
  --light-card: rgba(255, 255, 255, 0.78);
  --light-card-strong: #ffffff;
  --light-text: #0f172a;
  --light-muted: #475569;
  --light-line: rgba(15, 23, 42, 0.11);
  color: var(--light-text);
  background-color: #f8fafc;
  background-image:
    radial-gradient(circle at 50% 30%, #ffffff 15%, rgba(255, 255, 255, 0) 85%),
    radial-gradient(circle, rgba(15, 23, 42, 0.12) 1px, transparent 1.5px),
    linear-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.05) 1px, transparent 1px);
  background-size: 100% 100%, 45px 45px, 45px 45px, 45px 45px;
  background-position: 0 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  overflow: hidden;
  isolation: isolate;
}

.tech-showcase > .max-w-7xl { position: relative; }
.tech-showcase > .max-w-7xl::before { content: "CATÁLOGO PLENA"; position: absolute; top: -2.4rem; left: 0; color: rgba(15, 23, 42, .1); font-size: .62rem; font-weight: 900; letter-spacing: .22em; }

#processo { background: linear-gradient(135deg, rgba(255, 255, 255, .025), transparent 42%), #0A0B10; }
#processo .bento-card { min-height: 13rem; border-radius: 1rem; }
#processo .bento-card > span { display: inline-flex; align-items: center; justify-content: center; width: 2rem; height: 2rem; border: 1px solid rgba(212, 175, 55, .26); border-radius: .6rem; background: rgba(212, 175, 55, .08); }
#confianca { background: #0D0E13; }
#confianca .proof-pill { background: rgba(255, 255, 255, .025); border-color: rgba(255, 255, 255, .08); }
#faq { background: linear-gradient(180deg, #090A0E, #0D0E13) !important; }
#faq .bento-card { padding: 1.55rem; border-radius: 1rem; }
#contato { background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, .1), transparent 28rem), #07080B; }

.tech-showcase::before {
  display: none;
}

.tech-showcase .text-white,
.tech-showcase h2,
.tech-showcase h3 {
  color: var(--light-text) !important;
}

.tech-showcase .text-\[var\(--text-muted\)\],
.tech-showcase p {
  color: var(--light-muted) !important;
}

.tech-showcase .tab-track {
  width: max-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0.45rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 24px 70px -48px rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.tech-showcase .tab-btn {
  background: transparent;
  border-color: transparent;
  color: #475569;
}

.tech-showcase .tab-btn:hover {
  background: rgba(15, 23, 42, 0.055);
  color: #0f172a;
}

.tech-showcase .tab-btn.active {
  background: #0f172a;
  color: #fff;
  border-color: #0f172a;
  box-shadow: 0 18px 35px -22px rgba(15, 23, 42, 0.9);
}

/* Catálogo em grid filtrável (o carrossel infinito foi substituído na Fase 2) */
.tech-showcase .tab-pane.active {
  display: grid;
}

.showcase-viewport {
  position: relative;
  min-height: 0;
}

.showcase-rail {
  padding: 0.75rem 0 1rem;
  margin: 0;
}

.showcase-rail>* {
  min-width: 0;
}

.tech-showcase article[data-offer] {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.68)),
    var(--light-card);
  border: 1px solid var(--light-line);
  border-radius: 1.35rem;
  box-shadow: 0 16px 38px -30px rgba(15, 23, 42, 0.24);
  transform: translateY(0);
  transition: transform 0.24s ease-out, box-shadow 0.24s ease-out, border-color 0.24s ease-out, background 0.24s ease-out;
}

.tech-showcase article[data-offer] h3 {
  font-size: clamp(1.45rem, 2vw, 2.15rem) !important;
}

.tech-showcase article[data-offer] h4,
.tech-showcase article[data-offer] .text-2xl,
.tech-showcase article[data-offer] .text-3xl,
.tech-showcase article[data-offer] .md\:text-4xl {
  font-size: clamp(1.75rem, 3.1vw, 3.35rem) !important;
  line-height: 1.05 !important;
  max-width: 44rem;
}

.tech-showcase article[data-offer] p {
  max-width: 48rem;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.75;
}

.tech-showcase article[data-offer]:hover {
  border-color: rgba(15, 23, 42, 0.18);
  box-shadow: 0 22px 42px -32px rgba(15, 23, 42, 0.34);
  transform: translateY(-3px);
}

.tech-showcase article[data-offer]:focus-within {
  border-color: rgba(212, 175, 55, 0.34);
  box-shadow: 0 20px 50px -28px rgba(15, 23, 42, 0.28), 0 0 0 1px rgba(212, 175, 55, 0.08);
}

.tech-showcase article[data-offer] .premium-link:not(.primary) {
  font-weight: 800;
}

.tech-showcase .bento-card:hover {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.74)),
    var(--light-card-strong);
}

.tech-showcase .card-icon {
  color: #0f172a;
  background: rgba(15, 23, 42, 0.055);
  border-color: rgba(15, 23, 42, 0.1);
}

.tech-showcase .bento-card:hover .card-icon {
  color: #0f172a;
  background: rgba(15, 23, 42, 0.07);
  border-color: rgba(15, 23, 42, 0.14);
  box-shadow: none;
  transform: scale(1.02);
}

/* Amostras de sistemas: quatro cards com a mesma hierarquia e ritmo visual. */
.tech-showcase #tab-gestão.tab-pane.active {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(29rem, 1fr);
  align-items: stretch;
}

.tech-showcase .system-sample-card {
  min-height: 29rem;
  padding: clamp(1.5rem, 2.5vw, 2rem);
}

.system-card-content {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.system-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 3.5rem;
}

.system-card-title {
  margin: 0;
  color: #0f172a !important;
  font-size: 1.35rem !important;
  font-weight: 800;
  line-height: 1.15;
}

.system-card-meta {
  display: block;
  margin-top: 0.25rem;
  color: #64748b;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.system-card-summary {
  min-height: 2.7em;
  margin: 0;
  color: #0f172a !important;
  font-size: clamp(1.18rem, 1.65vw, 1.4rem) !important;
  font-weight: 750;
  line-height: 1.22 !important;
}

.system-card-description {
  min-height: 5.25em;
  margin: 0;
  color: #475569 !important;
  font-size: 0.97rem !important;
  font-weight: 400;
  line-height: 1.75 !important;
}

.system-card-price {
  width: fit-content;
  max-width: 100%;
  margin-top: 0.25rem;
  padding: 0.38rem 0.7rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.045);
  color: #8a6810;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.25;
}

.system-card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  width: 100%;
  margin-top: 1.5rem;
}

.system-card-actions .premium-btn,
.system-card-actions .premium-link {
  width: 100%;
  min-height: 3rem;
  margin-top: 0;
  padding: 0.7rem 0.75rem;
  font-size: 0.8rem;
  text-align: center;
}

.tech-showcase .premium-btn,
.tech-showcase .premium-link {
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.tech-showcase .premium-btn:hover,
.tech-showcase .premium-link:hover,
.tech-showcase .premium-btn.primary,
.tech-showcase .premium-link.primary {
  color: #080809;
  background: var(--accent-gold);
  border-color: var(--accent-gold);
}

@keyframes smoothReveal {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.99);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 767px) {
  body {
    background-attachment: scroll;
  }

  .mobile-whatsapp {
    display: inline-flex;
    padding: 0.65rem 0.9rem;
    font-size: 0.78rem;
    max-width: 8rem;
    white-space: nowrap;
    overflow: hidden;
  }

  .hero-title {
    font-size: 2.35rem !important;
    line-height: 1.04 !important;
    max-width: calc(100vw - 2rem) !important;
  }

  .tech-hero-layout { grid-template-columns: 1fr; gap: 1.5rem; text-align: left; }
  .tech-hero-copy { max-width: 100%; }
  .tech-hero-copy .hero-title { margin-bottom: 1.25rem; }
  .tech-hero-proof { margin-top: 1.25rem; }
  .tech-hero-proof span { width: 100%; }
  .tech-delivery-panel { padding: 1.1rem; border-radius: 1.1rem; }
  .tech-delivery-panel h2 { max-width: 100%; font-size: 1.38rem !important; }

  .hero-kicker {
    width: calc(100vw - 2rem);
    justify-content: center;
    align-items: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-kicker span:last-child {
    white-space: normal;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  section h2,
  section h3,
  section p {
    max-width: calc(100vw - 2rem);
    overflow-wrap: anywhere;
  }

  section h2 {
    font-size: 1.85rem !important;
    line-height: 1.12 !important;
  }

  .proof-pill {
    max-width: calc(100vw - 2rem);
    white-space: normal;
    text-align: center;
  }

  .bento-card {
    padding: 1.35rem;
    border-radius: 1rem;
  }

  .premium-btn,
  .premium-link {
    width: 100%;
    min-height: 3rem;
  }

  .tab-track {
    margin-left: 0;
    margin-right: 0;
  }

  .tech-showcase .tab-track {
    width: 100%;
    justify-content: flex-start;
    scroll-padding-inline: 0.25rem;
    border-radius: 1rem;
  }

  .tech-showcase .tab-btn,
  .tech-showcase .niche-chip {
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
  }

  .tech-showcase #tab-gestão.tab-pane.active {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .tech-showcase .system-sample-card {
    min-height: 0;
  }

  .system-card-summary,
  .system-card-description {
    min-height: 0;
  }

  .system-card-actions {
    grid-template-columns: 1fr;
  }
}

/* Focus-visible nos painéis de aba (tabindex="0") */
.tab-pane:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 4px;
  border-radius: 0.5rem;
}

/* ============================================================
   NICHE FILTER CHIPS
   ============================================================ */

.niche-filter-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  min-height: 2rem;
}

.niche-filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.niche-chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
  line-height: 1;
}

.niche-chip:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.2);
}

.niche-chip.active {
  background: var(--accent-gold);
  color: #08090b;
  border-color: var(--accent-gold);
  box-shadow: 0 6px 18px -8px rgba(212, 175, 55, 0.6);
}

/* Variante clara: os chips são injetados dentro da seção .tech-showcase (fundo claro) */
.tech-showcase .niche-chip {
  background: rgba(15, 23, 42, 0.05);
  border-color: rgba(15, 23, 42, 0.16);
  color: #475569;
}

.tech-showcase .niche-chip:hover {
  background: rgba(15, 23, 42, 0.1);
  border-color: rgba(15, 23, 42, 0.28);
  color: #0f172a;
}

.tech-showcase .niche-chip.active {
  background: #0f172a;
  border-color: #0f172a;
  color: #fff;
  box-shadow: 0 10px 24px -14px rgba(15, 23, 42, 0.8);
}


/* ============================================================
   FILTERED-OUT CARD (niche filter)
   ============================================================ */

.card-hidden {
  display: none !important;
}

/* ============================================================
   DEMO MODAL LOADER
   ============================================================ */

.demo-loader {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  transition: opacity 0.25s ease;
}

.demo-loader.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.demo-spinner {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 3px solid rgba(15, 23, 42, 0.12);
  border-top-color: var(--accent-gold);
  animation: demo-spin 0.8s linear infinite;
}

#demo-modal.demo-modal--compact {
  align-items: center;
  justify-content: center;
  padding: 24px;
}

#demo-modal.demo-modal--compact .demo-modal-shell {
  width: min(940px, 100%);
  height: min(640px, calc(100vh - 48px));
  flex: none;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 20px;
  box-shadow: 0 32px 84px rgba(0, 0, 0, .48);
}

@media (max-width: 640px) {
  #demo-modal.demo-modal--compact { padding: 12px; }
  #demo-modal.demo-modal--compact .demo-modal-shell {
    height: min(680px, calc(100vh - 24px));
    border-radius: 16px;
  }
}

@keyframes demo-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================================
   TECH HERO (malha tecnológica adaptada ao tema escuro)
   ============================================================ */
.tech-hero {
  position: relative;
  background: linear-gradient(115deg, #06080d 0%, #0a0b10 55%, #0b0c0e 100%);
}

.tech-hero-layout { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(320px, .72fr); align-items: center; gap: clamp(2rem, 6vw, 6rem); position: relative; z-index: 1; text-align: left; }
.tech-hero-copy { max-width: 47rem; }
.tech-hero-copy .hero-title { max-width: 46rem; margin-left: 0; margin-right: 0; }
.tech-hero-copy > p { max-width: 39rem; }
.tech-hero-proof { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.85rem; }
.tech-hero-proof span { padding: .52rem .72rem; border-left: 2px solid rgba(212, 175, 55, .72); background: rgba(255, 255, 255, .035); color: #D4D4D8; font-size: .73rem; font-weight: 700; }
.tech-delivery-panel { padding: 1.45rem; border: 1px solid rgba(255, 255, 255, .12); border-radius: 1.45rem; background: linear-gradient(150deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .025)); box-shadow: 0 30px 85px -52px rgba(0, 0, 0, .92); backdrop-filter: blur(16px); }
.tech-delivery-panel__top { display: flex; align-items: center; justify-content: space-between; color: #D4AF37; font-size: .66rem; font-weight: 900; letter-spacing: .16em; }
.tech-delivery-panel__top i { font-size: 1.3rem; }
.tech-delivery-panel h2 { max-width: 18rem; margin: 1.4rem 0 1.35rem; color: #fff; font-size: clamp(1.4rem, 2.2vw, 1.9rem); font-weight: 800; letter-spacing: -.045em; line-height: 1.13; }
.tech-delivery-panel__items { display: grid; gap: .62rem; }
.tech-delivery-panel__items > div { display: flex; gap: .75rem; align-items: flex-start; padding: .86rem; border: 1px solid rgba(255, 255, 255, .075); border-radius: .85rem; background: rgba(0, 0, 0, .15); }
.tech-delivery-panel__items i { color: #F3DF98; font-size: 1.1rem; margin-top: .1rem; }
.tech-delivery-panel__items span { display: grid; gap: .22rem; }
.tech-delivery-panel__items strong { color: #F4F4F5; font-size: .82rem; }
.tech-delivery-panel__items small { color: #A1A1AA; font-size: .72rem; line-height: 1.45; }
.tech-delivery-panel > p { display: flex; align-items: center; gap: .5rem; margin: 1rem 0 0; color: #D4D4D8; font-size: .72rem; font-weight: 700; }
.tech-delivery-panel__signal { width: .5rem; height: .5rem; border-radius: 50%; background: #22C55E; }

@media (max-width: 767px) {
  .tech-hero-layout { grid-template-columns: minmax(0, 1fr); gap: 1.5rem; }
  .tech-hero-copy { width: 100%; max-width: 100%; }
  .tech-hero-copy .hero-title { width: 100%; max-width: 100% !important; margin-bottom: 1.25rem; }
  .tech-hero-copy > p { width: 100%; max-width: 100%; }
  .tech-hero-proof { margin-top: 1.25rem; }
  .tech-hero-proof span { width: 100%; }
  .tech-delivery-panel { width: 100%; padding: 1.1rem; border-radius: 1.1rem; }
  .tech-delivery-panel h2 { max-width: 100%; font-size: 1.38rem !important; }
}

.tech-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.045) 1px, transparent 1.5px),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 45px 45px;
  background-position: center top;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 80%);
  mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 80%);
}

/* Hover simplificado para os botões do Hero (sem brilho, elevação ou iluminação dourada) */
.tech-hero .premium-btn:hover,
.tech-hero .premium-link:hover {
  transform: none;
}

.tech-hero .premium-btn.primary:hover,
.tech-hero .premium-link.primary:hover {
  background: #c39e2e;
  border-color: #c39e2e;
  box-shadow: none;
}

.tech-hero .premium-btn.light:hover,
.tech-hero .premium-link.light:hover {
  background: #e2e8f0;
  border-color: #e2e8f0;
  color: var(--bg-midnight);
  box-shadow: none;
}

/* ============================================================
   MOVIMENTO REDUZIDO (acessibilidade)
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

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

  html {
    scroll-behavior: auto !important;
  }

  .tech-showcase article[data-offer] {
    transform: none !important;
  }
}
