@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Sora:wght@300;400;600;700;800&display=swap');

:root {
  --bg-deep: #0a0a1e;
  --bg-surface: #0f0f2a;
  --bg-card: #12122e;
  --neon-cyan: #00d4ff;
  --neon-blue: #0088ff;
  --neon-magenta: #ff00ff;
  --neon-pink: #ff3399;
  --neon-orange: #ff6b35;
  --neon-purple: #8b5cf6;
  --accent: #00d4ff;
  --accent-2: #ff00ff;
  --text-light: #eef0ff;
  --text-soft: #a0a8cc;
  --text-muted: #5a6080;
  --font-display: 'Sora', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-light);
  overflow-x: hidden;
}

/* ---- organic background texture ---- */

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(0, 136, 255, 0.15), transparent),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(139, 92, 246, 0.12), transparent),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(0, 212, 255, 0.05), transparent),
    radial-gradient(1px 1px at 15% 22%, rgba(0, 212, 255, 0.4), transparent),
    radial-gradient(1px 1px at 42% 8%, rgba(255, 0, 255, 0.3), transparent),
    radial-gradient(1.5px 1.5px at 73% 45%, rgba(0, 212, 255, 0.35), transparent),
    radial-gradient(1px 1px at 90% 15%, rgba(255, 0, 255, 0.2), transparent),
    radial-gradient(1px 1px at 33% 60%, rgba(0, 212, 255, 0.3), transparent),
    radial-gradient(1.2px 1.2px at 65% 80%, rgba(139, 92, 246, 0.2), transparent),
    radial-gradient(1px 1px at 8% 75%, rgba(0, 212, 255, 0.35), transparent);
  pointer-events: none;
  z-index: 0;
}

/* ---- organic floating blobs ---- */

.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  will-change: transform;
}

.blob-1 {
  width: 700px;
  height: 700px;
  top: -200px;
  right: -150px;
  background: radial-gradient(circle, rgba(0, 136, 255, 0.25), transparent);
  animation: blob-float 20s ease-in-out infinite;
}

.blob-2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(255, 0, 255, 0.2), transparent);
  animation: blob-float 25s ease-in-out infinite reverse;
}

.blob-3 {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 60%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15), transparent);
  animation: blob-float 18s ease-in-out infinite 5s;
  will-change: transform;
}

@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 40px) scale(0.95); }
}

/* ---- grain overlay ---- */

body::after {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.4'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 1;
}

/* ============ HEADER ============ */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 5rem;
  background: linear-gradient(180deg, rgba(7, 5, 15, 0.9), transparent);
}

.logo {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.logo-icon {
  position: relative;
  width: 44px;
  height: 44px;
  overflow: hidden;
}

.planet-body {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 35% 35%, var(--neon-cyan), var(--neon-blue));
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.4), inset -4px -4px 10px rgba(0,0,0,0.3);
}

.planet-ring {
  position: absolute;
  width: 44px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateX(70deg);
  border: 2px solid rgba(0, 212, 255, 0.4);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.rocket {
  position: absolute;
  font-size: 0.8rem;
  top: -6px;
  right: -8px;
  animation: rocket-orbit 6s linear infinite;
  transform-origin: 12px 24px;
}

@keyframes rocket-orbit {
  from { transform: rotate(0deg) translateY(-28px) rotate(0deg); }
  to { transform: rotate(360deg) translateY(-28px) rotate(-360deg); }
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 3px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  text-shadow: none;
}

.logo-text small {
  display: block;
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 5px;
  -webkit-text-fill-color: var(--text-muted);
  margin-top: 2px;
}

nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

nav a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 1px;
  position: relative;
  padding: 0.2rem 0;
  transition: color 0.4s ease;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--neon-cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

nav a:hover {
  color: var(--neon-cyan);
}

nav a:hover::after {
  transform: scaleX(1);
}

/* ============ HERO ============ */

.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 5rem 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  max-width: 1300px;
}

.hero-content {
  position: relative;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-tag::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--neon-cyan);
  opacity: 0.6;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

