/* ==========================================================================
   AETHER — Dark Bronze & Gold System
   Background: #101214 | Accent: Bronze/Gold Palette
   Layout: Reference-accurate proportions
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Playfair+Display:ital,wght@0,700;0,900;1,700;1,900&family=Cinzel:wght@700;800;900&family=DM+Serif+Display&family=JetBrains+Mono:wght@300;400;500;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg: #101214;
  --bg-card: #1A1B1D;
  --bronze: #8B6A45;
  --line: #9E7A52;
  --gold: #B18B5E;
  --btn: #C29A68;
  --highlight: #D6BEA1;
  --text: #E6D7C7;
  --text-muted: rgba(230, 215, 199, 0.55);
  --text-sub: rgba(230, 215, 199, 0.78);

  --font-serif: 'Playfair Display', 'Cinzel', 'Bodoni Moda', Didot, Georgia, serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-sans: 'Inter', system-ui, sans-serif;

  --header-h: 78px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  color: var(--text);
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── SCROLLBARS CUSTOMIZADAS (Tema Bronze/Gold) ────────────────────────── */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background: #0A0B0D;
}
::-webkit-scrollbar-thumb {
  background: #8B6A45;
  border-radius: 0;
}
::-webkit-scrollbar-thumb:hover {
  background: #B18B5E;
}
* {
  scrollbar-width: thin;
  scrollbar-color: #8B6A45 #0A0B0D;
}



a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

/* ── HEADER ─────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(16, 18, 20, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(158, 122, 82, 0.25);
  display: flex;
  align-items: center;
  transform: translateY(0);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.header-container,
.header-inner {
  width: 100%;
  padding: 0 2.8rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  justify-content: flex-end;
}

.header-social-group {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.header-social-icon {
  color: var(--text-sub);
  opacity: 0.8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
  padding: .2rem;
}

.header-social-icon:hover {
  color: #ffffff;
  opacity: 1;
  transform: translateY(-1.5px);
}

.nav-link {
  font-family: var(--font-mono);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-sub);
  transition: color .25s ease;
}

.nav-link:hover {
  color: var(--highlight);
}

.nav-btn-precos {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--highlight);
  background: linear-gradient(135deg, rgba(194, 154, 104, .22), rgba(26, 27, 29, .6));
  border: 1px solid rgba(194, 154, 104, .5);
  padding: .55rem 1.4rem;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: all .35s cubic-bezier(.16, 1, .3, 1);
  box-shadow: 0 4px 18px rgba(0, 0, 0, .45), inset 0 0 12px rgba(194, 154, 104, .12);
}

.nav-btn-precos:hover {
  background: var(--btn);
  color: #0d0e10;
  border-color: var(--highlight);
  box-shadow: 0 0 25px rgba(194, 154, 104, .7);
  transform: translateY(-2px);
}

.nav-btn-precos::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
  transition: left .6s ease;
}

.nav-btn-precos:hover::before {
  left: 100%;
}

.brand-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--highlight);
}

.brand-socials {
  display: none;
}

.header-social-icon {
  color: var(--text-sub);
  opacity: 0.8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
  padding: .2rem;
}

.header-social-icon:hover {
  color: #ffffff;
  opacity: 1;
  transform: translateY(-1.5px);
}

.btn-cta {
  font-family: var(--font-mono);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .55rem 1.3rem;
  border: 1px solid var(--btn);
  color: var(--btn);
  background: transparent;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.btn-cta:hover {
  background: var(--btn);
  color: var(--bg);
  box-shadow: 0 0 18px rgba(194, 154, 104, .45);
}

/* ── LAYOUT CONTAINER ────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 100%;
  padding: 0 2.8rem;
  position: relative;
  z-index: 1;
}

/* ── HERO ────────────────────────────────────────────────────────────────── */
.hero-section {
  padding-top: calc(var(--header-h) + 2.5rem);
  padding-bottom: 3rem;
  padding-left: 2.8rem;
  padding-right: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 0;
  align-items: center;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding-right: 3rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(177, 139, 94, .08);
  border: 1px solid rgba(158, 122, 82, .35);
  padding: .4rem 1rem;
  width: fit-content;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--btn);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--btn);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .4;
    transform: scale(1.4);
  }
}

/* HEADLINE — Bodoni Moda, referência exata */
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3.4rem, 5.2vw, 7.2rem);
  line-height: .89;
  font-weight: 400;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--text);
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-sub);
  max-width: 580px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: .4rem;
}

