/* ── Reset ─────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0a073d;
  --secondary: #ff5401;
  --tertiary: #3b82f6;
  --white: #ffffff;
  --gray-100: #f8fafc;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-900: #0f172a;
  --font-title: "Gasoek One", sans-serif;
  --font: "Space Grotesk", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  zoom: 1;
}

body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── BRAND (logo compartilhado) ────── */
.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--secondary);
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  color: #0a073d;
  font-weight: 400;
  font-size: 14px;
}

/* ── STICKY BAR ────────────────────── */
.sticky-bar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(-120%);
  max-width: 960px;
  width: calc(100% - 48px);
  z-index: 90;
  background: #1d1a4c;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 28px;
  border-radius: 60px;
  opacity: 0;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease;
  will-change: transform, opacity;
  pointer-events: none;
}

.sticky-bar.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-bar-container {
  max-width: 1001px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-bar-text {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: -0.01em;
}

.sticky-bar-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.sticky-bar-btn-outline {
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s;
}

.sticky-bar-btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.sticky-bar-btn-primary {
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: var(--secondary);
  transition: all 0.2s;
}

.sticky-bar-btn-primary:hover {
  background: #e64b00;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .sticky-bar {
    width: calc(100% - 32px);
    padding: 10px 16px;
    border-radius: 50px;
  }
  .sticky-bar-text {
    display: none;
  }
  .sticky-bar-container {
    justify-content: center;
  }
  .sticky-bar-btn-outline,
  .sticky-bar-btn-primary {
    font-size: 0.85rem;
    padding: 8px 18px;
  }
}

@media (max-width: 400px) {
  .sticky-bar-btn-outline {
    display: none;
  }
}
