/* ==========================================================================
   PIPPO 3D — Design System
   Tokens derivados do logo: navy profundo, azul, violeta, magenta.
   Tipografia: Space Grotesk (display) + Inter (corpo) + JetBrains Mono (dados)
   ========================================================================== */

:root {
  /* Cores */
  --void: #08091420;
  --void: #08091a;
  --panel: #12142a;
  --panel-light: #1a1d3d;
  --panel-border: #2a2d55;
  --blue: #4f86ff;
  --violet: #8b5cf6;
  --magenta: #e946c4;
  --ink: #f3f1f9;
  --muted: #9c9ab8;
  --muted-dim: #6c6a8f;
  --success: #4ade80;

  --gradient-orbit: linear-gradient(135deg, var(--blue) 0%, var(--violet) 50%, var(--magenta) 100%);
  --gradient-orbit-soft: linear-gradient(135deg, rgba(79,134,255,0.15) 0%, rgba(139,92,246,0.15) 50%, rgba(233,70,196,0.15) 100%);

  /* Tipografia */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Layout */
  --max-width: 1240px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --nav-height: 76px;
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  background: var(--void);
  background-image:
    radial-gradient(ellipse 900px 500px at 15% -10%, rgba(139,92,246,0.16), transparent 60%),
    radial-gradient(ellipse 700px 500px at 100% 10%, rgba(233,70,196,0.10), transparent 55%),
    radial-gradient(ellipse 800px 600px at 50% 100%, rgba(79,134,255,0.10), transparent 60%);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; }

:focus-visible {
  outline: 2px solid var(--magenta);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gradient-orbit);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.08;
}

h2.section-title {
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 14px;
}

.section-lede {
  color: var(--muted);
  font-size: 17px;
  max-width: 560px;
  margin-bottom: 48px;
}

section { position: relative; padding: 110px 0; }

.grad-text {
  background: var(--gradient-orbit);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 100px;
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1), box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-orbit);
  color: #08091a;
  box-shadow: 0 8px 30px -8px rgba(139,92,246,0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 34px -6px rgba(233,70,196,0.55); }
.btn-secondary {
  background: rgba(255,255,255,0.04);
  color: var(--ink);
  border: 1px solid var(--panel-border);
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: var(--violet); }
.btn-whatsapp {
  background: #12142a;
  color: var(--ink);
  border: 1px solid rgba(74,222,128,0.4);
}
.btn-whatsapp:hover { background: rgba(74,222,128,0.1); border-color: var(--success); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 13.5px; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(8,9,26,0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s ease;
}
.navbar .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand img { height: 40px; width: 40px; border-radius: 10px; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: 0.02em; }
.brand-name span { color: var(--violet); }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 14.5px;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover { color: var(--ink); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.icon-btn {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--panel-border);
  position: relative;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.icon-btn:hover { border-color: var(--violet); background: rgba(139,92,246,0.12); }
.icon-btn svg { width: 19px; height: 19px; }
.cart-badge {
  position: absolute;
  top: -5px; right: -5px;
  background: var(--magenta);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  min-width: 19px; height: 19px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
  box-shadow: 0 0 0 2px var(--void);
}
.cart-badge[data-count="0"] { display: none; }

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
}
.hero-copy h1 {
  font-size: clamp(40px, 5.6vw, 72px);
  margin-bottom: 22px;
}
.hero-copy p.lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 38px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 46px; }
/* Orbit — elemento assinatura */
.orbit-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit-core {
  position: relative;
  width: 42%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #3a3f78 0%, #171933 55%, #0b0c1f 100%);
  box-shadow: 0 0 90px -10px rgba(139,92,246,0.45), inset -14px -14px 34px rgba(0,0,0,0.55), inset 8px 8px 24px rgba(139,92,246,0.15);
  z-index: 3;
}
.orbit-nozzle {
  position: absolute;
  top: -16%;
  left: 50%;
  transform: translateX(-50%);
  width: 20%;
  z-index: 4;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.5));
}
.orbit-ring {
  position: absolute;
  border: 1.5px solid;
  border-radius: 50%;
  border-image: var(--gradient-orbit) 1;
  opacity: 0.55;
}
.orbit-ring.r1 { width: 78%; height: 78%; top: 11%; left: 11%; transform: rotate(-18deg); animation: spin 22s linear infinite; }
.orbit-ring.r2 { width: 100%; height: 100%; top: 0; left: 0; transform: rotate(8deg); animation: spin 34s linear infinite reverse; opacity: 0.3; }
@keyframes spin { to { transform: rotate(calc(-18deg + 360deg)); } }
.orbit-ring.r2 { animation-name: spin2; }
@keyframes spin2 { to { transform: rotate(calc(8deg - 360deg)); } }