.action-label {
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.btn-primary {
  background: var(--btn);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .95rem 2rem;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  width: fit-content;
  transition: all .25s;
  box-shadow: 0 4px 20px rgba(194, 154, 104, .25);
}

.btn-primary:hover {
  background: var(--highlight);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(214, 190, 161, .5);
}

/* Terminal Box */
.terminal-box {
  background: var(--bg-card);
  border: 1px solid rgba(158, 122, 82, .3);
  width: 100%;
  max-width: 580px;
  overflow: hidden;
}

.terminal-tabs {
  display: flex;
  background: rgba(255, 255, 255, .03);
  border-bottom: 1px solid rgba(158, 122, 82, .2);
  padding: .45rem 1rem;
  gap: 1.6rem;
}

.terminal-tab {
  font-family: var(--font-mono);
  font-size: .76rem;
  color: var(--text-muted);
  padding: .2rem .4rem;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all .2s;
}

.terminal-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.terminal-body {
  padding: .85rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: .84rem;
  color: var(--highlight);
}

.cmd-text {
  user-select: all;
  overflow-x: auto;
  white-space: nowrap;
}

.btn-copy {
  color: var(--text-muted);
  padding: .35rem;
  transition: color .2s;
}

.btn-copy:hover {
  color: var(--gold);
}

/* Hero Artwork — Right edge flush */
.hero-artwork-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
}

.hero-artwork-frame {
  position: relative;
  width: 100%;
  border: none;
  overflow: hidden;
}

.hero-artwork-frame img {
  width: 100%;
  max-height: 98vh;
  display: block;
  object-fit: cover;
}

.hero-art-dashes {
  display: none;
}

/* ── SHARED SECTION STYLES ───────────────────────────────────────────────── */
.section-pad {
  padding: 7rem 0;
  border-top: 1px solid rgba(158, 122, 82, .18);
}

/* Remove border between showcase and ROI section */
.showcase-light-section + .section-pad {
  border-top: none;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: .82rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 3.8vw, 5rem);
  line-height: .95;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1.4rem;
}

.section-sub {
  font-size: 1.15rem;
  color: var(--text-sub);
  max-width: 800px;
  font-weight: 400;
}

/* ── DEMO SECTION ────────────────────────────────────────────────────────── */
.demo-bg {
  background: rgba(26, 27, 29, 0.6);
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
  margin-top: 3.5rem;
  align-items: start;
}

.demo-selector {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.demo-item {
  background: var(--bg-card);
  border: 1px solid rgba(158, 122, 82, .2);
  padding: 1.6rem 1.8rem;
  cursor: pointer;
  transition: all .3s;
}

.demo-item:hover,
.demo-item.active {
  border-color: var(--gold);
  background: rgba(177, 139, 94, .08);
  transform: translateX(6px);
  box-shadow: -4px 0 0 var(--gold);
}

.demo-item h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: .4rem;
}

.demo-item p {
  font-size: .95rem;
  color: var(--text-sub);
}

.code-window {
  background: #0D0E10;
  border: 1px solid rgba(158, 122, 82, .35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .6);
  border-radius: 6px;
  overflow: hidden;
}

.code-window-top {
  background: rgba(255, 255, 255, .04);
  padding: .75rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(158, 122, 82, .18);
  font-family: var(--font-mono);
  font-size: .82rem;
  color: var(--text-muted);
}

.window-dots {
  display: flex;
  gap: .45rem;
}

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(177, 139, 94, .35);
}

.code-body {
  padding: 1.6rem;
  font-family: var(--font-mono);
  font-size: .88rem;
  line-height: 1.75;
  color: var(--highlight);
  max-height: 440px;
  overflow-y: auto;
}

.code-keyword {
  color: #c792ea;
  font-weight: bold;
}

.code-func {
  color: #82aaff;
}

.code-string {
  color: #c3e88d;
}

.code-comment {
  color: rgba(230, 215, 199, .38);
  font-style: italic;
}

.log-stream {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(158, 122, 82, .25);
  font-size: .82rem;
}

.log-line {
  margin-bottom: .35rem;
  display: flex;
  gap: .5rem;
}

.log-success {
  color: #a8d8a8;
}

.log-info {
  color: var(--gold);
}

/* ── SHOWCASE SECTION (#1 A #6 COM STICKY ESQUERDA & FUNDO #E6D7C7) ───── */
.showcase-light-section {
  position: relative;
  background: #101214;
  padding-top: 5rem;
  overflow: visible;
  z-index: 1;
}