.hero h1 .line-gradient {
  display: block;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue), var(--neon-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 .line-soft {
  display: block;
  font-weight: 300;
  color: var(--text-soft);
  font-size: 0.65em;
  letter-spacing: 0;
  margin-top: 0.3rem;
}

.hero p {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.btn-primary {
  padding: 1rem 2.8rem;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
  color: var(--bg-deep);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #33ddff, var(--neon-cyan));
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(0, 212, 255, 0.5), 0 15px 40px rgba(0, 212, 255, 0.2);
}

.btn-secondary {
  padding: 1rem 2.8rem;
  background: transparent;
  color: var(--neon-magenta);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255, 0, 255, 0.3);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.1);
}

.btn-secondary:hover {
  border-color: var(--neon-magenta);
  background: rgba(255, 0, 255, 0.06);
  box-shadow: 0 0 35px rgba(255, 0, 255, 0.25);
  color: var(--neon-magenta);
}

/* ---- hero visual (right side) ---- */

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-shape {
  position: relative;
  width: 380px;
  height: 380px;
}

.hero-shape-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 50%;
  animation: ring-pulse 8s ease-in-out infinite;
}

.hero-shape-ring:nth-child(1) { inset: 10%; animation-delay: 0s; }
.hero-shape-ring:nth-child(2) { inset: 25%; animation-delay: -2s; border-color: rgba(255, 0, 255, 0.1); }
.hero-shape-ring:nth-child(3) { inset: 40%; animation-delay: -4s; border-color: rgba(139, 92, 246, 0.1); }

@keyframes ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.08); opacity: 1; }
}

.hero-shape-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at 40% 35%, rgba(0, 212, 255, 0.2), rgba(255, 0, 255, 0.1), transparent);
  border-radius: 50%;
  animation: core-breathe 6s ease-in-out infinite;
}

@keyframes core-breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.8; }
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
}

.hero-stat {
  position: relative;
}

.hero-stat + .hero-stat {
  padding-left: 3rem;
}

.hero-stat + .hero-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(240, 235, 229, 0.06);
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0.4rem;
}

/* ============ SECTION COMMON ============ */

section {
  position: relative;
  z-index: 2;
  padding: 7rem 5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 1rem;
  font-weight: 400;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-subtitle {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 500px;
}

/* ============ COMO FUNCIONA ============ */

.como-funciona {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.como-funciona-text .section-title {
  margin-bottom: 1.5rem;
}

.steps-flow {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.steps-flow::before {
  content: '';
  position: absolute;
  left: calc(1rem + 20px);
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(180deg, var(--neon-cyan), var(--neon-magenta), var(--neon-purple));
  opacity: 0.3;
}

.step-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding-left: 1rem;
}

.step-marker {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid rgba(0, 212, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--neon-cyan);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.step-item:hover .step-marker {
  background: var(--neon-cyan);
  color: var(--bg-deep);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.4);
}

.step-body h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  letter-spacing: 0.5px;
}

.step-body p {
  color: var(--text-soft);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ============ CATEGORIAS ============ */

.categorias {
  text-align: center;
}

.categorias .section-subtitle {
  margin: 0 auto 0;
}

.categorias-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.categoria-card {
  position: relative;
  padding: 3.5rem 2rem;
  background: var(--bg-surface);
  border: 1px solid rgba(240, 235, 229, 0.04);
  border-radius: 24px;
  text-decoration: none;
  color: var(--text-light);
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
}

.categoria-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(0, 212, 255, 0.06), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.categoria-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 212, 255, 0.2);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.1);
}

.categoria-card:hover::before {
  opacity: 1;
}

.categoria-icon {
  font-size: 2.5rem;
  position: relative;
  z-index: 1;
}

.categoria-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.categoria-card span {
  font-size: 0.75rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

/* ============ PRODUTOS DESTAQUE ============ */

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

.produtos-destaque .section-subtitle {
  margin: 0 auto 0;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.card-produto {
  background: var(--bg-surface);
  border: 1px solid rgba(240, 235, 229, 0.04);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s ease;
  text-align: left;
  min-width: 0;
  width: 100%;
}

.card-produto:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 212, 255, 0.15);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.08), 0 25px 60px rgba(0, 0, 0, 0.3);
}