.orbit-dot {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 16px 3px rgba(233,70,196,0.8);
  top: 50%; left: 50%;
  transform-origin: 0 0;
  animation: orbit-travel 7s linear infinite;
}
@keyframes orbit-travel {
  from { transform: rotate(0deg) translateX(150px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(150px) rotate(-360deg); }
}
.orbit-sparkle {
  position: absolute;
  color: var(--blue);
  opacity: 0.7;
  animation: twinkle 3.2s ease-in-out infinite;
}
.orbit-sparkle:nth-child(2) { animation-delay: 1.1s; color: var(--magenta); }
.orbit-sparkle:nth-child(3) { animation-delay: 2s; color: var(--violet); }
@keyframes twinkle { 0%,100% { opacity: 0.15; transform: scale(0.8); } 50% { opacity: 0.9; transform: scale(1.1); } }

/* ---------- Marquee de materiais ---------- */
.marquee-wrap {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0;
  overflow: hidden;
  background: rgba(255,255,255,0.015);
}
.marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 26s linear infinite;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-track span {
  font-family: var(--font-mono);
  font-size: 13.5px;
  letter-spacing: 0.06em;
  color: var(--muted-dim);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.marquee-track span::before { content: '◆'; color: var(--violet); font-size: 8px; }

/* ---------- Catálogo ---------- */
.catalog-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 44px;
}
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-tab {
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 500;
  border: 1px solid var(--panel-border);
  color: var(--muted);
  transition: all 0.2s ease;
}
.filter-tab:hover { color: var(--ink); border-color: var(--violet); }
.filter-tab.active { background: var(--gradient-orbit); color: #08091a; border-color: transparent; font-weight: 700; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
  gap: 22px;
}
.product-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1), border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-5px); border-color: var(--violet); box-shadow: 0 20px 40px -18px rgba(139,92,246,0.4); }
.product-thumb {
  aspect-ratio: 1/1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-thumb svg { width: 46%; height: 46%; position: relative; z-index: 2; filter: drop-shadow(0 8px 18px rgba(0,0,0,0.35)); }
.product-thumb > img { width: 100%; height: 100%; object-fit: cover; }
.product-tag {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(8,9,26,0.65);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 5px 10px;
  border-radius: 100px;
  z-index: 3;
}
.product-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-body h4 { font-size: 16.5px; }
.product-body p { font-size: 13.5px; color: var(--muted); flex: 1; }
.product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.product-price { font-family: var(--font-mono); font-size: 18px; font-weight: 700; }
.product-price small { color: var(--muted-dim); font-size: 11px; font-weight: 400; }
.add-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--panel-border);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
}
.add-btn:hover { background: var(--gradient-orbit); color: #08091a; border-color: transparent; transform: rotate(90deg); }
.add-btn svg { width: 17px; height: 17px; }

/* ---------- Carrinho (drawer) ---------- */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(4,5,14,0.6);
  backdrop-filter: blur(3px);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: min(420px, 100%);
  background: #0d0e22;
  border-left: 1px solid var(--panel-border);
  z-index: 301;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.2,.85,.2,1);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 26px;
  border-bottom: 1px solid var(--panel-border);
}
.cart-header h3 { font-size: 19px; }
.cart-close { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.05); }
.cart-close:hover { background: rgba(255,255,255,0.1); }