.showcase-light-wrapper {
  background: #E6D7C7;
  border: 1px solid #8B6A45;
  padding: 3.5rem 3rem 18rem;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 3.5rem;
  align-items: start;
  position: relative;
  overflow: visible;
  z-index: 2;
}

/* SIDEBAR STICKY — MUITO MENOR E DELICADO QUE ACOMPANHA O SCROLL */
.showcase-sticky-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 1.8rem);
  align-self: start;
  width: 100%;
  z-index: 10;
}

.sticky-avatar-card {
  width: 100%;
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
}

.sticky-avatar-img {
  width: 80px;
  height: 130px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  border: 1px solid rgba(139, 106, 69, 0.5);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* CARDS CONTAINER & HEADER EM FUNDO #E6D7C7 */
.showcase-cards-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.showcase-light-header {
  border-bottom: 2px solid rgba(16, 18, 20, 0.15);
  padding-bottom: 1.5rem;
}

.light-section-tag {
  font-family: var(--font-mono);
  font-size: .82rem;
  letter-spacing: .22em;
  color: #8B6A45;
  text-transform: uppercase;
}

.light-section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.2vw, 4rem);
  line-height: .98;
  text-transform: uppercase;
  font-weight: 400;
  color: #101214;
  margin-top: .4rem;
}

/* GRADE DE 3 COLUNAS EM CADA FILEIRA: #1 A #6 — LIMPA SEM QUADRADOS BRANCOS */
.showcase-3col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.8rem 2.2rem;
}

.light-card {
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  box-shadow: none;
  transition: transform .35s;
}

.light-card:hover {
  transform: translateY(-4px);
}

.light-card-tag {
  font-family: var(--font-mono);
  font-size: .82rem;
  letter-spacing: .2em;
  color: #8B6A45;
  text-transform: uppercase;
  font-weight: 700;
}

.light-card-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.3vw, 2.7rem);
  line-height: 1.02;
  text-transform: uppercase;
  font-weight: 400;
  color: #101214;
  min-height: 2.3em;
}

.light-img-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(16, 18, 20, 0.25);
  overflow: hidden;
  background: #101214;
}

.light-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .92;
  transition: transform .5s, opacity .5s;
}

.light-card:hover .light-card-img {
  transform: scale(1.04);
  opacity: 1;
}

.light-card-desc {
  font-family: var(--font-mono);
  font-size: .76rem;
  line-height: 1.65;
  color: #2B2520;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.light-giant-brand-wrap {
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none;
  z-index: 999;
}

.light-giant-title {
  font-family: 'Playfair Display', var(--font-serif);
  font-size: clamp(8rem, 18vw, 24rem);
  line-height: .75;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #14171a;
  white-space: nowrap;
  margin: 0;
  -webkit-text-stroke: 1.5px #14171a;
}

@media (max-width: 1300px) {
  .showcase-3col-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .showcase-light-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2rem 1.5rem;
  }

  .showcase-sticky-sidebar {
    position: relative;
    top: 0;
  }

  .showcase-3col-grid {
    grid-template-columns: 1fr;
  }
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .4);
  background: rgba(26, 27, 29, 0.9);
}

.service-num {
  font-family: var(--font-mono);
  font-size: .82rem;
  color: var(--bronze);
  letter-spacing: .12em;
  margin-bottom: 1.6rem;
}

.service-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  line-height: 1.02;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 1.1rem;
}

.service-desc {
  font-size: .98rem;
  color: var(--text-sub);
  line-height: 1.65;
  margin-bottom: 2rem;
  flex: 1;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: auto;
}

.tag {
  font-family: var(--font-mono);
  font-size: .72rem;
  padding: .28rem .65rem;
  border: 1px solid rgba(158, 122, 82, .3);
  background: rgba(139, 106, 69, .1);
  color: var(--gold);
}

