/* =========================================
   ARQUIVO: produto-gamer.css
   Descrição de Produto – Categoria: GAMER
   Design: Cyberpunk/Futurista com gradientes
   Paleta: Preto (#0a0a0f) + Cinza (#6b7280) + Laranja (#f97316)
   ========================================= */

/* Estilos gerais da página */
body {
  margin: 0;
  padding: 20px;
  background: linear-gradient(135deg, #0a0a0f 0%, #1f1f1f 100%);
  min-height: 100vh;
  font-family: 'Rajdhani', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.produto-gamer #product-overview {
  font-family: 'Rajdhani', 'Orbitron', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(249, 115, 22, 0.3), 0 0 80px rgba(251, 146, 60, 0.2);
  background: #0a0a0f;
  position: relative;
}

/* Efeito de brilho animado ao redor */
.produto-gamer #product-overview::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #f97316, #fb923c, #fdba74, #f97316);
  background-size: 400% 400%;
  border-radius: 16px;
  z-index: -1;
  animation: rgbPulse 3s ease infinite;
}

@keyframes rgbPulse {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Reset e bases */
.produto-gamer #product-overview ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.produto-gamer #product-overview h2 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ---------- DESCRIÇÃO DO PRODUTO ---------- */
.produto-gamer #product-overview > p:first-of-type,
.produto-gamer #product-overview > div > p:first-of-type {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #e5e7eb;
  padding: 32px 28px;
  font-size: 1.08rem;
  line-height: 1.8;
  text-align: justify;
  border-left: 4px solid #f97316;
  position: relative;
  overflow: hidden;
}

/* ---------- SEÇÃO: ESPECIFICAÇÕES GAMER ---------- */
.produto-gamer #product-overview .specs-gamer {
  background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
  padding: 28px 24px 36px;
  position: relative;
}

.produto-gamer #product-overview .specs-gamer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #f97316, #fb923c, transparent);
}

.produto-gamer #product-overview .specs-gamer > h2 {
  text-align: center;
  font-size: 1.7rem;
  font-weight: 900;
  color: #fff;
  margin: 0 0 24px 0;
  position: relative;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

.produto-gamer #product-overview .specs-gamer > h2::after {
  content: "⚡";
  display: block;
  font-size: 2rem;
  margin: 8px auto 0;
  color: #f97316;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

.produto-gamer #product-overview .specs-gamer > ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.produto-gamer #product-overview .specs-gamer > ul > li {
  background: linear-gradient(135deg, rgba(107, 114, 128, 0.1) 0%, rgba(75, 85, 99, 0.05) 100%);
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 26px 20px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #d1d5db;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.produto-gamer #product-overview .specs-gamer > ul > li::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 2px;
  background: linear-gradient(135deg, #f97316, #fb923c, #fdba74);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.produto-gamer #product-overview .specs-gamer > ul > li:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 32px rgba(249, 115, 22, 0.4), 0 0 60px rgba(251, 146, 60, 0.2);
}

.produto-gamer #product-overview .specs-gamer > ul > li:hover::before {
  opacity: 1;
}

.produto-gamer #product-overview .specs-gamer > ul > li::after {
  content: attr(data-icon);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
  color: #fff;
  font-size: 2rem;
  margin-bottom: 14px;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.5), 0 0 40px rgba(251, 146, 60, 0.3);
  position: relative;
  z-index: 1;
}

.produto-gamer #product-overview .specs-gamer > ul > li > strong {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  color: #000000;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1.5px;
  position: relative;
  z-index: 1;
}

/* ---------- SEÇÃO 1: PARA QUEM É INDICADO ---------- */
.produto-gamer #product-overview h2:nth-of-type(1),
.produto-gamer #product-overview h2:nth-of-type(1) + ul {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #fff;
}

.produto-gamer #product-overview h2:nth-of-type(1) {
  padding: 28px 24px 12px 24px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  position: relative;
  text-align: center;
}

@keyframes float {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(-60%); }
}

.produto-gamer #product-overview h2:nth-of-type(1) + ul {
  padding: 0 24px 28px 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.produto-gamer #product-overview h2:nth-of-type(1) + ul li {
  background: rgba(255, 255, 255, 0.95);
  color: #1f2937;
  border: 2px solid rgba(249, 115, 22, 0.3);
  border-radius: 12px;
  padding: 16px 18px 16px 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: all 0.3s ease;
  font-weight: 600;
}

.produto-gamer #product-overview h2:nth-of-type(1) + ul li:hover {
  transform: translateX(8px);
  border-color: #f97316;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.produto-gamer #product-overview h2:nth-of-type(1) + ul li::before {
  content: "▶";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #f97316;
  font-weight: 900;
}

/* ---------- SEÇÃO 2: RECURSOS E BENEFÍCIOS ---------- */
.produto-gamer #product-overview h2:nth-of-type(2),
.produto-gamer #product-overview h2:nth-of-type(2) + ul {
  background: linear-gradient(135deg, #18181b 0%, #27272a 100%);
  color: #fff;
}

.produto-gamer #product-overview h2:nth-of-type(2) {
  padding: 28px 24px 12px 24px;
  background: #000000;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  position: relative;
  text-align: center;
  box-shadow: 0 4px 8px rgba(107, 114, 128, 0.4);
}

