/* ============================================================
   NAYRA IMOBILIÁRIA — DESIGN CINEMATOGRÁFICO & SCROLLYTELLING
   Padrão de Engenharia & Direção de Arte (Referência: Tiago Pro)
   ============================================================ */

:root {
  --bg-deep: #05070f;
  --bg-surface: #0a0e1c;
  --bg-card: rgba(10, 14, 30, 0.68);
  --bg-card-hover: rgba(16, 22, 45, 0.85);
  
  --gold: #d4af37;
  --gold-light: #f3d278;
  --gold-dark: #9a7d20;
  --gold-glow: rgba(212, 175, 55, 0.4);
  
  --blue: #1d4ed8;
  --cyan: #38bdf8;
  --green-whatsapp: #25D366;
  --green-glow: rgba(37, 211, 102, 0.4);

  --text-pure: #ffffff;
  --text-muted: #cbd5e1;
  --text-subtle: #7a869e;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(212, 175, 55, 0.35);

  --font-display: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'Space Grotesk', monospace;
  
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-deep);
  color: var(--text-pure);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

body {
  position: relative;
  min-height: 100vh;
  background: var(--bg-deep);
  overflow-x: clip;
}

/* Ambient Background Layers */
.ambient-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background: 
    radial-gradient(ellipse 60% 40% at 20% 15%, rgba(212, 175, 55, 0.08), transparent 70%),
    radial-gradient(ellipse 50% 50% at 85% 65%, rgba(30, 64, 175, 0.10), transparent 70%),
    radial-gradient(ellipse 70% 30% at 50% 95%, rgba(212, 175, 55, 0.05), transparent 70%);
}

.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.15;
  background-image: radial-gradient(rgba(255, 255, 255, 0.22) 0.6px, transparent 0.6px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
}

/* Typography Helpers */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text-pure);
}

.gradient-text-gold {
  background: linear-gradient(110deg, #ffffff 0%, #f7df94 40%, #d4af37 75%, #b58d20 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.gold-glow {
  color: var(--gold-light);
  text-shadow: 0 0 25px rgba(212, 175, 55, 0.55);
}

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

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 28px;
  background: rgba(5, 7, 15, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: padding 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.site-header.scrolled {
  padding: 11px 24px;
  background: rgba(4, 6, 13, 0.90);
  border-bottom-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-emblem {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f7df94, #d4af37);
  color: #060812;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}

.logo-text .dot {
  color: var(--gold);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.25s var(--ease);
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  color: #4ade80;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: linear-gradient(135deg, #d4af37, #9a7d20);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  color: #060812;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn-header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.55);
}

.btn-cta-short {
  display: none;
}

.btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.25s var(--ease);
}

.btn-header-cta:hover .btn-arrow {
  transform: translateX(3px);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 6px;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}

.mobile-drawer.open {
  display: block;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
}

.drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: #080c18;
  border-left: 1px solid var(--border-gold);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation: slide-in 0.3s var(--ease);
}

@keyframes slide-in {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

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

.drawer-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 28px 0;
}

.drawer-link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.drawer-link:hover {
  color: var(--gold-light);
}

.drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ============================================================
   SEÇÃO 1: HERO SCROLLYTELLING (CONSTRUÇÃO TIMELAPSE DE ALTO PADRÃO)
   ============================================================ */
.hero-scroll-wrapper {
  position: relative;
  height: 520vh;
  z-index: 10;
}

.hero-sticky-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #020409;
}

.hero-media-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero-video,
.hero-poster-fallback {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  will-change: transform;
}

.hero-poster-fallback {
  background-image: url('hero-poster.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.6s var(--ease);
}

#hero-video {
  z-index: 2;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}

.hero-media-wrapper.video-loaded #hero-video {
  opacity: 1;
}

.hero-media-wrapper.video-loaded .hero-poster-fallback {
  opacity: 0;
}

/* Radial Scrim */
.hero-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background: radial-gradient(ellipse 95% 85% at 50% 50%, rgba(3, 5, 12, 0.15) 20%, rgba(3, 5, 12, 0.72) 100%);
}

/* Loading Ring */
.hero-loader {
  position: absolute;
  bottom: 28px;
  right: 28px;
  z-index: 12;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
}

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

.ring-svg {
  width: 32px;
  height: 32px;
  transform: rotate(-90deg);
}

.loader-text {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-light);
}

/* Tiago Pro Ring Wrap and Cue */
.ring-wrap {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 34px;
  height: 34px;
  color: var(--gold);
  opacity: 0.85;
  z-index: 15;
}

.ring-wrap svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  z-index: 15;
  pointer-events: none;
}

.cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 22px;
  margin: 6px auto 0;
  background: linear-gradient(var(--gold), transparent);
  animation: cuedrop 2.4s ease-in-out infinite;
}

@keyframes cuedrop {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Captions Container */
.hero-captions-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  pointer-events: none;
}

.caption-band {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  will-change: opacity, transform;
}