.cart-items { flex: 1; overflow-y: auto; padding: 18px 26px; display: flex; flex-direction: column; gap: 16px; }
.cart-empty { text-align: center; color: var(--muted); padding: 60px 20px; font-size: 14.5px; }
.cart-empty svg { width: 46px; height: 46px; margin: 0 auto 16px; opacity: 0.4; }

.cart-item { display: flex; gap: 14px; align-items: center; }
.cart-item-thumb {
  width: 56px; height: 56px; border-radius: 10px;
  background: var(--panel-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cart-item-thumb svg { width: 26px; height: 26px; }
.cart-item-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info h5 { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.cart-item-info span { font-family: var(--font-mono); font-size: 12.5px; color: var(--muted); }
.qty-control { display: flex; align-items: center; gap: 9px; }
.qty-control button {
  width: 24px; height: 24px; border-radius: 6px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--panel-border);
  font-size: 15px; display: flex; align-items: center; justify-content: center;
}
.qty-control button:hover { border-color: var(--violet); }
.qty-control b { font-family: var(--font-mono); font-size: 13px; min-width: 14px; text-align: center; }
.cart-item-remove { color: var(--muted-dim); }
.cart-item-remove:hover { color: var(--magenta); }

.cart-footer { padding: 22px 26px 28px; border-top: 1px solid var(--panel-border); }
.cart-subtotal { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.cart-subtotal span { color: var(--muted); font-size: 14px; }
.cart-subtotal b { font-family: var(--font-mono); font-size: 22px; }
.cart-note { font-size: 12px; color: var(--muted-dim); margin-bottom: 18px; }

/* ---------- Para Lojas ---------- */
.lojas-section { background: var(--panel); border-top: 1px solid var(--panel-border); border-bottom: 1px solid var(--panel-border); }
.stand-photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--panel-border);
}
.stand-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.stand-photo-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(8,9,26,0.55) 0%, transparent 45%);
}
.stand-caption {
  position: absolute; bottom: 20px; left: 20px; right: 20px; z-index: 2;
  font-family: var(--font-mono); font-size: 12.5px; color: var(--ink);
  background: rgba(8,9,26,0.55); backdrop-filter: blur(6px);
  padding: 10px 14px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.1);
}