.card-produto-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.04), rgba(139, 92, 246, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-produto-img .placeholder-icon {
  font-size: 4rem;
  opacity: 0.2;
  filter: grayscale(0.5);
}

.no-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0.15;
  color: var(--text-muted);
  width: 100%;
  height: 100%;
}

.no-image-placeholder span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.card-produto-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(180deg, transparent, var(--bg-surface));
}

.card-produto-body {
  padding: 1.5rem 1.8rem 1.8rem;
}

.card-produto-categoria {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--neon-cyan);
  margin-bottom: 0.6rem;
}

.card-produto-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card-produto-body p {
  color: var(--text-soft);
  font-size: 0.8rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.card-produto-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-produto-preco {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-small {
  padding: 0.5rem 1.4rem;
  background: transparent;
  border: 1px solid rgba(0, 212, 255, 0.2);
  color: var(--neon-cyan);
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-small:hover {
  border-color: var(--neon-cyan);
  background: rgba(0, 212, 255, 0.08);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
  color: var(--neon-cyan);
}

/* ============ DEPOIMENTOS ============ */

.depoimentos {
  text-align: center;
}

.depoimentos .section-subtitle {
  margin: 0 auto 0;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.depoimento-card {
  background: var(--bg-surface);
  border: 1px solid rgba(240, 235, 229, 0.04);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: left;
  transition: all 0.4s ease;
}

.depoimento-card:hover {
  border-color: rgba(0, 212, 255, 0.12);
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.06);
}

.depoimento-card p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.depoimento-autor {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.depoimento-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.depoimento-autor-info h4 {
  font-size: 0.85rem;
  font-weight: 600;
}

.depoimento-autor-info span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ============ NEWSLETTER ============ */

.newsletter {
  text-align: center;
  border-top: 1px solid rgba(240, 235, 229, 0.03);
  border-bottom: 1px solid rgba(240, 235, 229, 0.03);
}

.newsletter-content {
  max-width: 550px;
  margin: 0 auto;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  max-width: 350px;
  padding: 1rem 1.5rem;
  background: rgba(240, 235, 229, 0.03);
  border: 1px solid rgba(240, 235, 229, 0.08);
  border-radius: 50px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
  border-color: rgba(0, 212, 255, 0.3);
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

/* ============ FOOTER ============ */

footer {
  position: relative;
  z-index: 2;
  padding: 5rem 5rem 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-soft);
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.footer-col a {
  display: block;
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--neon-cyan);
}

.footer-bottom {
  text-align: center;
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(240, 235, 229, 0.03);
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* ============ CART BADGE ============ */

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--neon-cyan);
  color: var(--bg-deep);
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 50%;
  margin-left: 4px;
  vertical-align: top;
  font-family: var(--font-body);
}

/* ============ CART ROW ============ */

.cart-row {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr 40px;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(240,235,229,0.03);
}

.cart-row-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-thumb {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: var(--bg-surface);
  border: 1px solid rgba(240,235,229,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-cell {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.cart-total-cell {
  font-weight: 600;
  color: var(--neon-cyan);
  text-align: right;
}

.cart-qty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(240,235,229,0.08);
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.2s;
}

.qty-btn:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}

.qty-val {
  font-size: 0.85rem;
  width: 24px;
  text-align: center;
}

.cart-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1rem;
  transition: color 0.2s;
}

.cart-remove:hover {
  color: var(--neon-magenta);
}

/* ============ TOAST ============ */

.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast {
  padding: 0.8rem 1.5rem;
  background: var(--bg-surface);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 12px;
  color: var(--text-light);
  font-size: 0.85rem;
  animation: toast-in 0.3s ease, toast-out 0.3s ease 2.7s forwards;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

@keyframes toast-in {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes toast-out {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(40px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 40px rgba(0, 212, 255, 0.3), 0 0 80px rgba(255, 0, 255, 0.15); }
  50% { box-shadow: 0 0 60px rgba(0, 212, 255, 0.5), 0 0 120px rgba(255, 0, 255, 0.25); }
}

/* ============ HAMBURGER ============ */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-soft);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============ RESPONSIVE ============ */

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { display: none; }
  .como-funciona { grid-template-columns: 1fr; gap: 3rem; }
  .categorias-grid { grid-template-columns: repeat(2, 1fr); }
  .produtos-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  header { padding: 1rem 2rem; }
  .hero { padding: 6rem 2rem 3rem; }
  section { padding: 5rem 2rem; }
  footer { padding: 4rem 2rem 2rem; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  header { padding: 1rem 1.5rem; }
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(7, 5, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0.5rem;
    transition: right 0.3s ease;
    z-index: 200;
    border-left: 1px solid rgba(240, 235, 229, 0.04);
  }
  nav.open { right: 0; }
  nav a { font-size: 0.9rem; padding: 0.8rem 0; width: 100%; }
  .hamburger { z-index: 201; }
  section { padding: 4rem 1.5rem; }
  .hero { padding: 6rem 1.5rem 3rem; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .hero-stat + .hero-stat { padding-left: 1.5rem; }
  .categorias-grid { grid-template-columns: 1fr; }
  .produtos-grid { grid-template-columns: 1fr; }
  .depoimentos-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; align-items: center; }
  .newsletter-form input { max-width: 100%; width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .logo-text { font-size: 1rem; }
  .logo-text small { font-size: 0.5rem; }
  header { padding: 0.8rem 1rem; }
  nav { gap: 0.8rem; }
  nav a { font-size: 0.6rem; letter-spacing: 0; }
}

/* ============ DASHBOARD ============ */

.dboard-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem 1rem 280px;
  background: rgba(7, 5, 15, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(240, 235, 229, 0.04);
}

.dboard-user {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.dboard-user span {
  font-size: 0.85rem;
  color: var(--text-soft);
}

.dboard-user a,
.dboard-user button {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}

.dboard-user a:hover,
.dboard-user button:hover {
  color: var(--neon-cyan);
}

.dboard-layout {
  display: flex;
  min-height: 100vh;
  padding-top: 70px;
}

.dboard-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 240px;
  z-index: 99;
  background: var(--bg-surface);
  border-right: 1px solid rgba(240, 235, 229, 0.04);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 90px;
}

.dboard-sidebar a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s;
}

.dboard-sidebar a:hover {
  background: rgba(0, 212, 255, 0.08);
  color: var(--neon-cyan);
}

.dboard-sidebar a.active {
  background: rgba(0, 212, 255, 0.1);
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 212, 255, 0.15);
}

.dboard-content {
  flex: 1;
  margin-left: 240px;
  padding: 2rem 3rem;
}

.dboard-content h1 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.stat-card {
  background: var(--bg-surface);
  border: 1px solid rgba(240, 235, 229, 0.04);
  border-radius: 16px;
  padding: 1.5rem;
}

.stat-card h3 {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.stat-card span {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--neon-cyan);
  display: block;
}

.dboard-table {
  background: var(--bg-surface);
  border: 1px solid rgba(240, 235, 229, 0.04);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.dboard-table h2 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(240, 235, 229, 0.04);
}

.dboard-table table {
  width: 100%;
  border-collapse: collapse;
}

.dboard-table th {
  padding: 0.8rem 1.5rem;
  text-align: left;
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 400;
  border-bottom: 1px solid rgba(240, 235, 229, 0.03);
}

.dboard-table td {
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  color: var(--text-soft);
  border-bottom: 1px solid rgba(240, 235, 229, 0.02);
}

.dboard-table tr:last-child td {
  border-bottom: none;
}

.dboard-table tbody tr {
  transition: background 0.2s;
}

.dboard-table tbody tr:hover {
  background: rgba(0, 212, 255, 0.03);
}

.dboard-search {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.dboard-search input {
  flex: 1;
  max-width: 400px;
  padding: 0.7rem 1.2rem;
  background: rgba(240, 235, 229, 0.03);
  border: 1px solid rgba(240, 235, 229, 0.08);
  border-radius: 50px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s;
}

.dboard-search input:focus {
  border-color: var(--neon-cyan);
}

.dboard-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.stat-card:hover {
  border-color: rgba(0, 212, 255, 0.15);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.06);
}

.stat-card .stat-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  opacity: 0.3;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(240, 235, 229, 0.08);
  color: var(--text-soft);
  font-size: 1.2rem;
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}

.dboard-sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(7, 5, 15, 0.6);
}

.dboard-sidebar-overlay.open {
  display: block;
}

@media (max-width: 768px) {
  .dboard-sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .dboard-sidebar.open {
    transform: translateX(0);
    display: flex;
  }
}

.status-badge {
  display: inline-block;
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
}

.status-printing {
  background: rgba(0, 212, 255, 0.1);
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.status-ready {
  background: rgba(139, 92, 246, 0.1);
  color: var(--neon-purple);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.status-sent {
  background: rgba(255, 0, 255, 0.1);
  color: var(--neon-magenta);
  border: 1px solid rgba(255, 0, 255, 0.2);
}

.status-active {
  background: rgba(0, 212, 255, 0.1);
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.status-pending {
  background: rgba(255, 107, 53, 0.1);
  color: var(--neon-orange);
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.status-inactive {
  background: rgba(107, 94, 78, 0.1);
  color: var(--text-muted);
  border: 1px solid rgba(107, 94, 78, 0.15);
}

.dboard-table select {
  padding: 0.4rem 0.8rem;
  background: rgba(240, 235, 229, 0.03);
  border: 1px solid rgba(240, 235, 229, 0.08);
  border-radius: 8px;
  color: var(--text-soft);
  font-size: 0.8rem;
  font-family: var(--font-body);
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23a0998f' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  padding-right: 2rem;
}

.dboard-table select option,
.modal-box select option {
  background: #12101a;
  color: var(--text-soft);
  padding: 0.5rem;
}

.dboard-table select option:hover,
.dboard-table select option:checked,
.modal-box select option:hover,
.modal-box select option:checked {
  background: rgba(0, 212, 255, 0.15);
  color: var(--neon-cyan);
}

.modal-box select {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(240, 235, 229, 0.03);
  border: 1px solid rgba(240, 235, 229, 0.08);
  border-radius: 10px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23a0998f' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.modal-box select:focus {
  border-color: var(--neon-cyan);
}

.btn-dboard {
  padding: 0.4rem 1rem;
  background: transparent;
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 8px;
  color: var(--text-soft);
  font-size: 0.7rem;
  cursor: pointer;
  transition: all 0.3s;
  margin-right: 0.4rem;
}

.btn-dboard:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.15);
}

.btn-primary-sm {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
  color: var(--bg-deep);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.25);
}

.btn-primary-sm:hover {
  background: linear-gradient(135deg, #33ddff, var(--neon-cyan));
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
  transform: translateY(-1px);
}

.graph-bars {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  padding: 1.5rem;
  height: 200px;
}

.graph-bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.graph-bar-fill {
  width: 100%;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--neon-cyan), rgba(0, 212, 255, 0.2));
  min-height: 4px;
  transition: height 0.6s ease;
}

.graph-bar-value {
  font-size: 0.65rem;
  color: var(--neon-cyan);
  font-weight: 600;
}

.graph-bar-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.profile-section {
  background: var(--bg-surface);
  border: 1px solid rgba(240, 235, 229, 0.04);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.profile-section h2 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.profile-section input {
  width: 100%;
  padding: 0.8rem 1.2rem;
  background: rgba(240, 235, 229, 0.03);
  border: 1px solid rgba(240, 235, 229, 0.08);
  border-radius: 12px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  margin-bottom: 0.8rem;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.fav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.fav-card {
  background: rgba(240, 235, 229, 0.02);
  border: 1px solid rgba(240, 235, 229, 0.04);
  border-radius: 12px;
  padding: 1.2rem;
  text-align: center;
}

.fav-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 0.8rem;
  opacity: 0.2;
  font-size: 2.5rem;
}

.fav-card h4 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.fav-card span {
  font-size: 0.85rem;
  color: var(--neon-cyan);
  font-weight: 600;
  display: block;
  margin-bottom: 0.8rem;
}

@media (max-width: 1024px) {
  .dboard-sidebar { width: 200px; }
  .dboard-header { padding-left: 220px; }
  .dboard-content { margin-left: 200px; padding: 2rem 1.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .dboard-sidebar { display: none; }
  .dboard-header { padding-left: 1.5rem; }
  .dboard-content { margin-left: 0; padding: 7rem 1.5rem 2rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .profile-grid { grid-template-columns: 1fr; }
}