.caption-band.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.band-content {
  max-width: 520px;
  background: rgba(5, 8, 18, 0.52);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 26px 30px;
  border-radius: 22px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.55), 0 0 30px rgba(212, 175, 55, 0.12);
}

.band-1 .band-content {
  margin-left: 0;
  text-align: left;
}

.band-2 .band-content {
  margin-left: auto;
  text-align: right;
}

.band-3 .band-content {
  margin-left: 0;
  text-align: left;
}

.band-4 .band-content {
  margin-left: auto;
  text-align: right;
}

.band-5 .band-content {
  margin: 0 auto;
  text-align: center;
  max-width: 580px;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  background: rgba(212, 175, 55, 0.10);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-bottom: 14px;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.15);
}

.sparkle {
  color: #fff;
}

.hero-headline {
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.hero-subheadline {
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 12px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.hero-lead {
  font-size: clamp(13.5px, 1.1vw, 15.5px);
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 18px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* Metrics row in hero */
.mini-metrics-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.band-2 .mini-metrics-row {
  justify-content: flex-end;
}

.metric-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 10px;
  text-align: center;
}

.metric-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--gold-light);
}

.metric-desc {
  font-size: 9.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.scroll-prompt {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.75;
  margin-top: 10px;
}

.mouse-icon {
  width: 18px;
  height: 28px;
  border: 1.5px solid var(--gold-light);
  border-radius: 12px;
  position: relative;
}

.mouse-icon .wheel {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 5px;
  background: var(--gold-light);
  border-radius: 2px;
  animation: wheel 1.6s infinite ease-in-out;
}

@keyframes wheel {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 8px); opacity: 0; }
}

.prompt-label {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* Batida 5: Final CTA */
.hero-final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  background: linear-gradient(135deg, #d4af37, #b58d20);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 100px;
  color: #060812;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.45);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 38px rgba(212, 175, 55, 0.65);
}

.btn-primary.glow-gold {
  background: linear-gradient(135deg, #f5d77f, #d4af37);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.btn-primary svg,
.btn-secondary svg,
.btn-header-cta svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  flex-shrink: 0;
  display: inline-block;
}

.whatsapp-icon {
  fill: #060812;
}

.cta-direct-phone {
  font-size: 12.5px;
  color: var(--text-muted);
}

.cta-direct-phone strong {
  color: var(--gold-light);
}

/* ============================================================
   TICKER & DIVIDERS
   ============================================================ */
.ticker-banner {
  overflow: hidden;
  background: rgba(212, 175, 55, 0.08);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 12px 0;
  position: relative;
  z-index: 20;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: ticker-slide 28s linear infinite;
  gap: 20px;
}

.ticker-track span {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-light);
}

.ticker-track i {
  font-style: normal;
  color: var(--gold);
}

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

.section-divider-aurora {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 30px 0;
  opacity: 0.6;
}

.divider-line {
  height: 1px;
  width: 120px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
}

.divider-gem {
  color: var(--gold);
  font-size: 14px;
}

/* ============================================================
   SEÇÕES GERAIS & CARDS
   ============================================================ */
.section-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 90px 24px;
  position: relative;
  z-index: 10;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 50px auto;
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 3.6vw, 44px);
  margin-bottom: 16px;
}

.section-description {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Cards Grid (Benefícios) */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.interactive-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 30px 26px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  overflow: hidden;
}

.interactive-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.15);
}

.card-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.card-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}

.card-icon-box svg {
  width: 22px;
  height: 22px;
}

.card-badge {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-subtle);
}

.card-title {
  font-size: 19px;
  margin-bottom: 12px;
}

.card-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.card-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.card-tags li {
  font-size: 11px;
  font-family: var(--font-mono);
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  color: var(--text-muted);
}

/* ============================================================
   SEÇÃO 3: O COMPARATIVO (TABELA INSPIRADA NO TIAGOPRO)
   ============================================================ */
.sec-watermark {
  position: absolute;
  top: 40px;
  right: 4vw;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(110px, 14vw, 180px);
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(212, 175, 55, 0.12);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
}

.cmp-container {
  position: relative;
  z-index: 2;
  margin-top: 30px;
  margin-bottom: 60px;
}

