/* ==========================================================================
   MESTRES DOS SINAIS — AGENTE 001 | ESTILOS EXECUTIVOS & MOTION DESIGN
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600;700;800&display=swap');

:root {
  --bg-dark: #05070c;
  --bg-card: rgba(11, 16, 26, 0.90);
  --bg-card-hover: rgba(17, 24, 39, 0.98);
  --border-subtle: rgba(148, 163, 184, 0.14);
  --border-glow: rgba(56, 189, 248, 0.45);
  --primary: #0284c7;
  --accent-cyan: #38bdf8;
  --accent-emerald: #10b981;
  --accent-amber: #f59e0b;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background-color: #0284c7;
  color: #ffffff;
}

code, pre, .font-mono {
  font-family: 'JetBrains Mono', monospace;
}

.font-heading {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  letter-spacing: -0.015em;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 7px;
}
::-webkit-scrollbar-track {
  background: #05070c;
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #38bdf8;
}

/* ==========================================================================
   LOGO BRIGHTENING & GLOW
   ========================================================================= */

.logo-luminous {
  border: 1.5px solid rgba(56, 189, 248, 0.45);
  box-shadow: 0 0 14px rgba(2, 132, 199, 0.35);
  transition: all 0.3s ease;
}

.logo-luminous:hover {
  border-color: rgba(56, 189, 248, 0.75);
  box-shadow: 0 0 20px rgba(2, 132, 199, 0.5);
  transform: scale(1.03);
}

/* ==========================================================================
   INTERACTIVE CARDS & HOVER MOTION DESIGN
   ========================================================================= */

.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.25s ease,
              box-shadow 0.25s ease;
  position: relative;
  will-change: transform, box-shadow;
}

.glass-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.7), 0 0 25px -5px rgba(2, 132, 199, 0.22);
}

.step-card-hover {
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card-hover:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, 0.5);
  background: rgba(15, 24, 40, 0.95);
  box-shadow: 0 10px 24px -5px rgba(56, 189, 248, 0.2);
}

/* Glow Background Orbs */
.glow-circle-cyan {
  position: absolute;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  z-index: 0;
}

.glow-circle-purple {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}

/* ==========================================================================
   EXECUTIVE HEADER & LUXURY NAVIGATION STYLING
   ========================================================================= */

.logo-medallion {
  border-radius: 50%;
  border: 1.5px solid rgba(56, 189, 248, 0.55);
  box-shadow: 0 0 16px rgba(2, 132, 199, 0.35), inset 0 0 8px rgba(56, 189, 248, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-medallion:hover {
  border-color: rgba(56, 189, 248, 0.9);
  box-shadow: 0 0 24px rgba(2, 132, 199, 0.6), inset 0 0 12px rgba(56, 189, 248, 0.35);
  transform: scale(1.04);
}

.nav-link-executive {
  position: relative;
  padding: 7px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: -0.01em;
  text-decoration: none;
}

.nav-link-executive:hover {
  color: #ffffff;
  background: rgba(30, 41, 59, 0.6);
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  border: 1px solid rgba(56, 189, 248, 0.55);
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(2, 132, 199, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap;
}

.btn-header-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn-header-cta:hover::before {
  left: 100%;
}

.btn-header-cta:hover {
  background: linear-gradient(180deg, #0369a1 0%, #075985 100%);
  border-color: rgba(56, 189, 248, 0.85);
  box-shadow: 0 6px 26px rgba(2, 132, 199, 0.55);
  transform: translateY(-1.5px);
}

/* ==========================================================================
   EXECUTIVE BUTTONS
   ========================================================================= */

.btn-executive-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  font-weight: 700;
  border: 1px solid rgba(56, 189, 248, 0.45);
  box-shadow: 0 3px 12px rgba(2, 132, 199, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-executive-primary:hover {
  background: linear-gradient(180deg, #0369a1 0%, #075985 100%);
  border-color: rgba(56, 189, 248, 0.8);
  box-shadow: 0 6px 22px rgba(2, 132, 199, 0.45);
  transform: translateY(-1.5px);
}

.btn-executive-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #d97706 0%, #b45309 100%);
  color: #ffffff;
  font-weight: 800;
  border: 1px solid rgba(251, 191, 36, 0.45);
  box-shadow: 0 3px 14px rgba(217, 119, 6, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-executive-gold:hover {
  background: linear-gradient(180deg, #f59e0b 0%, #d97706 100%);
  border-color: rgba(251, 191, 36, 0.8);
  box-shadow: 0 8px 26px rgba(217, 119, 6, 0.5);
  transform: translateY(-1.5px);
}

.btn-executive-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.65);
  color: #cbd5e1;
  font-weight: 600;
  border: 1px solid rgba(148, 163, 184, 0.25);
  transition: all 0.2s ease;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-executive-outline:hover {
  background: rgba(30, 41, 59, 0.9);
  color: #ffffff;
  border-color: rgba(56, 189, 248, 0.5);
  transform: translateY(-1px);
}

/* ==========================================================================
   TICKER & ANIMATIONS
   ========================================================================= */

@keyframes tickerAnimation {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-wrap {
  overflow: hidden;
  white-space: nowrap;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.ticker-content {
  display: inline-flex;
  animation: tickerAnimation 40s linear infinite;
}

.ticker-wrap:hover .ticker-content {
  animation-play-state: paused;
}

/* ==========================================================================
   EXECUTIVE BUYER TOAST
   ========================================================================= */

.buyer-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  background: rgba(11, 16, 26, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-left: 3px solid #10b981;
  border-radius: 14px;
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: translateY(180%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 330px;
}

.buyer-toast.show {
  transform: translateY(0);
}

/* ==========================================================================
   CUSTOM RANGE SLIDER
   ========================================================================= */

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: #1e293b;
  border-radius: 4px;
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #0284c7;
  border: 2px solid #ffffff;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  transition: transform 0.15s, background 0.15s;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  background: #38bdf8;
}

/* ==========================================================================
   STICKY MOBILE CTA
   ========================================================================= */

.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(5, 7, 12, 0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  padding: 10px 16px;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-mobile-cta.visible {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .sticky-mobile-cta {
    display: none;
  }
}