.model-switch {
  display: flex;
  background: var(--panel-light);
  border: 1px solid var(--panel-border);
  border-radius: 100px;
  padding: 5px;
  margin-bottom: 30px;
  gap: 4px;
}
.model-switch button {
  flex: 1;
  padding: 12px 16px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.25s ease;
  text-align: center;
}
.model-switch button.active { background: var(--gradient-orbit); color: #08091a; }

.model-panel { display: none; }
.model-panel.active { display: block; animation: fadein 0.35s ease; }
@keyframes fadein { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.calc-card {
  background: var(--panel-light);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: 26px;
}
.calc-row { margin-bottom: 20px; }
.calc-row label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 9px; font-weight: 500; }
.calc-input-wrap { position: relative; }
.calc-input-wrap span.prefix {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-mono); color: var(--muted); font-size: 15px;
}
.calc-input-wrap input[type="number"] {
  width: 100%;
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--panel-border);
  border-radius: 10px;
  padding: 13px 16px 13px 34px;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 16px;
  transition: border-color 0.2s ease;
}
.calc-input-wrap input[type="number"]:focus { border-color: var(--violet); outline: none; }
input[type="range"] {
  width: 100%;
  accent-color: var(--violet);
}
.calc-result {
  background: rgba(0,0,0,0.28);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
}
.calc-result-label { font-size: 13px; color: var(--muted); }
.calc-result-value { font-family: var(--font-mono); font-size: 24px; font-weight: 700; }
.calc-result-value.positive { color: var(--success); }
.calc-split-bar {
  display: flex; height: 34px; border-radius: 8px; overflow: hidden; margin: 14px 0 6px;
  border: 1px solid var(--panel-border);
}
.calc-split-bar div { display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 12px; font-weight: 700; }
.split-you { background: var(--gradient-orbit); color: #08091a; }
.split-store { background: rgba(255,255,255,0.06); color: var(--ink); }

.lojas-benefits { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.lojas-benefit { display: flex; gap: 14px; align-items: flex-start; }
.lojas-benefit .ico {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  background: var(--gradient-orbit-soft); border: 1px solid var(--panel-border);
  display: flex; align-items: center; justify-content: center;
}
.lojas-benefit .ico svg { width: 16px; height: 16px; color: var(--violet); }
.lojas-benefit p { font-size: 13.5px; color: var(--muted); }
.lojas-benefit strong { color: var(--ink); display: block; font-size: 14.5px; margin-bottom: 2px; }

/* ---------- Marcas / Personalização ---------- */
.brands-section { position: relative; }
.brands-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 64px);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.brands-card::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: var(--gradient-orbit);
  filter: blur(140px);
  opacity: 0.14;
  top: -200px; right: -150px;
  border-radius: 50%;
}
.brands-steps { display: flex; flex-direction: column; gap: 22px; position: relative; z-index: 1; }
.brands-step { display: flex; gap: 16px; align-items: flex-start; }
.brands-step .num {
  font-family: var(--font-mono); font-size: 13px; color: var(--void);
  width: 30px; height: 30px; border-radius: 50%; background: var(--gradient-orbit);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-weight: 700;
}
.brands-step h5 { font-size: 15px; margin-bottom: 3px; }
.brands-step p { font-size: 13.5px; color: var(--muted); }
.brands-form {
  position: relative; z-index: 1;
  background: rgba(0,0,0,0.22);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: 26px;
}
.brands-form h4 { font-size: 17px; margin-bottom: 18px; }
.form-field { margin-bottom: 14px; }
.form-field label { display: block; font-size: 12.5px; color: var(--muted); margin-bottom: 7px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--panel-border);
  border-radius: 9px;
  padding: 11px 14px;
  color: var(--ink);
  font-size: 14px;
  transition: border-color 0.2s ease;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--violet); outline: none; }
.form-field textarea { resize: vertical; min-height: 80px; }

/* ---------- Sobre / Materiais mini ---------- */
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.about-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: 28px;
}
.about-card .ico {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--gradient-orbit-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  border: 1px solid var(--panel-border);
}
.about-card .ico svg { width: 22px; height: 22px; color: var(--blue); }
.about-card h4 { font-size: 16.5px; margin-bottom: 8px; }
.about-card p { font-size: 13.5px; color: var(--muted); }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--panel-border);
  padding: 60px 0 30px;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 40px;
  margin-bottom: 46px;
}
.footer-brand p { color: var(--muted); font-size: 13.5px; max-width: 280px; margin-top: 12px; }
.footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h6 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted-dim); margin-bottom: 14px; font-family: var(--font-mono); }
.footer-col a, .footer-col span { display: block; font-size: 13.5px; color: var(--muted); margin-bottom: 10px; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding-top: 24px; border-top: 1px solid var(--panel-border);
  font-size: 12.5px; color: var(--muted-dim);
}
.social-row { display: flex; gap: 10px; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: #12142a; border: 1px solid var(--violet);
  padding: 14px 22px; border-radius: 100px;
  font-size: 13.5px; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  z-index: 400; opacity: 0; pointer-events: none;
  transition: all 0.35s cubic-bezier(.2,.85,.2,1);
  box-shadow: 0 12px 30px -8px rgba(139,92,246,0.5);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.toast svg { width: 16px; height: 16px; color: var(--success); flex-shrink: 0; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsivo ---------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .orbit-stage { max-width: 380px; }
  .lojas-section .container > div { grid-template-columns: 1fr !important; }
  .brands-card { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    flex-direction: column;
    background: rgba(8,9,26,0.97);
    backdrop-filter: blur(16px);
    padding: 20px 24px 28px;
    gap: 20px;
    border-bottom: 1px solid var(--panel-border);
  }
  .nav-links.mobile-open { display: flex; }
  .nav-toggle { display: flex; }
  section { padding: 76px 0; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
}