.cmp-table-wrapper {
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: rgba(7, 10, 22, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 35px rgba(212, 175, 55, 0.1);
}

.cmp-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

.cmp-table thead tr th {
  padding: 24px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cmp-table tbody tr th {
  padding: 18px 22px;
  font-family: var(--font-body);
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cmp-table tbody tr td {
  padding: 18px 22px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Destaque para a Coluna da Nayra Imobiliária */
.th-us {
  background: rgba(212, 175, 55, 0.12);
  border-left: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-top: 2px solid var(--gold);
  border-radius: 16px 16px 0 0;
  text-align: center;
}

.badge-us {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #060812;
  background: linear-gradient(135deg, #f5d77f, #d4af37);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}

.us-title {
  display: block;
  font-size: 16px;
  color: #fff;
}

.us-sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold-light);
  font-weight: 400;
}

.td-us {
  background: rgba(212, 175, 55, 0.08);
  border-left: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  color: #fff !important;
  font-weight: 600;
}

.cmp-table tbody tr:last-child .td-us {
  border-bottom: 2px solid var(--gold);
  border-radius: 0 0 16px 16px;
}

.badge-check {
  display: inline-block;
  color: #22c55e;
  font-weight: 800;
  margin-right: 6px;
}

.badge-cross {
  display: inline-block;
  color: #ef4444;
  font-weight: 800;
  margin-right: 6px;
}

/* Métricas Dashboard */
.metrics-dashboard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  background: rgba(10, 14, 30, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 36px 30px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.metric-block {
  text-align: center;
}

.metric-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 3.8vw, 44px);
  color: var(--gold-light);
  margin-bottom: 8px;
}

.metric-title {
  font-weight: 700;
  font-size: 14.5px;
  color: #fff;
  margin-bottom: 6px;
}

.metric-sub {
  font-size: 12px;
  color: var(--text-subtle);
}

/* ============================================================
   SEÇÃO 4: CONTATO & CHAMADA PARA AÇÃO
   ============================================================ */
.contact-box-wrapper {
  max-width: 820px;
  margin: 0 auto;
}

.contact-card {
  background: linear-gradient(135deg, rgba(12, 16, 35, 0.88), rgba(7, 10, 24, 0.95));
  border: 1px solid var(--border-gold);
  border-radius: 26px;
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(212, 175, 55, 0.15);
}

.contact-badge {
  margin-bottom: 20px;
}

.contact-heading {
  font-size: clamp(26px, 3.4vw, 40px);
  margin-bottom: 16px;
}

.contact-sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 32px auto;
  line-height: 1.6;
}

.btn-whatsapp-pulse {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 100px;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.btn-whatsapp-pulse:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.6);
}

.btn-whatsapp-pulse svg {
  width: 24px;
  height: 24px;
}

.contact-direct-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
  text-align: left;
}

.direct-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid var(--border-subtle);
}

.direct-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}

.direct-icon svg {
  width: 20px;
  height: 20px;
}

.direct-item strong {
  display: block;
  font-size: 13px;
  color: #fff;
}

.direct-item span {
  font-size: 13px;
  color: var(--gold-light);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  background: #04050a;
  padding: 60px 24px 30px 24px;
  position: relative;
  z-index: 10;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-tagline {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 16px 0;
  max-width: 380px;
}

.footer-legal {
  font-size: 12px;
  color: var(--text-subtle);
  font-family: var(--font-mono);
}

.footer-heading {
  font-size: 15px;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}

.footer-nav, .footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13.5px;
  transition: color 0.2s var(--ease);
}

.footer-nav a:hover {
  color: var(--gold-light);
}

.footer-contact-list li {
  font-size: 13.5px;
  color: var(--text-muted);
}

.highlight-link {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 700;
  display: block;
  margin-top: 2px;
}

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  font-size: 12px;
  color: var(--text-subtle);
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 26px;
  left: 26px;
  z-index: 150;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  text-decoration: none;
  transition: transform 0.25s var(--ease);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
}

.wa-tooltip {
  position: absolute;
  left: 68px;
  background: #080c18;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid var(--border-gold);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.floating-whatsapp:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   RESPONSIVIDADE MOBILE (TABLETS & SMARTPHONES)
   ============================================================ */
@media (max-width: 960px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .metrics-dashboard {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 12px 16px;
  }

  .status-indicator .status-label {
    display: none;
  }

  .btn-cta-text {
    display: none;
  }

  .btn-cta-short {
    display: inline;
  }

  .hero-scroll-wrapper {
    height: 480vh;
  }

  /* Posiciona os cards na parte inferior no celular para o drone ficar visível */
  .caption-band {
    justify-content: flex-end;
    padding-bottom: clamp(24px, 5.5vh, 45px);
  }

  .band-content {
    margin: 0 auto !important;
    text-align: center !important;
    width: calc(100% - 24px);
    max-width: 440px;
    padding: 22px 18px;
  }

  .band-2 .mini-metrics-row {
    justify-content: center;
  }

  .hero-headline {
    font-size: clamp(22px, 6vw, 29px);
  }

  .hero-subheadline {
    font-size: clamp(19px, 5.2vw, 24px);
  }

  .hero-lead {
    font-size: 13px;
    line-height: 1.5;
  }

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

  .metrics-dashboard {
    grid-template-columns: 1fr 1fr;
    padding: 24px 16px;
  }

  .contact-card {
    padding: 32px 20px;
  }

  .contact-direct-grid {
    grid-template-columns: 1fr;
  }

  .cmp-table thead tr th,
  .cmp-table tbody tr th,
  .cmp-table tbody tr td {
    padding: 14px 12px;
    font-size: 12.5px;
  }
}