/* ── ROI CALCULATOR ──────────────────────────────────────────────────────── */
.calc-box {
  background: linear-gradient(145deg, #18191C, #101113);
  border: 1px solid rgba(158, 122, 82, .3);
  padding: 3.5rem;
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: stretch;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.input-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: .82rem;
  color: var(--text-sub);
}

.input-label-text {
  display: flex;
  align-items: center;
  gap: .5rem;
  letter-spacing: .08em;
}

.input-icon {
  width: 15px;
  height: 15px;
  color: var(--gold);
  flex-shrink: 0;
}

.input-val {
  font-family: var(--font-mono);
  color: var(--highlight);
  font-weight: 700;
  font-size: .9rem;
  background: rgba(194, 154, 104, .12);
  border: 1px solid rgba(194, 154, 104, .3);
  padding: .25rem .75rem;
  border-radius: 4px;
  letter-spacing: .05em;
  box-shadow: inset 0 0 10px rgba(194, 154, 104, .1);
}

/* Range Slider Styling */
input[type="range"] {
  width: 100%;
  height: 6px;
  background: rgba(158, 122, 82, .22);
  appearance: none;
  outline: none;
  border-radius: 99px;
  cursor: pointer;
  transition: background .2s;
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--btn);
  cursor: pointer;
  box-shadow: 0 0 16px rgba(194, 154, 104, .8), inset 0 0 0 2px rgba(255,255,255,.3);
  transition: transform .2s, background .2s;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.18);
  background: var(--highlight);
  box-shadow: 0 0 24px rgba(214, 190, 161, 1);
}

/* Monthly Breakdown Bar */
.calc-monthly-bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 1.2rem;
  background: rgba(0, 0, 0, .3);
  border: 1px dashed rgba(158, 122, 82, .25);
  margin-top: .5rem;
}

.monthly-stat {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.monthly-lbl {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.monthly-val {
  font-family: var(--font-mono);
  font-size: .88rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .06em;
}

/* Results Card */
.calc-results {
  background: linear-gradient(160deg, #1C1915, #121315);
  border: 1px solid rgba(194, 154, 104, .4);
  padding: 2.8rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  text-align: center;
  position: relative;
  box-shadow: inset 0 0 40px rgba(194, 154, 104, .06), 0 10px 30px rgba(0,0,0,.4);
  justify-content: center;
}

.calc-results-badge {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(194, 154, 104, .12);
  border: 1px solid rgba(194, 154, 104, .25);
  padding: .35rem .8rem;
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.res-block {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.stat-num {
  font-family: var(--font-mono);
  font-size: clamp(2.2rem, 3.2vw, 3.4rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--text);
}

.stat-num--gold {
  color: var(--gold);
  text-shadow: 0 0 25px rgba(194, 154, 104, .45);
  font-size: clamp(2.4rem, 3.5vw, 3.8rem);
}

.stat-lbl {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.res-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(158, 122, 82, .3), transparent);
}

.calc-cta-btn {
  margin-top: .4rem;
  box-shadow: 0 4px 20px rgba(194, 154, 104, .25);
}

/* ── CASES ───────────────────────────────────────────────────────────────── */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid rgba(158, 122, 82, .2);
  padding: 5.5rem 0 3rem;
  background: #08090A;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 2rem;
}

.footer-brand-tag {
  font-family: var(--font-mono);
  font-size: .88rem;
  letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase;
}

.footer-desc {
  font-size: .95rem;
  color: var(--text-sub);
  max-width: 400px;
  margin-top: 1rem;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  font-size: .92rem;
  color: var(--text-sub);
}

.footer-col ul a:hover {
  color: var(--highlight);
}

/* MONUMENTAL AETHER BANNER (Inspirado na imagem de referência HERMES) */
.footer-giant-brand-wrap {
  width: 100%;
  padding: 2.5rem 0 0;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
}

.footer-giant-title {
  font-family: var(--font-serif);
  font-size: clamp(7.5rem, 23vw, 30rem);
  line-height: 0.72;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -.02em;
  color: var(--highlight);
  text-align: center;
  user-select: none;
  white-space: nowrap;
}

.footer-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 0 2.5rem;
}

.footer-logo-img {
  max-width: 150px;
  width: 100%;
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 0 25px rgba(194, 154, 104, .35));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.footer-logo-img:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 35px rgba(214, 190, 161, .7));
}

.footer-bottom {
  border-top: 1px solid rgba(158, 122, 82, .2);
  padding: 1.8rem 0 2rem;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: .76rem;
  color: var(--text-muted);
}

