/* ============================================================
   ROOT / TEMA GLOBAL - SHOTKEYS
   ============================================================ */
:root {
  /* Paleta Principal */
  --color-bg-primary: #1a0033;
  --color-bg-secondary: #4f0088;
  --color-accent: #e600e6;
  --color-accent-hover: #ff33ff;
  
  /* Paleta Escura/Neutra */
  --color-dark: #0d001a;
  --color-text-main: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.7);
  
  /* Efeitos */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 15px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 15px rgba(230, 0, 230, 0.5);
  --glass-bg: rgba(26, 0, 51, 0.6);
  --glass-border: rgba(255, 255, 255, 0.1);
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
}

/* ============================================================
   RESET E BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: "Roboto", "Segoe UI", Tahoma, sans-serif;
  color: var(--color-text-main);
  background-color: var(--color-bg-primary);
  background: radial-gradient(circle at top center, #2e004d 0%, var(--color-bg-primary) 80%);
  margin: 0;
  padding-top: 70px; /* Espaço para navbar fixa */
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Scrollbar Personalizada */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--color-bg-secondary);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}

/* ============================================================
   TIPOGRAFIA
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  color: var(--color-text-main);
}

.momofont { font-family: "Momo Trust Display", sans-serif; }
.archivofont { font-family: "Archivo Black", sans-serif; letter-spacing: -0.02em; }
.robotofont { font-family: "Roboto", sans-serif; }

/* ============================================================
   COMPONENTES UI
   ============================================================ */

/* Navbar Glassmorphism */
.navbar {
  background: rgba(10, 0, 30, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-medium);
  padding: 1rem 0;
}

.navbar-brand {
  padding: 0;
  margin-right: 2rem;
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05) rotate(-2deg);
  filter: drop-shadow(0 0 8px rgba(230,0,230,0.5));
}

.nav-link {
  color: var(--color-text-muted) !important;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-accent) !important;
  text-shadow: 0 0 8px rgba(230, 0, 230, 0.4);
}

/* Botões */
.btn-custom {
  background: linear-gradient(90deg, #69069d, #8a0bce);
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(138, 11, 206, 0.4);
  transition: var(--transition-medium);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.btn-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(138, 11, 206, 0.6);
  color: #fff;
}

.btn-custom::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.btn-custom:hover::after {
  left: 100%;
}

/* ============================================================
   SEÇÕES
   ============================================================ */

/* Hero Section */
/* Hero Section */
.hero-wrapper {
  min-height: 90vh; /* Taller hero */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  background: radial-gradient(circle at center, rgba(79, 0, 136, 0.4) 0%, transparent 70%);
  margin-bottom: 3rem;
  padding-top: 2rem;
}

/* Background Grid Effect */
.hero-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -1;
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

.shotkeys-img {
  max-width: 90%;
  width: 700px; /* Bigger logo */
  filter: drop-shadow(0 0 30px rgba(230, 0, 230, 0.3));
  margin-bottom: 2rem;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-15px) scale(1.02); }
  100% { transform: translateY(0px) scale(1); }
}

/* Cards de Produtos */
.product-card {
  background: rgba(255, 255, 255, 0.05); /* Glass dark */
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-glow);
  border-color: var(--color-accent);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  padding: 2rem;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  transition: var(--transition-medium);
}

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

.product-card .card-body {
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.2);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card .card-title {
  font-family: "Archivo Black", sans-serif;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.product-card .card-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}


/* Generic Glass Panel */
.glass-panel {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  color: var(--color-text-main);
}

.text-accent {
  color: var(--color-accent);
}

.bg-dark-transparent {
    background-color: rgba(0,0,0,0.3) !important;
}

/* ============================================================
   FAQ / ACORDION
   ============================================================ */
.accordion-item {
  background-color: transparent;
  border: 1px solid var(--glass-border);
  margin-bottom: 1rem;
  border-radius: 8px !important;
  overflow: hidden;
}

.accordion-button {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text-main);
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: var(--color-bg-secondary);
  color: #fff;
}

.accordion-body {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.2);
}

/* ============================================================
   RODAPÉ
   ============================================================ */
footer {
  background: var(--color-dark);
  border-top: 1px solid var(--glass-border);
  margin-top: auto;
}

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */
@media (max-width: 768px) {
  .shotkeys-img {
    width: 90%;
  }
  
  .navbar-collapse {
    background: var(--color-bg-primary);
    padding: 1rem;
    border-radius: 0 0 15px 15px;
    border: 1px solid var(--glass-border);
    border-top: none;
  }
}

/* ============================================================
   MODAL DE PRODUTO (QUICK VIEW)
   ============================================================ */
.modal-backdrop.show {
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.7);
}

.product-modal-content {
    background: rgba(20, 20, 35, 0.95);
    border: 1px solid var(--color-accent);
    box-shadow: 0 0 50px rgba(188, 19, 254, 0.2);
    border-radius: 20px;
    color: #fff;
    overflow: hidden;
}

.product-modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(90deg, rgba(188, 19, 254, 0.1), transparent);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-modal-title {
    font-family: 'Orbitron', sans-serif;
    color: var(--color-accent);
    margin: 0;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(230, 0, 230, 0.3);
}

.product-modal-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 1.5rem;
    transition: 0.3s;
    cursor: pointer;
}

.product-modal-close:hover {
    color: var(--color-accent);
    transform: rotate(90deg);
}

.product-modal-body {
    padding: 2rem;
}

.product-modal-img-wrapper {
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 1rem;
    text-align: center;
}

.product-modal-img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
    transition: transform 0.5s;
    position: relative;
    z-index: 10;
}

.product-modal-img:hover {
    transform: scale(1.05);
}

.pm-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    display: block;
}

.pm-description {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.pm-section-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 5px;
}
.pm-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}
.pm-list li {
    padding: 4px 0;
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.btn-modal-action {
    background: linear-gradient(90deg, #bc13fe, #e600e6);
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.4);
}

.btn-modal-action:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(188, 19, 254, 0.6);
    color: #fff;
}
/* Cursor pointer no card */
.product-card {
    cursor: pointer;
}