.produto-gamer #product-overview h2:nth-of-type(2) + ul {
  padding: 0 24px 28px 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.produto-gamer #product-overview h2:nth-of-type(2) + ul li {
  background: linear-gradient(135deg, rgba(107, 114, 128, 0.15) 0%, rgba(75, 85, 99, 0.1) 100%);
  border: 1px solid rgba(107, 114, 128, 0.3);
  border-radius: 12px;
  padding: 16px 18px 16px 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  position: relative;
  color: #e5e7eb;
  transition: all 0.3s ease;
  font-weight: 500;
}

.produto-gamer #product-overview h2:nth-of-type(2) + ul li:hover {
  transform: translateX(8px);
  border-color: #f97316;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(251, 146, 60, 0.1) 100%);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.produto-gamer #product-overview h2:nth-of-type(2) + ul li::before {
  content: "✦";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: #f97316;
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { opacity: 1; transform: translateY(-50%) rotate(0deg); }
  50% { opacity: 0.6; transform: translateY(-50%) rotate(180deg); }
}

/* ---------- SEÇÃO 3: CARACTERÍSTICAS TÉCNICAS ---------- */
.produto-gamer #product-overview h2:nth-of-type(3) {
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a1a 100%) !important;
  color: #fff !important;
  padding: 28px 24px 16px;
  margin: 0;
  border-radius: 0;
  font-size: 1.6rem;
  font-weight: 900;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  position: relative;
  border-top: 3px solid #f97316;
  text-align: center;
}

.produto-gamer #product-overview h2:nth-of-type(3)::before {
  content: none;
  display: none;
}

.produto-gamer #product-overview h2:nth-of-type(3) + ul {
  background: #0a0a0f !important;
  color: #fff !important;
  margin: 0 !important;
  padding: 24px 24px 36px !important;
  border-radius: 0 !important;
  position: relative !important;
  list-style: none !important;
  column-count: 2 !important;
  column-gap: 28px !important;
  overflow: visible !important;
  border: none !important;
}

/* Cards de fundo com efeito neon */
.produto-gamer #product-overview h2:nth-of-type(3) + ul::before,
.produto-gamer #product-overview h2:nth-of-type(3) + ul::after {
  content: "" !important;
  position: absolute !important;
  top: 20px !important;
  bottom: 20px !important;
  width: calc(50% - 14px) !important;
  background: linear-gradient(135deg, rgba(55, 65, 81, 0.08) 0%, rgba(75, 85, 99, 0.05) 100%) !important;
  border-radius: 14px !important;
  border: 2px solid rgba(249, 115, 22, 0.3) !important;
  box-shadow: 0 0 30px rgba(249, 115, 22, 0.2), inset 0 0 20px rgba(251, 146, 60, 0.1) !important;
  z-index: 0 !important;
  pointer-events: none !important;
  display: block !important;
  backdrop-filter: blur(10px) !important;
}

.produto-gamer #product-overview h2:nth-of-type(3) + ul::before {
  left: 12px !important;
  right: auto !important;
}

.produto-gamer #product-overview h2:nth-of-type(3) + ul::after {
  right: 12px !important;
  left: auto !important;
}

/* Items das características */
.produto-gamer #product-overview h2:nth-of-type(3) + ul li {
  position: relative !important;
  z-index: 1 !important;
  break-inside: avoid !important;
  -webkit-column-break-inside: avoid !important;
  background: transparent !important;
  color: #d1d5db !important;
  padding: 12px 16px !important;
  margin: 0 8px 10px !important;
  border-bottom: 1px solid rgba(107, 114, 128, 0.2) !important;
  border-left: 3px solid #f97316 !important;
  border-right: none !important;
  border-top: none !important;
  line-height: 1.5 !important;
  font-size: 0.96rem !important;
  box-shadow: none !important;
  border-radius: 0 8px 8px 0 !important;
  transition: all 0.3s ease !important;
}

.produto-gamer #product-overview h2:nth-of-type(3) + ul li:hover {
  border-left-color: #fb923c !important;
  background: rgba(249, 115, 22, 0.05) !important;
  transform: translateX(4px) !important;
}

.produto-gamer #product-overview h2:nth-of-type(3) + ul li:last-child {
  border-bottom: none !important;
}

/* Labels das características */
.produto-gamer #product-overview h2:nth-of-type(3) + ul li strong {
  display: inline-block !important;
  min-width: 200px !important;
  color: #fff !important;
  font-weight: 800 !important;
  margin-right: 8px !important;
  background: transparent !important;
  text-transform: uppercase !important;
  font-size: 0.88rem !important;
  letter-spacing: 0.5px !important;
}

/* Mobile: ajustes responsivos */
@media (max-width: 900px) {
  .produto-gamer #product-overview h2:nth-of-type(3) + ul {
    column-count: 1 !important;
  }
  
  .produto-gamer #product-overview h2:nth-of-type(3) + ul::after {
    display: none !important;
  }
  
  .produto-gamer #product-overview h2:nth-of-type(3) + ul::before {
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
  }
  
  .produto-gamer #product-overview h2:nth-of-type(1) + ul,
  .produto-gamer #product-overview h2:nth-of-type(2) + ul {
    grid-template-columns: 1fr !important;
  }
  
  .produto-gamer #product-overview .specs-gamer > ul {
    grid-template-columns: 1fr !important;
  }
}