/* ── MODAL ───────────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .88);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-container {
  background: var(--bg-card);
  border: 1px solid var(--gold);
  width: 100%;
  max-width: 620px;
  padding: 3.2rem;
  position: relative;
  box-shadow: 0 28px 65px rgba(0, 0, 0, .7);
}

.modal-close {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  font-size: 1.6rem;
  color: var(--text-muted);
}

.modal-close:hover {
  color: var(--gold);
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--highlight);
  line-height: .95;
  margin-bottom: .9rem;
}

.modal-desc {
  font-size: .98rem;
  color: var(--text-sub);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.3rem;
}

.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  background: rgba(16, 18, 20, .8);
  border: 1px solid rgba(158, 122, 82, .3);
  color: var(--text);
  padding: .8rem 1rem;
  font-family: var(--font-sans);
  font-size: .98rem;
  outline: none;
  transition: border-color .2s;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--gold);
}

/* ── FAQ MODAL ENHANCEMENTS ────────────────────────────────────────────────── */
.faq-modal-container {
  max-width: 680px;
}

.faq-modal-badge {
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: .6rem;
}

.faq-type-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: .4rem;
}

.faq-type-option {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .85rem 1.1rem;
  background: rgba(16, 18, 20, .8);
  border: 1px solid rgba(158, 122, 82, .3);
  cursor: pointer;
  transition: all .25s ease;
  user-select: none;
}

.faq-type-option input[type="radio"] {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.faq-type-option span {
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--text-sub);
  transition: color .2s;
}

.faq-option-icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.faq-type-option:hover {
  border-color: var(--gold);
  background: rgba(194, 154, 104, .08);
}

.faq-type-option.active {
  border-color: var(--highlight);
  background: rgba(194, 154, 104, .15);
  box-shadow: 0 0 15px rgba(194, 154, 104, .2);
}

.faq-type-option.active span {
  color: var(--highlight);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

@media (max-width: 600px) {
  .faq-type-selector,
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

/* ── WHATSAPP BUSINESS FLOATING WIDGET ───────────────────────────────────── */
.wa-widget {
  position: fixed;
  bottom: 2.2rem;
  right: 2.2rem;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.wa-toggle-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #123d28, #071c12);
  border: 1px solid rgba(0, 230, 118, 0.5);
  color: #00e676;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 230, 118, 0.3);
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
  position: relative;
}

.wa-toggle-btn:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 230, 118, 0.55);
  background: linear-gradient(135deg, #195237, #0b2c1c);
}

.wa-badge-pulse {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ff3b30;
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg);
  box-shadow: 0 0 10px rgba(255, 59, 48, 0.6);
  animation: waPulse 2s infinite;
}

@keyframes waPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.18); }
}

.wa-chat-box {
  width: 340px;
  background: rgba(14, 16, 18, 0.97);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(158, 122, 82, 0.35);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(194, 154, 104, 0.1);
  margin-bottom: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all .35s cubic-bezier(.16, 1, .3, 1);
  pointer-events: none;
}

.wa-chat-box.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.wa-chat-header {
  background: linear-gradient(135deg, rgba(194, 154, 104, 0.15), rgba(16, 18, 20, 0.9));
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  border-bottom: 1px solid rgba(158, 122, 82, 0.2);
  position: relative;
}

.wa-avatar-wrap {
  position: relative;
}

.wa-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--btn);
  color: #0b0c0e;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-online-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: #00e676;
  border: 2px solid #0e1012;
  border-radius: 50%;
}

.wa-header-info {
  flex: 1;
}

.wa-header-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--highlight);
}

.wa-header-status {
  font-family: var(--font-mono);
  font-size: .68rem;
  color: var(--text-muted);
}

.wa-close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  padding: .2rem;
  line-height: 1;
}

.wa-close-btn:hover {
  color: var(--gold);
}

