@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Verde Oliva Escuro / Verde Colegial */
  --color-bg: #09130e;
  --color-surface: rgba(13, 27, 20, 0.75);
  --color-border: rgba(255, 255, 255, 0.09);
  --color-border-hover: rgba(212, 175, 55, 0.45);
  --color-gold: #d4af37;
  --color-gold-light: #f5c77e;
  --color-olive: #1a3827;
  --color-olive-dark: #0d1b13;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--color-bg);
  background-image: 
    radial-gradient(at 50% 0%, rgba(26, 60, 42, 0.35) 0px, transparent 65%),
    radial-gradient(at 80% 50%, rgba(212, 175, 55, 0.06) 0px, transparent 50%),
    radial-gradient(at 10% 90%, rgba(20, 48, 34, 0.4) 0px, transparent 55%);
  color: #f3f4f6;
  overflow-x: hidden;
  min-height: 100vh;
}

h1, h2, h3, h4, .font-heading {
  font-family: 'Outfit', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #09130e;
}
::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.3);
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 175, 55, 0.6);
}

/* Glassmorphism Styles (Verde Colegial Translúcido) */
.glass-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(16, 36, 26, 0.45) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.6), inset 0 1px 0 0 rgba(255, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09) 0%, rgba(22, 50, 36, 0.6) 100%);
  border-color: var(--color-border-hover);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px -10px rgba(212, 175, 55, 0.15), inset 0 1px 0 0 rgba(255, 255, 255, 0.15);
}

.glass-card:active {
  transform: scale(0.985);
}

/* Golden Highlight Card */
.glass-card-gold {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(19, 44, 31, 0.6) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 10px 30px -10px rgba(212, 175, 55, 0.2), inset 0 1px 0 0 rgba(212, 175, 55, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card-gold:hover {
  border-color: rgba(212, 175, 55, 0.65);
  box-shadow: 0 18px 40px -10px rgba(212, 175, 55, 0.3), inset 0 1px 0 0 rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

/* Ambient glow blobs */
.ambient-glow-1 {
  position: fixed;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(28, 70, 48, 0.3) 0%, rgba(9, 19, 14, 0) 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
}

.ambient-glow-2 {
  position: fixed;
  bottom: 10%;
  left: 20%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(9, 19, 14, 0) 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(70px);
}

/* Gold Gradient Text */
.text-gold-gradient {
  background: linear-gradient(135deg, #fff3d4 0%, #d4af37 50%, #c58f5e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Gold Shimmer Button */
.btn-gold {
  background: linear-gradient(135deg, #d4af37 0%, #b89028 100%);
  color: #09130e;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.btn-gold::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: rotate(25deg) translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-gold:hover::after {
  transform: rotate(25deg) translateX(100%);
}

.btn-gold:hover {
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
  transform: translateY(-1px);
}

.btn-gold:active {
  transform: scale(0.98);
}

/* Pulse badge */
@keyframes subtle-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.95); }
}

.animate-pulse-subtle {
  animation: subtle-pulse 2.5s infinite ease-in-out;
}

/* Smooth zoom for card images */
.product-card .product-img {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img {
  transform: scale(1.08);
}

/* Toast Notification */
#toast {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