.wa-chat-body {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wa-msg-bubble {
  background: rgba(26, 29, 33, 0.9);
  border: 1px solid rgba(158, 122, 82, 0.25);
  border-radius: 8px 8px 8px 2px;
  padding: .9rem 1rem;
  font-size: .88rem;
  color: var(--text);
  line-height: 1.5;
  position: relative;
}

.wa-msg-bubble p {
  margin-bottom: .4rem;
}

.wa-msg-bubble p:last-child {
  margin-bottom: 0;
}

.wa-msg-time {
  display: block;
  font-family: var(--font-mono);
  font-size: .65rem;
  color: var(--text-muted);
  text-align: right;
  margin-top: .4rem;
}

.wa-quick-options {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.wa-option-pill {
  font-family: var(--font-mono);
  font-size: .75rem;
  color: var(--text-sub);
  background: rgba(194, 154, 104, 0.08);
  border: 1px solid rgba(158, 122, 82, 0.3);
  padding: .65rem .85rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all .25s ease;
  display: block;
}

.wa-option-pill:hover {
  background: rgba(194, 154, 104, 0.2);
  border-color: var(--gold);
  color: var(--highlight);
  transform: translateX(3px);
}

.wa-chat-footer {
  padding: 0 1.2rem 1.2rem;
}

.wa-send-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  width: 100%;
  background: #25d366;
  color: #051a0d;
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: .85rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all .25s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.wa-send-btn:hover {
  background: #20bd5a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

/* ── VELOCITY MARQUEE ─────────────────────────────────────────────────────── */
.velocity-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 2.8rem 0;
  background: var(--bg);
  border-top: 1px solid rgba(158, 122, 82, .18);
  border-bottom: 1px solid rgba(158, 122, 82, .18);
  display: flex;
  flex-direction: column;
  gap: .9rem;
  cursor: default;
  user-select: none;
}

.velocity-row {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}

.velocity-track {
  display: inline-flex;
  align-items: center;
  will-change: transform;
  flex-shrink: 0;
}

.vtag {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 3.6rem);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: .04em;
  padding: 0 .8rem;
  transition: color .2s;
}

.vtag:hover {
  color: var(--highlight);
}

.vdot {
  font-family: var(--font-mono);
  font-size: clamp(1rem, 1.8vw, 2rem);
  color: var(--bronze);
  opacity: .5;
  padding: 0 .3rem;
  flex-shrink: 0;
}

.velocity-fade-left,
.velocity-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 12%;
  pointer-events: none;
  z-index: 2;
}

.velocity-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--bg) 20%, transparent);
}

.velocity-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--bg) 20%, transparent);
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 1280px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 1024px) {
  .hero-section {
    padding: calc(var(--header-h) + 2rem) 2rem 3rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-right: 0;
  }

  .demo-grid {
    grid-template-columns: 1fr;
  }

  .calc-box {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cases-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 2rem;
  }

  .header-container {
    padding: 0 2rem;
  }
}

@media (max-width: 768px) {

  .nav-left,
  .nav-right .nav-link {
    display: none;
  }

  .hero-section {
    padding-left: 1.2rem;
  }

  .container {
    padding: 0 1.2rem;
  }

  .header-container {
    padding: 0 1.2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ── FOOTER LOGO ─────────────────────────────────────────────────────────── */
.footer-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(158, 122, 82, .1);
  background: #08090A;
}

.footer-logo-img {
  width: clamp(160px, 22vw, 320px);
  height: auto;
  display: block;
  opacity: .82;
  filter: drop-shadow(0 0 28px rgba(194, 154, 104, .45)) drop-shadow(0 0 8px rgba(214, 190, 161, .2));
  transition: opacity .4s, filter .4s, transform .4s;
  animation: logoFloat 6s ease-in-out infinite;
}

.footer-logo-img:hover {
  opacity: 1;
  filter: drop-shadow(0 0 42px rgba(194, 154, 104, .75)) drop-shadow(0 0 16px rgba(214, 190, 161, .4));
  transform: scale(1.04);
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ══════════════════════════════════════════════════════════════════════════
   [EXPERIMENTAL] PROGRESSIVE BLUR GLOBAL
   Para remover: delete daqui até [/EXPERIMENTAL] + a <div id="global-blur-bottom"> no HTML
   ══════════════════════════════════════════════════════════════════════════ */

/* 1. OVERLAY FIXO NA PARTE INFERIOR DA TELA — acompanha o scroll da página inteira */
#global-blur-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(16, 18, 20, 0.55) 50%,
    rgba(16, 18, 20, 0.92) 100%
  );
  pointer-events: none;
  z-index: 997;
  transition: opacity .3s;
}

/* 2. FADE INFERIOR POR SEÇÃO — dissolve o conteúdo na borda de cada seção */
.hero-section,
.section-pad,
.showcase-light-section,
.site-footer {
  position: relative;
}

.hero-section::after,
.section-pad::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
  z-index: 2;
}

.showcase-light-section::after {
  display: none;
}

/* 3. FADE NA JANELA DE CÓDIGO */
.code-window { position: relative; }
.code-window::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 38%;
  background: linear-gradient(to bottom, transparent 0%, rgba(13, 14, 16, 0.6) 40%, #0D0E10 100%);
  pointer-events: none;
  z-index: 5;
  border-radius: 0 0 6px 6px;
}

/* ══════════════════════════════════════════════════════════════════════════
   [/EXPERIMENTAL]
   ══════════════════════════════════════════════════════════════════════════ */