/* Base Styles */
:root {

  --primary-color: #be1c39;
  --secondary-color: #00b7bd;
  --text-color: #ffffff;
  --bg-color: #0a0a0a;
  --card-bg-color: rgba(190, 28, 58, 0.336);
  --border-color: rgba(255, 255, 255, 0.1);
  --header-height: 80px;
  --glow-shadow: 0 0 15px rgba(190, 28, 57, 0.7);
  --cyan-glow: 0 0 15px rgba(0, 183, 189, 0.979);
  --yellow-glow: 0 0 15px rgba(188, 183, 4, 0.7);
  --product-price: #00ff00;
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #000000;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

html, body {
  height: 100%;
  scroll-snap-type: y proximity; /* mais leve */
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

a {
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  background-color: transparent !important;
}

.background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 75%;
  z-index: -9999;
}

/* Navbar */
/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  background-color: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}

.navbar.hidden {
  transform: translateY(-100%);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  width: 50px;
  height: 50px;
  transition: all 0.3s ease;
}

.site-title {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #ffffff, #fdfdfd);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links ul {
  display: flex;
  gap: 20px;
}

.nav-links a {
  position: relative;
  padding: 8px 12px;
  font-weight: 500;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  position: relative;
  z-index: 1;
  outline: none;
}

.nav-links a.active::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(270deg, var(--primary-color), var(--secondary-color), var(--primary-color));
  background-size: 600% 600%;
  animation: gradientBorder 4s ease infinite;
  -webkit-mask-image: linear-gradient(white, white), linear-gradient(white, white);
  -webkit-mask-clip: content-box, border-box;
  -webkit-mask-composite: xor;
  mask-image: linear-gradient(white, white), linear-gradient(white, white);
  mask-clip: content-box, border-box;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

@keyframes gradientBorder {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Remove o contorno azul ao clicar */
.nav-links a:focus {
  outline: none;
}



/* Cart Icon */
.cart-container {
  display: flex;
  align-items: center;
  margin-left: 0px !important;
}

.cart-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  color: var(--text-color);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cart-link:hover {
  background: var(--primary-color);
  box-shadow: 0 0 15px rgba(190, 28, 57, 0.7);
  transform: scale(1.1);
  color: white;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--secondary-color);
  color: var(--bg-color);
  font-size: 0.8rem;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-color);
  animation: pulse 2s infinite;
}

.cart-count:empty {
  display: none;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.bar {
  width: 30px;
  height: 3px;
  background-color: var(--text-color);
  margin: 3px 0;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .nav-links ul {
    flex-direction: column;
    gap: 2px; /* Reduzido de 20px para 5px */
    align-items: flex-start; /* opcional: alinha os itens à esquerda */
  }
}



/* Main Content */
/* --- Main Content --- */


/* Hero Section */
/* --- Hero Section --- */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://spockygames.com.br/wp-content/themes/spockygames_new/assets/images/bg-site.webp') center center/cover no-repeat;
  z-index: 0;
  filter: brightness(0.8);
}
.hero {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding-top: 100px;
}

.hero-wrapper {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  margin-top: 100px;
}

.logo-hero {
  margin-bottom: 30px;
}

.hero-logo {
  width: 250px;
  height: 250px;
  transition: all 0.3s ease;
  
}

.hero-logo:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 15px var(--primary-color));
}

.glitch {
  font-size: 4rem;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  text-shadow: 0.03em 0 0 #8f1dc3, -0.03em 0 0 #1e20c2;
  animation: glitch 1s infinite;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  left: 1px;
  text-shadow: -1px 0 #bd1b3a;
  animation: glitch-1 0.8s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.glitch::after {
  left: -1px;
  text-shadow: -1px 0 #8f1dc3;
  animation: glitch-2 0.8s infinite;
  clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

@keyframes glitch {
  0% {
    text-shadow: 0.05em 0 0 #8f1dc3, -0.05em 0 0 #bd1b3a;
  }
  14% {
    text-shadow: 0.05em 0 0 #8f1dc3, -0.05em 0 0 #bd1b3a;
  }
  15% {
    text-shadow: -0.05em -0.025em 0 #8f1dc3, 0.025em 0.05em 0 #bd1b3a;
  }
  49% {
    text-shadow: -0.05em -0.025em 0 #8f1dc3, 0.025em 0.05em 0 #bd1b3a;
  }
  50% {
    text-shadow: 0.025em 0.05em 0 #8f1dc3, -0.05em -0.025em 0 #bd1b3a;
  }
  99% {
    text-shadow: 0.025em 0.05em 0 #8f1dc3, -0.05em -0.025em 0 #bd1b3a;
  }
  100% {
    text-shadow: 0.05em 0 0 #8f1dc3, -0.05em 0 0 #bd1b3a;
  }
}

@keyframes glitch-1 {
  0% {
    transform: translateX(0);
  }
  80% {
    transform: translateX(0);
  }
  85% {
    transform: translateX(2px);
  }
  90% {
    transform: translateX(-2px);
  }
  95% {
    transform: translateX(2px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes glitch-2 {
  0% {
    transform: translateX(0);
  }
  80% {
    transform: translateX(0);
  }
  85% {
    transform: translateX(-2px);
  }
  90% {
    transform: translateX(2px);
  }
  95% {
    transform: translateX(-2px);
  }
  100% {
    transform: translateX(0);
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: bolder;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Estilos base para .cta-button (fora de media queries) */
.cta-button, a.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  background-color: #000000d3;
  border: 2px solid var(--primary-color);
  color: var(--text-color);
  font-weight: bolder;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-align: center;
  text-decoration: none; /* Adicionado para garantir que a.cta-button não tenha sublinhado */
  font-size: 1.5rem; /* Tamanho de fonte padrão para desktop */
   /* Adicionado para consistência com a regra a.cta-button original */
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(190, 28, 57, 0.4), transparent);
  transition: all 0.5s ease;
  z-index: -1;
}

.cta-button:hover {
  box-shadow: 0 0 15px rgba(190, 28, 57, 0.7);
  transform: translateY(-3px);
}

.cta-button:hover::before {
  left: 100%;
}

/* --- Media Queries para .cta-button --- */

/* Ajuste específico para resoluções HD 1280p */
@media screen and (max-width: 1366px) and (min-width: 1200px) {
    .cta-button, a.cta-button {
        padding: 15px 30px; /* Reduzido de 20px 40px */
        font-size: 1.2rem; /* Reduzido de 1.5rem */
    }
}

/* Responsive adjustments for CTA buttons */
@media (max-width: 992px) { /* Tablets and smaller desktops */
    .cta-buttons {
        align-items: stretch; 
        gap: 15px; 
    }

    .cta-button, a.cta-button {
        padding: 18px 25px; /* Slightly reduced padding for tablets */
        font-size: 1.1rem; /* Slightly reduced font size for tablets */
        white-space: nowrap; /* ADDED: Prevent text wrapping */
    }
}

/* Tablets em modo retrato e Smartphones Maiores (ex: até 768px) */
@media (max-width: 768px) {
  .cta-buttons { /* Container dos botões */
    flex-direction: row; 
    align-items: center; 
  }
  .cta-button, a.cta-button {
    padding: 18px 35px; /* Ajustado */
    font-size: 1.2rem; /* Ajustado */
    width: auto; 
    max-width: none; 
    white-space: nowrap; 
  }
}

@media (max-width: 600px) { /* Small smartphones */
    .cta-buttons {
        align-items: stretch; 
        gap: 10px;
    }

    .cta-button, a.cta-button {
        padding: 16px 22px; /* Ajustado */
        font-size: 1.1rem; /* Ajustado */
        white-space: nowrap; 
    }
}

@media (max-width: 480px) { /* Very small smartphones */
    .cta-buttons {
        align-items: stretch; 
        gap: 8px; 
    }

    .cta-button, a.cta-button {
        padding: 14px 20px; /* Ajustado */
        font-size: 1rem; /* Ajustado */
        white-space: nowrap; 
    }
}

.hero-slider {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.hero-slide.active,
.hero-main-content:not([style*="display: none"]),
.hero-ad-content:not([style*="display: none"]) {
  display: flex;
}
@media (max-width: 700px) {
  .hero {
    max-width: 98vw;
    min-height: 60vh;
  }
  .hero-background {
    background-position: center top;
  }
}

.hero-ad-content {
  background: transparent;
  color: var(--text-color);
  text-align: center;
}
.hero-slider.slide-left {
  transform: translateX(-50%);
}
.advertisers-banners {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 2rem 0;
}
.advertiser-banner {
  width: 180px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px var(--secondary-color));
  transition: transform 0.3s;
}
.advertiser-banner:hover {
  transform: scale(1.08) rotate(-2deg);
  filter: drop-shadow(0 0 20px var(--primary-color));
}
.advertise-btn {
  padding: 25px 50px;
  background-color: #0000006b;
  border: 2px solid var(--primary-color);
  color: var(--text-color);
  font-weight: 600;
  font-size: 25px;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 3;
  cursor: pointer;
  clip-path: inset(0 0 0 0);
}

.advertise-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(190, 28, 57, 0.4), transparent);
  transition: all 0.5s ease;
  z-index: 2;
}

.advertise-btn:hover {
  box-shadow: 0 0 15px rgba(190, 28, 57, 0.7);
  transform: translateY(-3px);
}

.advertise-btn:hover::before {
  left: 100%;
}

@media (max-width: 600px) {
  .advertise-btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 12px 20px;
    text-align: center;
    font-size: 1rem;
  }
}

.hero-animate {
  opacity: 0;
  transform: translateY(-80px) scale(0.98);
  animation: heroEntrance 1.1s cubic-bezier(0.77,0,0.175,1) 0.1s forwards;
}
@keyframes heroEntrance {
  0% {
    opacity: 0;
    transform: translateY(-80px) scale(0.98);
  }
  70% {
    opacity: 1;
    transform: translateY(10px) scale(1.03);
  }
  85% {
    transform: translateY(-5px) scale(0.99);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Efeito mosaico (opcional, para "montar" o conteúdo) */
.mosaic-in {
  animation: mosaicIn 1.2s cubic-bezier(0.77,0,0.175,1) 0.1s forwards;
}
@keyframes mosaicIn {
  0% {
    opacity: 0;
    filter: blur(12px);
    transform: scale(0.8) translateY(60px);
  }
  60% {
    opacity: 1;
    filter: blur(2px);
    transform: scale(1.04) translateY(-8px);
  }
  80% {
    filter: blur(0.5px);
    transform: scale(0.98) translateY(2px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1) translateY(0);
  }
}

/* Transição de rolagem para o conteúdo do anunciante */
.hero-slider {
  transition: transform 0.9s cubic-bezier(0.77,0,0.175,1);
}
.hero-slider.slide-left {
  transform: translateX(-100vw);
}
@media (max-width: 700px) {
  .hero-slider.slide-left {
    transform: translateX(-100vw);
  }
}


/* Section Styles */
/* --- General Section Styles --- */
.section-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-align: center;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--text-color));
}

/* --- Featured Content & Latest Videos --- */
.featured-content,
.latest-videos {
  padding: 80px 5%;
  text-align: center;
  margin-bottom: 100px;
}

.featured-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); /* Updated minmax for wider boxes */
    gap: 30px;
    margin-top: 50px;
    justify-content: center; /* Mantém os itens centralizados na horizontal */
    align-items: stretch; /* Changed from center to stretch for same height */
    max-width: 90vw; /* Increased max-width for wider layout */
    margin-left: auto;
    margin-right: auto;
}


.featured-item {
  background-color: #bd1b3994;
  border-radius: 10px;
  padding: 30px;
  border: 1.5px solid #bd1b39;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px) !important;

}

.featured-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--glow-shadow);
  border-color: 3px solid #bd1b39;
    backdrop-filter: blur(4px) !important;
}

.featured-item img {
  border-radius: 5px;
  margin-bottom: 20px;
}

.featured-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.featured-item p {
  color: rgba(255, 255, 255, 0.8);
  font-weight: bold;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Ajuste automático das colunas */
    gap: 30px;
    margin-top: 50px;
    justify-content: center; /* Centraliza os itens na horizontal */
    align-items: center; /* Mantém alinhamento vertical correto */
    max-width: 80vw; /* Define um limite para evitar que ocupe toda a tela */
    margin-left: auto;
    margin-right: auto;
}


.video-card {
  background-color: var(--card-bg-color);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  backdrop-filter: blur(4px) !important;

}

.video-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--glow-shadow);
  border-color: var(--primary-color);
}

.video-thumbnail {
  position: relative;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  transition: all 0.3s ease;
}

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

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color);
  opacity: 0;
  transition: all 0.3s ease;
}

.video-card:hover .play-button {
  opacity: 1;
}

.video-card h3 {
  font-size: 1.2rem;
  padding: 15px 15px 5px;
}

.video-card p {
  color: rgba(255, 255, 255, 0.7);
  padding: 0 15px 15px;
  font-size: 0.9rem;
}

.center-button {
  margin-top: 50px;
}

.neon-button {
  padding: 24px 50px;
  background-color: #0000006b;
  border: 2px solid var(--primary-color);
  color: var(--text-color);
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 3;
  cursor: pointer;
  clip-path: inset(0 0 0 0); /* Adicione essa linha */
  font-size: 1.1rem;
  font-weight: bolder;
}

.neon-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(190, 28, 57, 0.4), transparent);
  transition: all 0.5s ease;
  z-index: 2;
}




.neon-button:hover {
  box-shadow: 0 0 15px rgba(190, 28, 57, 0.7);
  transform: translateY(-3px);
}

.neon-button:hover::before {
  left: 100%;
}

.neon-button.secondary {
  border-color: var(--secondary-color);
}

.neon-button.secondary:hover {
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.7);
}

.neon-button.secondary::before {
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.4), transparent);
}

/* Media queries para neon-button - responsividade */
@media (max-width: 768px) {
  .neon-button {
    padding: 16px 24px;
    font-size: 1rem;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .neon-button {
    padding: 12px 16px;
    font-size: 0.9rem;
    min-width: auto;
    text-align: center;
  }
}

@media (max-width: 320px) {
  .neon-button {
    padding: 10px 12px;
    font-size: 0.85rem;
    word-break: break-word;
    white-space: normal;
    line-height: 1.2;
  }
}

/* Page Header */
/* --- Page Header --- */
.page-header {
  scroll-margin-top: var(--header-height); /* ⚠️ chave para snap */
  padding: 120px 5% 30px;
  text-align: center;
  background-image: url('https://spockygames.com.br/wp-content/themes/spockygames_new/assets/images/bg-site.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}


.page-header h1 {
  margin-bottom: 10px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  font-weight: bold;
}

/* Store Section */
/* --- Store Section --- */
.store-section {
  padding: 50px 5%;
  background-color: transparent !important;
}



/* Product Grid & Cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
  gap: 18px; 
  width: 100%;
  max-width: 1200px; 
  margin: 0 auto;
  padding: 40px 20px;
}

/* Para mobile - carrossel horizontal */
@media (max-width: 767px) {
  .products-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; /* Scroll suave no iOS */
    gap: 15px;
    padding: 20px;
    margin: 0;
    max-width: none;
  }
  
  .product-card {
    flex: 0 0 280px; /* Largura fixa dos cards no carrossel */
    scroll-snap-align: start;
    margin-bottom: 0; /* Remove margin-bottom no mobile */
  }
  
  /* Estilização da scrollbar para webkit browsers */
  .products-grid::-webkit-scrollbar {
    height: 8px;
  }
  
  .products-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
  }
  
  .products-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color, #ff001e);
    border-radius: 4px;
  }
  
  .products-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 0, 30, 0.8);
  }
}

/* Para telas médias (ex: tablets) */
@media (min-width: 768px) and (max-width: 991px) {
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Aumentado de 200px para 250px */
    gap: 16px; 
  }
  
  .product-card {
    max-width: 380px; /* Largura específica para tablets */
  }
}

/* Para telas grandes (desktops) - 3 colunas */
@media (min-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background-color: var(--card-bg-color); 
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ff001ea2;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); 
  display: flex; 
  flex-direction: column; 
  justify-content: space-between; 
  max-width: 360px; 
  margin-left: auto; 
  margin-right: auto; 
  margin-bottom: 50px;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--glow-shadow);
  border-color: var(--primary-color);
}

.product-image {
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  transition: all 0.3s ease;
  display: block;
  
}

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

/* Adicione um novo container para o botão se não existir, ou estilize o existente */
.product-card-actions {
  padding: 15px;
  margin-top: auto;
}

/* Wrapper específico para forçar layout horizontal */
.product-buttons-wrapper {
  display: flex !important;
  gap: 12px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
  width: 100%;
}

/* Estilos para os botões dentro do wrapper */
.product-buttons-wrapper .neon-button,
.product-buttons-wrapper .neon-button-success {
  flex: 1;
  min-width: 0; /* Permite que o flex funcione corretamente */
  max-width: none;
  margin: 0 !important; /* Remove qualquer margin */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  font-size: 0.9rem;
  padding: 16px 12px;
  box-sizing: border-box;
}

.product-card .neon-button,
.product-card .neon-button-success {
  flex: 1;
  min-width: 140px;
  max-width: 180px;
  margin-top: 0 !important; /* Força remoção de qualquer margin-top */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  font-size: 0.95rem;
  padding: 18px 20px;
}

/* Responsividade aprimorada */
@media (max-width: 768px) {
  .product-card-actions {
    gap: 8px;
    padding: 12px;
  }
  
  .product-buttons-wrapper {
    gap: 8px;
  }
  
  .product-buttons-wrapper .neon-button,
  .product-buttons-wrapper .neon-button-success {
    font-size: 0.8rem;
    padding: 14px 10px;
  }
  
  .product-card .neon-button,
  .product-card .neon-button-success {
    min-width: 120px;
    max-width: 160px;
    font-size: 0.85rem;
    padding: 14px 16px;
  }
}

@media (max-width: 480px) {
  .product-buttons-wrapper {
    flex-direction: column;
    gap: 10px;
  }
  
  .product-buttons-wrapper .neon-button,
  .product-buttons-wrapper .neon-button-success {
    width: 100%;
    max-width: none;
  }
  
  .product-card-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .product-card .neon-button,
  .product-card .neon-button-success {
    min-width: auto;
    max-width: none;
    width: 100%;
  }
}

/* Garantir que o botão success não tenha margin-top */
.product-buttons-wrapper .neon-button-success {
  margin-top: 0 !important;
}

/* Product Card Image Flip & Zoom */
.product-image-container {
    width: 100%;
    aspect-ratio: 1 / 1; /* Mantém a proporção quadrada, ajuste se necessário */
    perspective: 1000px; /* Necessário para o efeito 3D do flip */
    margin-bottom: 5px; /* Espaçamento que o .product-image original poderia ter */
    overflow: hidden; /* Garante que o zoom não ultrapasse os limites do container */
}

.product-image-flipper {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s, scale 0.4s;
    transform-style: preserve-3d;
}

.product-card:hover .product-image-flipper {
    transform: rotateY(180deg) scale(1.1); /* Flip e zoom no hover do card */
    /* Se as imagens dentro do flipper não herdarem o filtro, 
       você pode precisar aplicar o filter: drop-shadow() aqui também 
       ou nas classes .product-image.front img e .product-image.back img especificamente */
}

/* Se você estiver usando o .product-image-flipper e as imagens dentro dele (front/back), 
   pode ser necessário aplicar o filtro diretamente a elas também, 
   especialmente se o filtro no .product-image img geral não estiver funcionando como esperado 
   devido à estrutura do flipper. */



.product-img-front,
.product-img-back {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ou 'contain', dependendo de como quer que a imagem se ajuste */
    backface-visibility: hidden; /* Esconde o lado de trás da imagem durante o flip */
    border-radius: 8px; /* Se as imagens dos produtos tiverem bordas arredondadas */
}

.product-img-back {
    transform: rotateY(180deg); /* Posiciona a imagem traseira já flipada */
}

.product-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--primary-color, #BE1C39); /* Cor primária ou um fallback */
    color: white;
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 5px;
}

/* ===== SINGLE PRODUCT PAGE STYLES ===== */

/* Single Product Section */
.single-product-section {
    padding: 60px 5% 80px;
    background: transparent;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

/* Product Gallery Container */
.product-gallery-container {
    position: relative;
}

.product-carousel {
    background: var(--card-bg-color);
    border-radius: 15px;
    border: 2px solid var(--border-color);
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.product-carousel:hover {
    border-color: var(--primary-color);
    box-shadow: var(--glow-shadow);
}

/* Carousel Main */
.carousel-main {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.carousel-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;

}

/*.carousel-slide.active .product-main-image {

} /

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--primary-color);
    color: var(--text-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: var(--primary-color);
    box-shadow: 0 0 15px rgba(190, 28, 57, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 15px;
}

.carousel-next {
    right: 15px;
}

/* Carousel Thumbnails */
.carousel-thumbnails {
    display: flex;
    gap: 10px;
    padding: 15px;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.thumbnail-item {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.thumbnail-item:hover,
.thumbnail-item.active {
    border-color: var(--primary-color);
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(190, 28, 57, 0.5);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info Container */
.product-info-container {
    background: var(--card-bg-color);
    border-radius: 15px;
    border: 2px solid var(--border-color);
    padding: 5px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px; /* Ajuste o espaçamento conforme necessário */
}

.product-info-container:hover {
    border-color: var(--primary-color);
    box-shadow: var(--glow-shadow);
}

/* Product Header */
.product-header {
    
    
    border-bottom: 2px solid var(--border-color);
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(90deg, var(--text-color), var(--text-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    text-align: center;
    /* Considerar um text-shadow sutil para efeito neon, se não sobrecarregar */
    /* text-shadow: 0 0 5px var(--product-price), 0 0 10px var(--product-price); */
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
}

.meta-label {
    font-weight: 600;
    color: var(--text-color);
}

.color-badge {
    padding: 5px 15px;
    border-radius: 20px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.product-price-container {
    background: linear-gradient(135deg, rgba(190, 28, 58, 0), rgba(0, 255, 255, 0));
    border-radius: 10px;
    padding: 5px;
    
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--product-price);
    text-align: center;
}

/* Estilo para o preço original (riscado e cinza) */
.product-price del .woocommerce-Price-amount.amount,
.product-price del span.woocommerce-Price-amount.amount {
    color: #888888 !important; /* Cinza */
    text-decoration: line-through !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important; /* Sombra preta */
}

/* Estilo para o preço final (sem sublinhado) */
.product-price ins .woocommerce-Price-amount.amount,
.product-price ins span.woocommerce-Price-amount.amount {
    text-decoration: none !important; /* Remove o sublinhado */
    color: var(--product-price); /* Mantém a cor definida na variável --product-price */
}

/* Ajuste para garantir que o preço final não herde o sublinhado se estiver dentro de um link */
.product-price a ins .woocommerce-Price-amount.amount,
.product-price a ins span.woocommerce-Price-amount.amount {
    text-decoration: none !important;
}




/* Info Sections */
.info-title {
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-color);
    position: relative;
    
}

.info-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    
}

.product-description {
    margin-bottom: 30px;
}

.description-content {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Product Attributes */
.product-attributes {
    margin-bottom: 30px;
}

.attributes-grid {
    display: grid;
    gap: 12px;
}

.attribute-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 15px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.attribute-item:hover {
    border-color: var(--primary-color);
    background: rgba(190, 28, 57, 0.1);
}

.attribute-label {
    font-weight: 600;
    color: var(--text-color);
}

.attribute-value {
    color: var(--primary-color);
    font-weight: 500;
}

/* Product Purchase */
.product-purchase {
    margin-bottom: 30px;
    border: 1px solid #bd1b3900;
}

/* Centralizar itens dentro do formulário de compra */
.purchase-form {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #bd1b39;
    display: flex;
    flex-direction: column; /* Empilha os itens verticalmente */
    justify-content: center; /* Para centralizar verticalmente os itens empilhados */
    align-items: center;    /* Centraliza os itens no eixo transversal (horizontalmente, neste caso) */
    /* Se você quiser um espaçamento entre os itens, pode adicionar: */
    /* gap: 15px; */ /* Ajuste o valor conforme necessário */
}

/*
   Garantir que a tabela de variações (se houver) e o container do botão
   não tenham margens que atrapalhem a centralização pelo flexbox no pai.
   Muitas vezes, eles já se comportam bem, mas se não, pode ser necessário:
*/
.woocommerce div.product form.cart .variations {
    margin-bottom: 1em; /* Exemplo de espaçamento, ajuste conforme necessário */
    /* Remova margens laterais se estiverem causando problemas com a centralização */
    /* margin-left: 0; */
    /* margin-right: 0; */
}

.woocommerce div.product form.cart .woocommerce-variation-add-to-cart {
    margin-left: 0;
    margin-right: 0;
}

.purchase-form .cart {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Estilizar o seletor de quantidade adequadamente */
.purchase-form .quantity {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.purchase-form .quantity label {
    margin-right: 10px;
    color: var(--text-color);
    font-weight: 600;
}

.purchase-form .quantity input.qty {
    background: var(--card-bg-color);
    border: 2px solid var(--border-color);
    color: var(--text-color);
    padding: 10px;
    border-radius: 5px;
    width: 80px;
    text-align: center;
    font-weight: 600;
    display: block !important;
}

.purchase-form .quantity input.qty:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 10px rgba(190, 28, 57, 0.3);
}

.purchase-form .quantity input {
    background: var(--card-bg-color);
    border: 2px solid var(--border-color);
    color: var(--text-color);
    padding: 10px;
    border-radius: 5px;
    width: 80px;
    text-align: center;
    font-weight: 600;
}

.purchase-form .quantity input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 10px rgba(190, 28, 57, 0.3);
}

/* Estilo Azul Ciano para o botão Adicionar ao Carrinho */
.purchase-form .single_add_to_cart_button {
    background: linear-gradient(135deg, #001122, #003747);
    color: #00ffff;
    border: 2px solid #00ffff;
    padding: 18px 32px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 3;
    cursor: pointer;
    clip-path: inset(0 0 0 0);
    font-size: 1.1rem;
    font-weight: bolder;
    text-transform: none; /* Removido uppercase para manter o texto normal */
    letter-spacing: 1px;
    width: 100%;
    max-width: 450px;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
}

.purchase-form .single_add_to_cart_button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.4), transparent); /* Gradiente azul ciano */
    transition: all 0.5s ease;
    z-index: 2;
}

.purchase-form .single_add_to_cart_button:hover {
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.7); /* Sombra azul ciano */
    transform: translateY(-3px);
    color: #ffffff; /* Opcional: mudar cor do texto no hover para melhor contraste */
    background-color: rgba(0, 0, 0, 0.682); /* Opcional: leve fundo no hover */
}

.purchase-form .single_add_to_cart_button:hover::before {
    left: 100%;
}

/* Ajustes de responsividade para o botão do carrinho, se necessário */
@media (max-width: 768px) {
    .purchase-form .single_add_to_cart_button {
        padding: 16px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .purchase-form .single_add_to_cart_button {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    .purchase-form .single_add_to_cart_button {
        padding: 10px 12px;
        font-size: 0.8rem; /* Ajustado para caber melhor em telas muito pequenas */
    }
}

/* Remove o campo de input de quantidade padrão do WooCommerce */
.woocommerce div.product form.cart .quantity {
    display: none !important;
}

/* Estilos para os seletores de variação do WooCommerce */
.variations_form.cart .variations {
    /* display: flex; */ /* Removido ou ajustado se estava causando problemas */
    /* flex-direction: column; */ /* Removido ou ajustado */
    /* align-items: center; */ /* Removido ou ajustado */
    width: 100%; /* Garantir que o container das variações ocupe a largura */
}

.variations_form.cart .variations td,
.variations_form.cart .variations th {
    display: block; /* Faz com que label e select fiquem em linhas separadas em mobile */
    width: 100%;
    text-align: left; /* Alinha o texto do label à esquerda */
    padding: 5px 0; /* Ajuste o padding vertical */
}

.variations_form.cart .variations td.label,
.variations_form.cart .variations th.label {
    padding-bottom: 5px; /* Espaço entre o label e o select */
}

.variations_form.cart .variations select {
    width: 100%; /* Faz o select ocupar toda a largura */
    margin-bottom: 10px; /* Espaço abaixo de cada select */
    min-width: initial; /* Reseta o min-width para mobile se necessário */
}

/* Ajustes específicos para telas menores */
@media (max-width: 768px) {
    .variations_form.cart .variations td.label label,
    .variations_form.cart .variations th.label label {
        display: block; /* Garante que o label ocupe a linha inteira */
        margin-bottom: 5px; /* Espaço entre o label e o select abaixo dele */
        text-align: left;
    }

    .variations_form.cart .variations td.value,
    .variations_form.cart .variations th.value {
        text-align: left;
        padding: 5px 0;
    }

    .variations_form.cart .variations select {
        /* Ajustes adicionais para o select em mobile, se necessário */
        font-size: 16px; /* Aumentar um pouco para melhor toque */
    }

    /* Se você estiver usando a estrutura de tabela padrão do WooCommerce */
    .woocommerce div.product form.cart .variations td,
    .woocommerce div.product form.cart .variations th {
        display: block; /* Força as células da tabela a se comportarem como blocos */
        width: 100%;
        text-align: left;
    }

    .woocommerce div.product form.cart .variations .label {
        padding-bottom: 5px; /* Espaço abaixo do rótulo */
    }

    .woocommerce div.product form.cart .variations .value {
        padding-bottom: 15px; /* Espaço abaixo do seletor */
    }

    .woocommerce div.product form.cart .variations select {
        width: 100% !important; /* Garante que o select ocupe toda a largura */
    }
}

/* Product Actions */
.product-actions {
    display: flex; /* Alinha os botões na horizontal */
    justify-content: space-between; /* Coloca um botão em cada extremidade */
    /* Ou use 'justify-content: flex-start;' e adicione gap se quiser ambos à esquerda com espaço:
    justify-content: flex-start;
    gap: 15px; 
    */
    align-items: center; /* Alinha verticalmente ao centro, se tiverem alturas diferentes */
    margin-top: 20px; /* Espaçamento acima da seção de botões */
    gap: 15px;
    flex-wrap: wrap;
}

/* Opcional: Ajustar largura dos botões se necessário */
.product-actions .neon-button {
    flex: 1;
    text-align: center;
    min-width: 180px;
}

.product-actions .neon-button.secondary {
    margin-top: 20px;
}

/* Classe específica para o botão Finalizar Compra - Verde Neon */
.neon-button.checkout-green {
    border: 2px solid #00ff00; /* Verde neon */
    color: #ffffff;
}

.neon-button.checkout-green::before {
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.4), transparent); /* Gradiente verde */
}

.neon-button.checkout-green:hover {
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.7); /* Glow verde neon */
    transform: translateY(-3px);
}

/* Classe específica para o botão Adicionar ao Carrinho - Azul Ciano */
.neon-button.cyan-cart {
    border: 2px solid #00ffff; /* Azul ciano */
    color: #ffffff;
}

.neon-button.cyan-cart::before {
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.4), transparent); /* Gradiente azul ciano */
}

.neon-button.cyan-cart:hover {
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.7); /* Glow azul ciano */
    transform: translateY(-3px);
}

/* Classe específica para o botão Voltar à Loja - Vermelho */
.neon-button.back-red {
    border: 2px solid #ff0040; /* Vermelho neon */
    color: #ffffff;
}

.neon-button.back-red::before {
    background: linear-gradient(90deg, transparent, rgba(255, 0, 64, 0.4), transparent); /* Gradiente vermelho */
}

.neon-button.back-red:hover {
    box-shadow: 0 0 15px rgba(255, 0, 64, 0.7); /* Glow vermelho */
    transform: translateY(-3px);
}

/* Estilo Verde Neon para o botão Finalizar Compra */
.product-actions .neon-button.checkout-button {
    border: 2px solid #00ff00; /* Verde neon */
    color: #ffffff;
}

.product-actions .neon-button.checkout-button::before {
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.4), transparent); /* Gradiente verde */
}

.product-actions .neon-button.checkout-button:hover {
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.7); /* Glow verde neon */
    transform: translateY(-3px);
}

/* Estilo Vermelho para o botão Voltar à Loja */
.product-actions .neon-button.back-to-shop {
    border: 2px solid #ff0040; /* Vermelho neon */
    color: #ffffff;
}

.product-actions .neon-button.back-to-shop::before {
    background: linear-gradient(90deg, transparent, rgba(255, 0, 64, 0.4), transparent); /* Gradiente vermelho */
}

.product-actions .neon-button.back-to-shop:hover {
    box-shadow: 0 0 15px rgba(255, 0, 64, 0.7); /* Glow vermelho */
    transform: translateY(-3px);
}

/* Responsividade para os botões de ação */
@media (max-width: 768px) {
    .product-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .product-actions .neon-button {
        width: 100%;
        text-align: center;
    }
}

/* Full Description Section */
.product-full-description-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.501), rgba(0, 0, 0, 0.501));
    margin-top: 60px;
}

.description-card {
    background: var(--card-bg-color);
    border-radius: 15px;
    border: 2px solid var(--border-color);
    padding: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: 1000px;
    margin: 0 auto;
    transition: all 0.3s ease;
    text-align: center;
}

.description-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--glow-shadow);
}

.description-card p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 20px;
    
}

.description-card h2,
.description-card h3,
.description-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    margin-top: 25px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .product-price {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .single-product-section {
        padding: 40px 5% 60px;
    }
    
    
    
    .product-title {
        font-size: 1.8rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .thumbnail-item {
        width: 50px;
        height: 50px;
    }
    
    .attribute-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .description-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .product-detail-grid {
        gap: 30px;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .product-price {
        font-size: 1.4rem;
    }
    
    .carousel-thumbnails {
        padding: 10px;
        gap: 8px;
    }
    
    .thumbnail-item {
        width: 45px;
        height: 45px;
    }
    
    .purchase-form .quantity {
        flex-direction: column;
        align-items: stretch;
    }
    
    .purchase-form .quantity input {
        width: 100%;
    }
}

.product-info {
  padding: 10px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.product-info h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: bolder;
  color: var(--secondary-color);
}

.product-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 5px;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
}

.product-price {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #3bc81c;
}

.old-price {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.5);
  margin-right: 10px;
  font-size: 1rem;
}







/* --- News Section --- */
.news-section {
    padding: 2rem 1rem;
    background-color: transparent; /* escuro como o fundo do site */
     display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; 

  }



  /* Layout responsivo */
  #curiosities-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
  }

  @media (min-width: 768px) {
    .news-card {
      flex: 1 0 calc(33% - 40px); /* 3 por linha com gap */
      max-width: 400px;
    }
  }

  @media (max-width: 767px) {
    .news-card {
      max-width: 90%;
    }
  }

/* --- Newsletter Section --- */
.newsletter-section {
  padding: 80px 5%;
}

.newsletter-container {
  background-color: var(--card-bg-color);
  border-radius: 10px;
  padding: 50px;
  text-align: center;
  border: 1px solid var(--border-color);
  background-image: linear-gradient(135deg, rgba(216, 19, 57, 0.1), rgba(0, 255, 255, 0.1));
}

.newsletter-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.newsletter-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: bold;
}

.newsletter-form {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 15px;
  background-color: rgba(30, 30, 30, 0.8);
  border: 1px solid var(--border-color);
  color: var(--text-color);
  border-radius: 5px 0 0 5px;
}

.newsletter-form button {
  padding: 15px 30px;
  border-radius: 0 5px 5px 0;
}

/* Partners Section */
/* --- Partners Section --- */
.partners-section {
  padding: 50px 5%;
  text-align: center;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Ajuste dinâmico das colunas */
    gap: 30px;
    margin-top: 50px;
    justify-content: center; /* Centraliza os elementos horizontalmente */
    align-items: center; /* Garante alinhamento vertical correto */
    max-width: 80vw; /* Limita a largura para evitar que se espalhem demais */
    margin-left: auto;
    margin-right: auto;
}


.partner-card {
  background-color: var(--card-bg-color);
  border-radius: 10px;
  padding: 30px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  backdrop-filter: blur(4px) !important;
}

.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--glow-shadow);
  border-color: var(--primary-color);
}

.partner-logo {
  width: 100%;
  max-width: 250px; /* Aumentado de 200px para 250px */
  aspect-ratio: 5 / 3;
  margin: 0 auto 20px;
  overflow: hidden;
  border-radius: 10px;
  border: 0px solid var(--primary-color);
  transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
  transform: scale(1.05);
  
    filter: brightness(1.5); /* brilho aumentado ao passar o mouse */
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Use 'contain' se quiser ver tudo da imagem mesmo com bordas */
  filter: brightness(1); /* valor base */
}

.partner-card h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.partner-category {
  color: var(--secondary-color);
  font-size: 0.9rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.partner-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: bold;
}




.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
}


/* Estilo base para todos os ícones sociais */
/* --- Social Icons (General) --- */
.social-icon {
  display: inline-flex; /* Para alinhar ícone e texto, se houver */
  align-items: center;
  justify-content: center;
  width: 40px; /* Tamanho do ícone */
  height: 40px; /* Tamanho do ícone */
  border-radius: 50%; /* Para torná-los circulares */
  text-decoration: none;
  font-size: 1.2rem; /* Tamanho do ícone da fonte, ajuste conforme necessário */
  transition: all 0.3s ease;
  /* Adicione aqui outras propriedades base que você tinha, como margens, etc. */
}

.social-icon:hover {
  transform: translateY(-5px) scale(1.1);
}

.social-icon.youtube {
  color: #ff0000;
  border: 2px solid #ff0000;
}

.social-icon.youtube:hover {
  background-color: #ff0000;
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
}

.social-icon.discord {
  color: #7289da;
  border: 2px solid #7289da;
}

.social-icon.discord:hover {
  background-color: #7289da;
  color: #fff;
  box-shadow: 0 0 15px rgba(114, 137, 218, 0.7);
}

.social-icon.github {
  color: #000000; /* Ou uma cor mais clara se o fundo for escuro, ex: #e0e0e0 */
  border: 2px solid #010409; /* Ou uma cor de borda correspondente */
}

.social-icon.github:hover {
  background-color: #000000;
  color: #fff;
  box-shadow: 0 0 15px rgba(29, 36, 63, 0.7);
}

.social-icon.whatsapp {
  color: #25d366;
  border: 2px solid #25d366;
}

.social-icon.whatsapp:hover {
  background-color: #25d366;
  color: #fff;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.7);
}

.social-icon.instagram {
  color: #e1306c;
  border: 2px solid #e1306c;
}

.social-icon.instagram:hover {
  background-color: #e1306c;
  color: #fff;
  box-shadow: 0 0 15px rgba(225, 48, 108, 0.7);
}

.social-icon.twitter {
  color: #1da1f2;
  border: 2px solid #1da1f2;
}

.social-icon.twitter:hover {
  background-color: #1da1f2;
  color: #fff;
  box-shadow: 0 0 15px rgba(29, 161, 242, 0.7);
}

.social-icon.facebook {
  color: #1877f2;
  border: 2px solid #1877f2;
}

.social-icon.facebook:hover {
  background-color: #1877f2;
  color: #fff;
  box-shadow: 0 0 15px rgba(24, 119, 242, 0.7);
}

.social-icon.twitch {
  color: #9146ff;
  border: 2px solid #9146ff;
}

.social-icon.twitch:hover {
  background-color: #9146ff;
  color: #fff;
  box-shadow: 0 0 15px rgba(145, 70, 255, 0.7);
}

.social-icon.linkedin {
  color: #0077b5;
  border: 2px solid #0077b5;
}

.social-icon.linkedin:hover {
  background-color: #0077b5;
  color: #fff;
  box-shadow: 0 0 15px rgba(0, 119, 181, 0.7);
}

.social-icon.behance {
  color: #1769ff;
  border: 2px solid #1769ff;
}

.social-icon.behance:hover {
  background-color: #1769ff;
  color: #fff;
  box-shadow: 0 0 15px rgba(23, 105, 255, 0.7);
}

.social-icon.vimeo {
  color: #1ab7ea;
  border: 2px solid #1ab7ea;
}

.social-icon.vimeo:hover {
  background-color: #1ab7ea;
  color: #fff;
  box-shadow: 0 0 15px rgba(26, 183, 234, 0.7);
}

.social-icon.soundcloud {
  color: #ff8800;
  border: 2px solid #ff8800;
}

.social-icon.soundcloud:hover {
  background-color: #ff8800;
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 136, 0, 0.7);
}

.social-icon.spotify {
  color: #1db954;
  border: 2px solid #1db954;
}

.social-icon.spotify:hover {
  background-color: #1db954;
  color: #fff;
  box-shadow: 0 0 15px rgba(29, 185, 84, 0.7);
}

.social-icon.mixcloud {
  color: #52aad8;
  border: 2px solid #52aad8;
}

.social-icon.mixcloud:hover {
  background-color: #52aad8;
  color: #fff;
  box-shadow: 0 0 15px rgba(82, 170, 216, 0.7);
}

.social-icon.tiktok {
  color: #ee1d52; /* Cor oficial do TikTok */
  border: 2px solid #ee1d52;
}

.social-icon.tiktok:hover {
  background-color: #ee1d52;
  color: #fff;
  box-shadow: 0 0 15px rgba(238, 29, 82, 0.7);
}



/* Team Section */
/* Team Section */
/* --- Team Section --- */
.team-section {
  padding: 80px 5%;
  text-align: center;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
  justify-content: center;
  align-items: stretch;

  /* Permite até 4 cards de 300px + 3 gaps de 30px = 1290px */
  max-width: calc(4 * 300px + 3 * 30px);
  margin-left: auto;
  margin-right: auto;
}

.team-card {
  background-color: #1eb0bd56;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  backdrop-filter: blur(4px) !important;

  flex: 1 1 300px;
  max-width: 300px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

/* Quebra para 2 por linha em telas menores */
@media (max-width: 992px) {
  .team-card {
    flex: 1 1 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}

/* Quebra para 1 por linha em telas pequenas */
@media (max-width: 600px) {
  .team-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}




/* Hover Effects */
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--cyan-glow);
  border-color: var(--secondary-color);
}

/* Avatar */
.team-avatar {
  width: 200px;
  height: 200px;
  margin: 30px auto;
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid #00e1ff46;
  transition: all 0.3s ease;
}

.team-card:hover .team-avatar {
  transform: scale(1.05);
  border: 2px solid #00e1ffb6;
  box-shadow: var(--cyan-glow);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text content */
.team-info {
  padding: 0 20px 30px;
}

.team-info h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.team-role {
  color: var(--secondary-color);
  font-size: 0.9rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.team-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: bold;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}


/* --- Become Partner CTA --- */
.become-partner {
  padding: 50px 5%;
}

.partner-cta {
  background-color: var(--card-bg-color);
  border-radius: 10px;
  padding: 50px;
  text-align: center;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(4px) !important;

}

.partner-cta h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.partner-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: bold;
}



/* --- About Section --- */
.about-section {
  padding: 60px 5%;
  text-align: center;
}

.about-box {
  border: 1px solid;
  border-color: #ff487a;
  background-color: rgba(255, 72, 121, 0.452);
  border-radius: 10px;
  padding: 40px;
  width: 80%;
  max-width: 1000px; 
  margin: 30px auto 0; 
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  text-align: left; 
  
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; /* Adicionada transição suave */
}

.about-box:hover {
  transform: translateY(-10px); /* Efeito de elevação */
  box-shadow: 0 0 20px #ff487a; /* Brilho vermelho */
  border-color: #ff487a; /* Opcional: Clarear a borda no hover */
  /* Se quiser um backdrop-filter mais intenso no hover, descomente abaixo */
  /* backdrop-filter: blur(8px); */ 
  /* -webkit-backdrop-filter: blur(8px); */
}

.about-icon {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 20px;
  text-align: center; /* Centraliza o ícone */
}

.about-box h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--text-color);
  text-align: center; /* Centraliza o título da caixa */
}

.about-box p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-size: 1rem;
  font-weight: bold;
}

/* Responsive adjustments for the About Box */
@media (max-width: 992px) {
  .about-box {
    width: 90%;
    padding: 30px;
  }
  .about-box h3 {
    font-size: 1.6rem;
  }
  .about-box p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 40px 5%;
  }
  .about-box {
    width: 95%;
    padding: 25px;
  }
  .about-icon {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .about-box h3 {
    font-size: 1.4rem;
  }
  .about-box p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .about-box {
    padding: 20px;
  }
  .about-box h3 {
    font-size: 1.3rem;
  }
}

/* --- Mission, Vision, Values Section --- */
.mission-vision {
    display: flex;
    flex-direction: column; /* Items will stack vertically */
    align-items: center; /* Center items if they are not full-width (though they will be) */
    gap: 30px; /* Vertical spacing between items */
    width: 100%;
    max-width: 1200px; /* Container max-width */
    margin: 0 auto;
    padding: 80px 5%;
    /* text-align: justify; Removed, item-specific text-align is used */
    box-sizing: border-box;
}

.mission,
.vision,
.values {
    width: 100%; /* Each item takes full width of the container */
    max-width: 100%; /* Ensure it doesn't exceed container if container has padding */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px);
    text-align: center; /* Text alignment for the content within the item */
    color: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
}

/* Cores e bordas individuais (preserved from original) */
.mission {
    background-color: #beba1a66;
    border: 1.5px solid #beba1a;
}

.vision {
    background-color: #8e1dc266;
    border: 1.5px solid #8e1dc2;
}

.values {
    background-color: #1fb1be66;
    border: 1.5px solid #1fb1be;
}

/* Hover com glow e destaque de borda (preserved from original) */
.mission:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px #beba1a;
    border-color: #beba1a;
}

.vision:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px #8e1dc2;
    border-color: #8e1dc2;
}

.values:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px #1fb1be;
    border-color: #1fb1be;
}

/* Ícones e textos (preserved from original, with line-height addition) */
.mission-icon,
.vision-icon,
.values-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.mission h3,
.vision h3,
.values h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: bolder;
}

.mission p,
.vision p,
.values p {
    color: rgba(255, 255, 255, 0.8);
    text-align: justify; /* Original alignment for readability of long text */
    line-height: 1.6; /* Added from plan for improved readability */
  flex-grow: 1; /* Allows the paragraph to expand vertically */
  margin-bottom: 0; /* Optional: remove bottom margin if it interferes with flex layout */
  font-weight: bold;
}

/* Responsividade */
/* Media queries for flex item sizing (e.g., 2 columns) are no longer needed as items are always 100% width. */
/* Keeping responsive adjustments for padding or container properties if any. */

@media (max-width: 320px) {
  .mission-vision {
    padding: 40px 10px;
    gap: 15px;
  }

  .mission,
  .vision,
  .values {
      padding: 20px; /* Adjusted padding for very small screens */
  }
}



/* --- Stats Section --- */
.stats-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 60px 5%;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 100px;
  text-align: center; /* Added this line */
}

.stat-box {
  flex: 1 1 250px;
  padding: 30px;
  border-radius: 15px;
  background-color: rgba(0, 0, 0, 0.5);
  text-align: center;
  color: #fff;
  border: 1px solid;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 10px;
  animation: scalePulse 2s infinite;
}

.stat-label {
  font-size: 1.2rem;
  opacity: 0.9;
  font-weight: bolder;
}

.yellow-box {
  border-color: #f9e214;
  background-color: rgba(249, 226, 20, 0.452);
}

.yellow-box:hover {
  box-shadow: 0 0 20px #f9e214; /* Brilho amarelo */
}

.purple-box {
  border-color: #a06cf5;
  background-color: rgba(160, 108, 245, 0.452);
}

.purple-box:hover {
  box-shadow: 0 0 20px #a06cf5; /* Brilho roxo */
}

.cyan-box {
  border-color: #3ce5e5;
  background-color: rgba(60, 229, 229, 0.452);
}

.cyan-box:hover {
  box-shadow: 0 0 20px #3ce5e5; /* Brilho ciano */
}

.red-box {
  border-color: #ff487a;
  background-color: rgba(255, 72, 121, 0.452);
}

.red-box:hover {
  box-shadow: 0 0 20px #ff487a; /* Brilho vermelho */
}

@keyframes scalePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

@media (max-width: 768px) {
  .stat-box {
    flex: 1 1 100%;
  }
}

/* Contact Section */
/* --- Contact Section --- */
.contact-section {
  padding: 50px 5%;
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

@media (min-width: 992px) {
  .contact-container {
    flex-direction: row;
  }

  .contact-info,
  .contact-form {
    width: 50%;
  }
}

.contact-info h2,
.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(30, 30, 30, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.info-content h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.info-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.social-contact h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
}

.social-contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: rgba(30, 30, 30, 0.8);
  padding: 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.social-contact-item:hover {
  transform: translateY(-5px);
}

.social-contact-item.youtube {
  border-left: 3px solid #ff0000;
}

.social-contact-item.youtube:hover {
  background-color: rgba(255, 0, 0, 0.2);
}

.social-contact-item.instagram {
  border-left: 3px solid #e1306c;
}

.social-contact-item.instagram:hover {
  background-color: rgba(225, 48, 108, 0.2);
}

.social-contact-item.twitter {
  border-left: 3px solid #1da1f2;
}

.social-contact-item.twitter:hover {
  background-color: rgba(29, 161, 242, 0.2);
}

.social-contact-item.discord {
  border-left: 3px solid #7289da;
}

.social-contact-item.discord:hover {
  background-color: rgba(114, 137, 218, 0.2);
}

.social-contact-item.whatsapp {
  border-left: 3px solid #00bb10;
}

.social-contact-item.whatsapp:hover {
  background-color: rgba(114, 218, 149, 0.2);
}

.social-contact-item.twitch {
  border-left: 3px solid #9146ff;
}

.social-contact-item.twitch:hover {
  background-color: rgba(145, 70, 255, 0.2);
}

.social-contact-item.tiktok {
  border-left: 3px solid #ee1d52;
}

.social-contact-item.tiktok:hover {
  background-color: rgba(238, 29, 82, 0.2);
}

.social-contact-item i {
  font-size: 1.5rem;
}

.contact-form form {
  background-color: var(--card-bg-color);
  border-radius: 10px;
  padding: 30px;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(4px) !important;

}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background-color: rgba(0, 0, 0, 0.8);
  border: 1px solid var(--border-color);
  color: var(--text-color);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 5px rgba(216, 19, 57, 0.5);
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-container input {
  width: auto;
}

/* --- FAQ Section --- */
.faq-section {
  padding: 80px 5%;
  text-align: center;
}

.faq-container {
  max-width: 800px;
  margin: 50px auto 0;
}

.faq-item {
  background-color: var(--card-bg-color);
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
    backdrop-filter: blur(4px) !important;
}

.faq-question:hover {
  background-color: rgba(216, 19, 57, 0.1);
    backdrop-filter: blur(4px) !important;
}

.faq-question h3 {
  font-size: 1.2rem;
}

.faq-icon {
  transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 500px;
}

.faq-answer p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Footer */
/* --- Footer --- */
footer {
  background-color: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  padding: 30px 5%;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-content p {
  color: rgba(255, 255, 255, 0.7);
}

.social-icons {
  display: flex;
  gap: 15px;
}



/* Responsive Styles */
/* --- Responsive Styles --- */
@media (max-width: 1200px) {
  .glitch {
    font-size: 3.5rem;
  }

}


  @media (max-width: 1024px) {
    .nav-links {
      position: fixed;
      top: var(--header-height);
      left: -100%;
      width: 100%;
      height: calc(100vh - var(--header-height));
      background-color: rgba(10, 10, 10, 0.95);
      backdrop-filter: blur(10px);
      transition: all 0.5s ease;
      z-index: 999;
    }
  }

@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
    z-index: 999;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

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

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .glitch {
    font-size: 3rem;
  }


}

@media (max-width: 768px) {
  .logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .hamburger {
    margin-left: auto;
  }

  .glitch {
    font-size: 2.5rem;
  }



  .news-card {
    grid-column: span 12;
  }



}

@media (max-width: 576px) {
  .glitch {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
    font-weight: bolder;
  }

  .section-title {
    font-size: 2rem;
  }

  .featured-grid,
  .video-grid,
  .products-grid,
  .partners-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    border-radius: 5px;
    margin-bottom: 15px;
  }

  .newsletter-form button {
    border-radius: 5px;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Carousel Styles --- */
/* Parceiros Carousel 1 */
.parceiros-carroussel {
  background-image: url('https://spockygames.com.br/wp-content/themes/spockygames_new/assets/images/bg-site.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 60px 0;
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-container {
  overflow: hidden;
  width: 100%;
  max-width: 50%;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.carousel-slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-slide img {
  max-width: 100%;
  max-height: 200px;
  cursor: pointer;
  transition: transform 1.5s ease-in-out;
  transform: scale(1);
  filter: brightness(1);
}

@media (max-width: 768px) {
  .carousel-container {
    max-width: 90%;
  }

  .carousel-slide img {
    max-height: 140px;
  }
}






/* Shine Carousel (Partners) */
.shine-carousel-container {
  overflow: hidden;
  width: 100%;
  max-width: 50%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  position: relative;
  padding-top: 24px;
  margin-bottom: 24px;
}

.shine-carousel-track {
  display: flex;
  transition: transform 2.5s ease-in-out;
}

.shine-carousel-slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.shine-carousel-slide img {
  max-width: 75%;
  max-height: 120px;
  transition: transform 0.5s ease, filter 0.5s ease;
  cursor: pointer;
  transform: scale(0.95);
  filter: brightness(0.9);
}

/* Quando ativa no centro: brilha e amplia */
.shine-carousel-slide.active img {
  transform: scale(1.15);
  filter: brightness(1.5) drop-shadow(0 0 1px rgba(255, 255, 255, 0.1));
}

/* Responsivo */
@media (max-width: 768px) {
  .shine-carousel-container {
    max-width: 90%;
  }

  .shine-carousel-slide img {
    max-height: 80px;
  }
}







/* Parceiros Carousel 2 (Smaller) */
.parceiros-carroussel2 {
  
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 10px 0px;
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.carousel-container2 {
  overflow: hidden;
  width: 100%;
  max-width: 20%; /* ocupa metade da página */
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.carousel-slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-slide img {
  max-width: 100%;
  max-height: 200px;
  transition: transform 0.6s ease-in-out;
  cursor: pointer;
}

.carousel-slide.active img {
  transform: scale(1.45);
}

@media (max-width: 768px) {
  .carousel-container {
    max-width: 90%;
  }

  .carousel-slide img {
    max-height: 140px;
  }

  .carousel-slide.active img {
    transform: scale(1.25);
  }
}




/* --- Video Player Styles --- */
/* Latest Video Box (YouTube) */
#latest-video-box {
  max-width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 3px solid var(--primary-color);
  border-radius: 12px;
  margin: 20px auto;
}
iframe {
  width: 100%;
  height: 100%;
  border: none;
}


/* Live Highlight Section */
.live-highlight-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem 0;
}
.live-banner {
  width: 100%;
  max-width: 900px;
  position: relative;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.live-banner img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.live-center-content {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.liveplayer-chat-wrapper {
  width: 100%;
  min-height: 400px;
  margin-top: 1rem;
}
@media (max-width: 900px) {
  .live-banner, .live-center-content { max-width: 100%; }
  
}
/* Big Live Player */
.big-live-player-box {
  width: 100vw;
  max-width: 1200px;
  margin: 0 auto 2rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.big-live-player-video {
  width: 100%;
  aspect-ratio: 16/9;
  max-width: 1100px;
  border-radius: 18px;
  box-shadow: 0 4px 32px #000a;
  background: #111;
  margin-bottom: 1rem;
  overflow: hidden;
}
@media (max-width: 900px) {
  .big-live-player-box { max-width: 100vw; }
  .big-live-player-video { max-width: 100vw; border-radius: 8px; }
}

.big-live-player-title {
  font-size: 2em;
  color: #fff;
  margin-bottom: 10px;
  text-align: center;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 20px;
}


.big-live-player-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 16px 0 8px 0;
}

.big-live-player-buttons a {
  padding: 12px 30px;
  background-color: #0000006b;
  border: 2px solid var(--primary-color);
  color: var(--text-color);
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 3;
  cursor: pointer;
  clip-path: inset(0 0 0 0);
  text-decoration: none;
  font-size: 1.1em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  letter-spacing: 0.5px;
}

.big-live-player-buttons a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(190, 28, 57, 0.4), transparent);
  transition: all 0.5s ease;
  z-index: 2;
}

.big-live-player-buttons a:hover {
  box-shadow: 0 0 15px rgba(190, 28, 57, 0.7);
  transform: translateY(-3px);
  color: var(--text-color);
}

.big-live-player-buttons a:hover::before {
  left: 100%;
}

.big-live-player-buttons a.secondary {
  border-color: var(--secondary-color);
}

.big-live-player-buttons a.secondary:hover {
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.7);
}

.big-live-player-buttons a.secondary::before {
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.4), transparent);
}

@media (max-width: 600px) {
  .big-live-player-buttons {
    flex-direction: row;
    gap: 10px;
    margin: 12px 0 6px 0;
  }
  .big-live-player-buttons a {
    width: 100%;
    min-width: 150px  ;
    font-size: 1em;
    padding: 12px 0;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .big-live-player-buttons a {
    font-size: 0.95em;
    padding: 10px 0;
  }
}

/* Live Box (Twitch/Other Stream) */
.live-box {
  position: relative;
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--primary-color);
}

.live-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

#video-box {
  max-width: 720px;
  margin: 0 auto;
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  overflow: hidden;
}

/* --- Custom Banner Styles --- */
.custom-retro-banner-wrapper {
  position: relative;
  width: 100%;
  max-width: 720px;
  height: 120px;
  margin: 0 auto 24px auto;
  background: url('../images/banner_wide.png') center center/cover no-repeat;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px #000a;
  transition: height 0.3s;
}

.custom-retro-character {
  position: absolute;
  bottom: 10px;
  left: -80px;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: flex-end;
  z-index: 4;
  pointer-events: none;
  transition: left 0.3s ease-in-out;
}

.custom-retro-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 40px;
  white-space: nowrap;
  transition: left 0.3s ease-in-out;
}
.custom-retro-content a {
  color: #fff;
  font-size: 2rem;
  font-family: 'Orbitron', 'monospace', sans-serif;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  animation: pulse 1.5s infinite alternate;
}

.custom-retro-content a.glitch {
  color: #fff;
  position: relative;
  animation: pulse 2s infinite alternate;
  filter: brightness(1.1);
}
.custom-retro-content a.glitch::before,
.custom-retro-content a.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  color: #fff;
  background: transparent;
  pointer-events: none;
  opacity: 0.3;
  filter: blur(0.5px);
}
.custom-retro-content a.glitch::before {
  text-shadow: -2px 0 #0ff, 2px 2px #f0f;
  clip-path: polygon(0 0, 100% 0, 100% 40%, 0 40%);
  animation: glitchTop 1.2s infinite linear alternate-reverse;
}
.custom-retro-content a.glitch::after {
  text-shadow: -1px 0 #f0f, 1px 1px #0ff;
  clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
  animation: glitchBot 1.2s infinite linear alternate-reverse;
}

.rbann-logo,
.custom-banner-logo {
  max-height: 80%;
  max-width: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

@keyframes glitchTop {
  0% { transform: translate(0,0); }
  20% { transform: translate(-2px,-2px); }
  40% { transform: translate(-4px,2px); }
  60% { transform: translate(2px,-1px); }
  80% { transform: translate(-1px,2px); }
  100% { transform: translate(0,0); }
}
@keyframes glitchBot {
  0% { transform: translate(0,0); }
  20% { transform: translate(2px,2px); }
  40% { transform: translate(4px,-2px); }
  60% { transform: translate(-2px,1px); }
  80% { transform: translate(1px,-2px); }
  100% { transform: translate(0,0); }
}
@keyframes pulse {
  0% { text-shadow: 0 0 8px #fff, 0 0 16px #0ff; }
  100% { text-shadow: 0 0 14px #0ff, 0 0 32px #f0f; }
}


#latest-video-box {
  max-width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 3px solid var(--primary-color);
  border-radius: 12px;
  margin: 20px auto;
}
iframe {
  width: 100%;
  height: 100%;
  border: none;
}



/* --- Retro Effects & Canvas --- */
#retro-bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  background: black;
  display: block;
}

    canvas {
      display: block;
      position: fixed;
      top: 0; left: 0;
      z-index: -1;
      background: #0a001f;
    }

    .pixelated {
  image-rendering: pixelated;
  transform: scale(1.05);
  filter: contrast(150%) brightness(120%);
  transition: all 0.3s ease;
  opacity: 0;
}

.pixelated.animate {
  transform: scale(1);
  filter: none;
  opacity: scroll;
}



/* 🧱 Seções com snap (experiência tipo “tela por tela”) */
/* --- Snap Scrolling Styles --- */
.snap-section {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centraliza tudo corretamente */

  box-sizing: border-box;
}

.section-title {
  margin-top: 0 !important; /* Evita cortes */
}

.snap-section::-webkit-scrollbar {
  display: none;
}

/* ✅ Se você ainda quiser uma seção de tela cheia, adicione essa classe extra */
/* .snap-full { */
/* min-height: 100vh; */
/* } */

/* 🛑 Última snap-section: reduzida para permitir rolagem além dela */
.snap-section[data-last] {
  /* Esse valor ainda pode ser usado, se desejar menor que tela cheia */
  min-height: 90vh;
}

/* 🆓 Seção final livre (ex: banner + footer) sem snapping */
.non-snap {
  scroll-snap-align: none;
  scroll-snap-stop: normal;
  padding: 4rem 2rem;
  box-sizing: border-box;
  background: #000;
}
.non-snap {
  scroll-snap-align: none;
  scroll-snap-stop: normal;
  padding: 4rem 2rem;
  box-sizing: border-box;
  background: #000;
  min-height: 40vh;
}
/* ✅ Footer com altura mínima garantida */
footer {
  min-height: 20vh;
}



/* Estilização da seção parceiros, caso ainda não tenha */
.parceiros-carroussel {
  padding-bottom: 4rem;
  text-align: center;
}




/* Conteúdo inicialmente oculto */
/* --- Animation Styles --- */
/* Car Brake / Slide-in Effects */
.animated-content {
  opacity: 0;
  transform: translateX(0);
}

/* Esquerda → Centro */
.effect-car-left .animated-content {
  animation: carBrakeLeft 1s ease-out forwards;
}

/* Direita → Centro */
.effect-car-right .animated-content {
  animation: carBrakeRight 1s ease-out forwards;
}

/* Cima → Centro */
.effect-car-top .animated-content {
  animation: carBrakeTop 1s ease-out forwards;
}

/* Keyframes para os três sentidos restantes */
@keyframes carBrakeLeft {
  0% {
      transform: translateX(-100%) skewX(-12deg); /* Menos agressivo */
      opacity: 0;
  }
  70% {
      transform: translateX(10px) skewX(3deg); /* Ajustar para um valor menor */
      opacity: 1;
  }
  100% {
      transform: translateX(0) skewX(0);
      opacity: 1;
  }
}

@keyframes carBrakeRight {
  0% {
    transform: translateX(150vw) skewX(12deg);
    opacity: 0;
  }
  70% {
    transform: translateX(-25px) skewX(-3deg);
    opacity: 1;
  }
  100% {
    transform: translateX(0) skewX(0);
    opacity: 1;
  }
}

@keyframes carBrakeTop {
  0% {
      transform: translateY(-100%) skewY(-12deg); /* Menos agressivo */
      opacity: 0;
  }
  70% {
      transform: translateY(10px) skewY(3deg); /* Ajustar para um valor menor */
      opacity: 1;
  }
  100% {
      transform: translateY(0) skewY(0);
      opacity: 1;
  }
}


/* Animação para fade-in e zoom-in com recuo */
@keyframes fadeInZoomInRecoil {
  0% {
      opacity: 0;
      transform: scale(0.8);
  }
  80% {
      opacity: 1;
      transform: scale(1.05); /* Zoom um pouco maior */
  }
  100% {
      opacity: 1;
      transform: scale(1); /* Recuo para o tamanho final */
  }
}

/* FadeInZoomInRecoil Effect */
.animated-content2 {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  text-align: center;
}

.animated-content2.show {
  animation: fadeInZoomInRecoil 1s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Ajuste o tempo e a curva conforme necessário */
}



/* Channel Carousel */
.channel-carousel-section {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 4rem 0 2rem; /* Espaço adicional para evitar cortes */
  text-align: center; /* Centraliza o título */
}

.channel-carousel-section .section-title {
  margin-bottom: 2rem;
}

.channel-carousel-container {
  width: 100%;
  overflow-x: hidden; /* 🛠 Impede quebra na rolagem horizontal */
  position: relative;
  white-space: nowrap; /* 🛠 Evita que os slides quebrem para outra linha */
}


.channel-carousel-track {
  display: flex;
  gap: 5rem; /* Espaçamento aumentado */
  align-items: center;
}

.channel-slide {
  flex: 0 0 auto;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  position: relative;
  padding: 2rem 0; /* Adiciona espaço extra para evitar cortes */
}

.channel-slide a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: white;
}

.channel-slide img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #cf1d3f; /* Borda padrão */
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-width 0.3s ease;
}

.channel-slide p {
  margin-top: 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  transition: text-shadow 0.3s ease;
}

/* 🛠 Correção do hover */
.channel-slide:hover img, 
.channel-slide:has(:hover) img {
  transform: scale(1.2);
  border-width: 3px;
  box-shadow: 0 0 12px #cf1d3f;
  position: relative;
  z-index: 10; /* Eleva a imagem para evitar cortes */
}

.channel-slide:hover p, 
.channel-slide:has(:hover) p {
  text-shadow: 0 0 8px #cf1d3f;
}

/* 📱 Ajuste responsivo */
@media (max-width: 768px) {
  .channel-slide img {
    width: 120px;
    height: 120px;
  }
  .channel-slide p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .channel-slide img {
    width: 100px;
    height: 100px;
  }
  .channel-slide p {
    font-size: 0.9rem;
  }
}


.channel-slide:hover img, 
.channel-slide:has(:hover) img {
  transform: scale(1.2);
  border-width: 3px;
  box-shadow: 0 0 16px #cf1d3f; /* Glow mais intenso */
  position: relative;
  z-index: 10;
}

/* 🛠 Faz o título seguir a imagem no hover */
.channel-slide:hover p, 
.channel-slide:has(:hover) p {
  text-shadow: 0 0 10px #cf1d3f;
  transform: scale(1.1) translateY(8px); /* Aumenta levemente e desce junto com a imagem */
}

.channel-slide p {
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  transition: text-shadow 0.3s ease, transform 0.3s ease; /* 🛠 Suaviza a animação */
}

/* 🔥 Agora o título acompanha a imagem de forma gradual */
.channel-slide:hover p, 
.channel-slide:has(:hover) p {
  text-shadow: 0 0 10px #cf1d3f;
  transform: scale(1.08) translateY(4px); /* 🛠 Movimentação mais sutil e fluida */
}

/* --- Game Section (Extras Page) --- */
.game-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  box-sizing: border-box;
  width: 100vw;         /* Garante que a seção ocupe toda a largura da viewport */
  max-width: 100vw;     /* Impede que seja restringida por outro container */
  overflow-x: hidden;   /* Evita scroll horizontal por animações */
}




/* --- On-Demand Content Section --- */
.ondemand-section {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  color: white;
}

.ondemand-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;  
  text-shadow: 1px 1px 2px #000;
  font-weight: bolder;
}

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

.ondemand-card {
  background: #be1c3a7a;
  border: 1px solid #be1c39;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 4px #be1c3960;
  backdrop-filter: blur(4px) !important ;
}

.ondemand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 12px #be1c39a0;
}

.ondemand-card iframe {
  width: 100%;
  height: 180px;
  border: none;
}

.ondemand-card .title {
  padding: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
  text-shadow: 1px 1px 1px #000;
  font-weight: bolder;
}

/* SEÇÃO PRINCIPAL */
/* --- Index Page Video Section --- */
.indexvideo-section {
  padding: 2rem;
  background-color: transparent;
  color: #fff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* TÍTULO */
.indexvideo-title-wrapper {
  width: 100%;
  text-align: center;
  margin-bottom: 1.5rem;
}

.indexvideo-title { 
  font-size: 1.5rem;
  display: inline-block;
  text-align: center;
  font-weight: bold;
}

/* CONTAINER FLEXÍVEL */
.indexvideo-container {
  display: grid;
  /* Ajusta para 3 colunas em telas maiores, com um mínimo de 320px por item */
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 1200px;
  width: 100%;
}


/* ITEM (CARD) */
.indexvideo-item {
  background: rgba(190, 28, 58, 0.541);
  border: 1px solid #be1c39;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 4px #be1c3960; /* Sombra inicial mais sutil */
  /* Adiciona transição para box-shadow para o efeito de glow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.indexvideo-item:hover {
  transform: scale(1.05); /* Efeito de ampliação suave */
  box-shadow: 0 0 25px #be1c39; /* Efeito de glow mais pronunciado na cor do tema */
}

lite-youtube {
  background-color: #000;
  position: relative;
  display: block;
  contain: content;
  background-position: center center;
  background-size: cover;
  cursor: pointer;
  max-width: none !important; /* Remove a limitação de largura */
  width: 100% !important; /* Ajusta a largura para ocupar todo o espaço disponível */
}
/* VIDEO DENTRO DO CARD */
.indexvideo-item iframe,
.indexvideo-item lite-youtube {
  width: 100%;
  height: 100%; /* Permite que o player ocupe toda a altura da box */
  display: block;
  border: none;
  background-color: #000000;
}

/* TEXTO */
.indexvideo-title-text {
  padding: 0.75rem;
  font-size: 1.3rem;
  text-align: center;
  color: #fff;
  font-weight: bolder;
}

/* AJUSTE PARA TELAS MENORES */
@media (max-width: 768px) {
  .indexvideo-container {
    grid-template-columns: 1fr;
  }

  .indexvideo-item {
    width: 100%;
  }

  .indexvideo-item iframe,
  .indexvideo-item lite-youtube {
    height: auto;
  }
}


/* --- Matrix & Roulette Game Styles (Extras Page) --- */
.matrix-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: linear-gradient(to bottom right, #1a1a1ab6, #2c001fc0);
  border-radius: 15px;
  padding: 30px;
  width: 100%;
  box-sizing: border-box;
  border: 2px solid #bd1b39;
  color: white;
}

@media (min-width: 768px) {
  .matrix-container {
    flex-direction: row;
    max-width: 1000px;
    margin: 0 auto;
  }
}

.matrix-left, .matrix-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.matrix-textarea {
  width: 100%;
  height: 160px;
  font-size: 1.1em;
  border-radius: 12px;
  border: none;
  padding: 12px 16px;
  resize: none;
  background-color: #000;
  color: #0f0;
  font-family: monospace;
}

.matrix-button {
  padding: 12px 30px;
  background-color: #0000006b;
  border: 2px solid var(--primary-color);
  color: var(--text-color);
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 3;
  cursor: pointer;
  clip-path: inset(0 0 0 0);
}

.matrix-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(190, 28, 57, 0.4), transparent);
  transition: all 0.5s ease;
  z-index: 2;
}

.matrix-button:hover {
  box-shadow: 0 0 15px rgba(190, 28, 57, 0.7);
  transform: translateY(-3px);
}

.matrix-button:hover::before {
  left: 100%;
}

.matrix-button.secondary {
  border-color: var(--secondary-color);
}

.matrix-button.secondary:hover {
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.7);
}

.matrix-button.secondary::before {
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.4), transparent);
}


.matrix-roulette {
  font-size: 1.5em;
  letter-spacing: 6px;
  text-align: center;
  font-family: monospace;
  font-weight: bold;
  min-height: 80px;
  border-radius: 10px;
  padding: 10px;
  border: 2px solid rgba(116, 116, 116, 0.3);
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  color: #00ff00;
  overflow: hidden;
}

.matrix-result {
  font-size: 1.5em;
  font-weight: bold;
  color: cyan;
  text-align: center;
  animation: bounce 1.2s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* --- Audio Control Styles (Extras Page) --- */
.volume-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1em;
  color: #fff;
}

#volumeControl {
  flex: 1;
  appearance: none;
  height: 6px;
  background: #444;
  border-radius: 5px;
  outline: none;
  transition: background 0.3s;
}

#volumeControl::-webkit-slider-thumb {
  appearance: none;
  width: 14px;
  height: 14px;
  background: #bd1b39;
  border-radius: 50%;
  cursor: pointer;
}

#roulette {
  display: inline-block;
  width: 100%; /* ou defina um valor fixo como 400px */
  max-width: 100%; /* limite superior */
  overflow: hidden;
  text-overflow: clip; /* ou "ellipsis" se quiser "..." */
  white-space: nowrap;
}

#rouletteWrapper {
  width: 100%;
  max-width: 450px; /* ajuste conforme o layout */
  margin: 0 auto;
  overflow: hidden;
}
#roulette {
  white-space: nowrap;
}

.audio-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 10px;
  margin-top: 20px;
  color: white;
  font-family: monospace;
  font-size: 1em;
}

.audio-controls input[type="range"] {
  width: 60%;
}

.audio-controls input[type="file"] {
  color: white;
  background: transparent;
  border: none;
}

.volume-wrapper,
.duration-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1em;
  color: #fff;
  margin-bottom: 10px;
}

#volumeControl,
#durationControl {
  flex: 1;
  appearance: none;
  height: 6px;
  background: #444;
  border-radius: 5px;
  outline: none;
  transition: background 0.3s;
}

#volumeControl::-webkit-slider-thumb,
#durationControl::-webkit-slider-thumb {
  appearance: none;
  width: 14px;
  height: 14px;
  background: #bd1b39;
  border-radius: 50%;
  cursor: pointer;
}

.slider-label {
  background: #222;
  border: 1px solid #bd1b39;
  padding: 2px 6px;
  border-radius: 5px;
  font-family: monospace;
  font-size: 0.9em;
}


/* --- "Back to Top" Button --- */
.top-button {
  position: fixed;
  bottom: 90px; /* Eleva o botão acima da footer */
  right: 15px;
  background-color: rgba(0, 0, 0, 0.562); /* Vermelho transparente */
  color: white;
  border: 2px solid rgb(190, 28, 58); /* Borda mais opaca */
  padding: 7px 7px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(190, 28, 57, 0.7);
  display: none;
  z-index: 9999; /* Mantém o botão sempre acima da footer */
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.top-button:hover {
  transform: scale(1.1); /* Leve zoom ao passar o mouse */
  box-shadow: 0 0 5px rgba(190, 28, 57, 1); /* Glow vermelho mais intenso */
}

.top-button.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.top-button:hover {
  transform: scale(1.1); /* Leve zoom ao passar o mouse */
  box-shadow: 0 0 25px rgba(190, 28, 57, 1); /* Glow vermelho mais intenso */
}

/* Product Carousel Specific Styles - CORREÇÃO COMPLETA */
.product-carousel-main {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.product-carousel-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.product-carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
    position: relative;
}

.product-carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    
}

/* .product-carousel-slide.active .product-main-image {
    
} */

/* Product Carousel Navigation Buttons */
.product-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--primary-color);
    color: var(--text-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 1.2rem;
}

.product-carousel-btn:hover {
    background: var(--primary-color);
    box-shadow: 0 0 15px rgba(190, 28, 57, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.product-carousel-prev {
    left: 15px;
}

.product-carousel-next {
    right: 15px;
}

/* Product Carousel Thumbnails */
.product-carousel-thumbnails {
    display: flex;
    gap: 10px;
    padding: 15px;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.product-thumbnail-item {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.product-thumbnail-item:hover,
.product-thumbnail-item.active {
    border-color: var(--primary-color);
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(190, 28, 57, 0.5);
}

.product-thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Product Details Page Styles --- */
/* Estilos para página de produto individual */
.product-details-section {
    padding: 2rem 0;
    min-height: 60vh;
}

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

/* Galeria de Imagens */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    background: var(--card-bg-color);
    border: 2px solid var(--secondary-color);
    box-shadow: var(--cyan-glow);
}

.product-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-main-image:hover {
    transform: scale(1.05);
}

.thumbnail-gallery {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary-color);
    opacity: 1;
    box-shadow: 0 0 10px var(--primary-color);
}

/* Informações do Produto */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.product-title {
    font-size: 2.5rem;
    color: rgb(0, 204, 255);
    
    margin: 0;
}

.product-color {
    padding: 0.5rem 1rem;
    background: var(--card-bg-color);
    border-radius: 8px;
    border: 1px solid var(--secondary-color);
}

.color-name {
    color: var(--secondary-color);
    font-weight: bold;
}

.product-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #3bc81c;
    text-shadow: 0 0 10px #3bc81c;
}

.product-description,
.product-full-description,
.product-attributes {
    
    padding: 0.1rem;
    
    
}

.product-description h3,
.product-full-description h3,
.product-attributes h3 {
    color: var(--secondary-color);
    margin-top: 0;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--secondary-color);
    text-align: center;
    
}

.container h2 {
 text-align: center;
 margin-bottom: 25px;
}

.attribute-item {
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 183, 189, 0.2);
    text-align: center;
}

.attribute-item:last-child {
    border-bottom: none;
}

.product-purchase {
    
    
    border-radius: 12px;
    
}

.product-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsividade */
@media (max-width: 768px) {
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .main-image {
        height: 300px;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .product-title {
        font-size: 1.5rem;
    }
    
    .main-image {
        height: 250px;
    }
    
    .thumbnail {
        width: 50px;
        height: 50px;
    }
}

/* Cart Page Styles */
.cart-section {
    padding: 4rem 0;
    background: transparent;
    overflow-x: hidden;
}

.cart-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cart-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
    overflow: hidden;
}

/* Empty Cart Styles */
.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.empty-cart-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.empty-cart-title {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.empty-cart-message {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Cart Items Container */
.cart-items-container {
    background: #980a2474;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    margin: 10px;
    max-width: calc(100% - 20px);
    box-sizing: border-box;
}

.cart-section-title {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

/* Cart Table Styles */
.cart-table-wrapper {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  overflow: visible;
}

.shop_table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
    table-layout: auto;
    min-width: unset;
}

.shop_table th,
.shop_table td {
    padding: 1rem 0.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
    word-wrap: break-word;
    overflow: hidden;
    vertical-align: middle;
}

.shop_table th {
    background: rgba(var(--primary-color-rgb), 0.1);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.shop_table tbody tr {
    transition: background-color 0.3s ease;
}

.shop_table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.shop_table .product-thumbnail {
    width: 60px;
    text-align: center;
}

.shop_table .product-name {
    width: auto;
    padding-left: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 120px;
}

.shop_table .product-price {
    width: 80px;
    text-align: center;
}

.shop_table .product-quantity {
    width: 80px;
    text-align: center;
}

.shop_table .product-subtotal {
    width: 90px;
    text-align: center;
}

.shop_table .product-remove {
    width: 40px;
    text-align: center;
}

/* Product Thumbnail */
.product-thumbnail img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  margin: 0 auto;
  display: block;
}

/* Product Name */
.product-name a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.product-name a:hover {
    color: var(--primary-color);
}

/* Product Price */
.product-price,
.product-subtotal {
    font-weight: 600;
    color: var(--product-price);
    font-size: 1.7rem;
}

/* Quantity Input */
.product-quantity input[type="number"] {
    width: 80px;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background: var(--card-bg);
    color: var(--text-color);
    text-align: center;
    font-weight: 500;
}

.product-quantity input[type="number"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(var(--primary-color-rgb), 0.2);
}

/* Remove Button */
.product-remove .remove {
    color: #ff4757;
    font-size: 1.2rem;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.product-remove .remove:hover {
    background: rgba(255, 71, 87, 0.1);
    transform: scale(1.1);
}

/* Cart Actions */
.actions {
    background: rgba(var(--primary-color-rgb), 0.05);
    padding: 1.5rem !important;
}

.coupon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  padding: 0 1rem;
}

.coupon label {
  color: var(--text-color);
  font-weight: 500;
  min-width: 80px;
}

.coupon input[type="text"] {
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  background: #000;
  color: var(--text-color);
  min-width: 200px;
  max-width: 300px;
  flex: 1;
  text-align: center;
}

.coupon input[type="text"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(var(--primary-color-rgb), 0.2);
}

.coupon .button,
.actions .button {
  /* Remover estilos antigos e aplicar neon-button */
  padding: 24px 50px;
  background-color: #0000006b;
  border: 2px solid var(--primary-color);
  color: var(--text-color);
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 3;
  cursor: pointer;
  clip-path: inset(0 0 0 0);
  font-size: 1.1rem;
  font-weight: bolder;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.coupon .button::before,
.actions .button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(190, 28, 57, 0.4), transparent);
  transition: all 0.5s ease;
  z-index: 2;
}

.coupon .button:hover,
.actions .button:hover {
  box-shadow: 0 0 15px rgba(190, 28, 57, 0.7);
  transform: translateY(-3px);
}

.coupon .button:hover::before,
.actions .button:hover::before {
  left: 100%;
}

/* Variante verde para o botão Aplicar Cupom */
.coupon .button[name="apply_coupon"] {
  border-color: #00ff00;
}

.coupon .button[name="apply_coupon"]::before {
  background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.4), transparent);
}

.coupon .button[name="apply_coupon"]:hover {
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.7);
}

/* Cart Totals Container */
.cart-totals-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 25px;
}

.cart-collaterals {
    background: #be1c3a76;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    margin: 0;
}

/* Cart Totals */
.cart_totals {
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

.cart_totals h2 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.cart_totals table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
}

.cart_totals th,
.cart_totals td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
    box-sizing: border-box;
    vertical-align: middle;
}

.cart_totals th {
    text-align: left;
    font-weight: 500;
    width: 50%;
}

.cart_totals td {
    text-align: right;
    font-weight: 600;
    width: 50%;
}

.cart_totals .order-total th,
.cart_totals .order-total td {
    font-size: 1.2rem;
    color: var(--product-price);
    border-bottom: 2px solid var(--primary-color);
}

/* Proceed to Checkout Button */
.wc-proceed-to-checkout {
    margin-top: 1.5rem;
    padding: 0 1rem;
    text-align: center;
    box-sizing: border-box;
}

.wc-proceed-to-checkout .checkout-button {
    padding: 24px 50px;
    background-color: #0000006b;
    border: 2px solid #00ff00; /* Verde neon */
    color: #ffffff;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 3;
    cursor: pointer;
    clip-path: inset(0 0 0 0);
    font-size: 1.1rem;
    font-weight: bolder;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    width: auto;
    min-width: 280px;
}

.wc-proceed-to-checkout .checkout-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.4), transparent); /* Gradiente verde */
    transition: all 0.5s ease;
    z-index: 2;
}

.wc-proceed-to-checkout .checkout-button:hover {
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.7); /* Glow verde neon */
    transform: translateY(-3px);
}

.wc-proceed-to-checkout .checkout-button:hover::before {
    left: 100%;
}

/* Cart Actions */
.cart-actions {
    text-align: center;
}

/* Cart Responsive - Tablets */
@media (max-width: 768px) {
    .cart-section {
        padding: 2rem 0;
    }
    
    .cart-items-container {
        margin: 0 1rem;
        padding: 1rem;
    }
    
    .cart-collaterals {
        margin: 0 1rem;
        padding: 1rem;
    }
    
    .shop_table th,
    .shop_table td {
        padding: 0.5rem 0.25rem;
        font-size: 0.85rem;
    }
    
    .product-thumbnail img {
        width: 45px;
        height: 45px;
    }
    
    .product-quantity input[type="number"] {
        width: 65px;
        padding: 0.3rem;
        background-color: #000;
    }
    
    .product-price,
    .product-subtotal {
        font-size: 0.9rem;
    }
    
    .cart-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .shop_table {
        min-width: 650px;
        width: 100%;
    }
    
    .coupon {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    
    .coupon label {
        min-width: auto;
        text-align: center;
    }
    
    .coupon input[type="text"] {
        min-width: auto;
        width: 100%;
    }
    
    .coupon .button,
    .actions .button {
        width: 100%;
        padding: 18px 30px;
        font-size: 1rem;
    }
    
    .actions {
        padding: 1rem !important;
    }
    
    .cart_totals th,
    .cart_totals td {
        padding: 0;
        display: block;
        width: 100% !important;
        text-align: center !important;
        border-bottom: none;
        box-sizing: border-box;
        position: relative;
    }
    
    .cart_totals th::before,
    .cart_totals td::before {
        content: '';
        display: block;
        margin: 0 1rem;
        padding: 0.75rem 0;
        box-sizing: border-box;
    }
    
    .cart_totals th {
        font-weight: 600;
    }
    
    .cart_totals th::before {
        padding-bottom: 0.4rem;
    }
    
    .cart_totals td {
        font-weight: 700;
        color: var(--secondary-color);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0;
    }
    
    .cart_totals td::before {
        padding: 0.4rem 0;
    }
    
    .wc-proceed-to-checkout {
        padding: 0 1rem;
    }
    
    .wc-proceed-to-checkout .checkout-button {
        padding: 18px 30px;
        font-size: 1rem;
        width: calc(100% - 2rem);
        margin: 0 auto;
    }
}

/* Responsividade para dispositivos móveis pequenos */
@media (max-width: 480px) {
    .cart-section {
        padding: 1rem 0;
    }
    
    .cart-items-container {
        margin: 0 0.75rem;
        padding: 0.75rem;
        border-radius: 10px;
    }
    
    .cart-collaterals {
        margin: 0 0.75rem;
        padding: 0.75rem;
        border-radius: 10px;
    }
    
    .coupon {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        padding: 0;
    }
    
    .coupon label {
        text-align: center;
        min-width: unset;
    }
    
    .coupon input[type="text"] {
        min-width: unset;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .actions {
        padding: 0.75rem !important;
    }
    
    .coupon .button,
    .actions .button {
        padding: 16px 25px;
        font-size: 0.9rem;
        border-radius: 8px;
        width: 100%;
    }
    
    .cart-section-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .cart_totals h2 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .cart_totals {
        padding: 0 0.75rem;
    }
    
    .cart_totals th,
    .cart_totals td {
        padding: 0;
        font-size: 0.9rem;
        display: block;
        width: 100% !important;
        text-align: center !important;
        border-bottom: none;
        box-sizing: border-box;
        position: relative;
    }
    
    .cart_totals th::before,
    .cart_totals td::before {
        content: '';
        display: block;
        margin: 0 1rem;
        padding: 0.5rem 0;
        box-sizing: border-box;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .cart_totals th {
        font-weight: 600;
    }
    
    .cart_totals th::before {
        padding-bottom: 0.25rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .cart_totals td {
        font-weight: 700;
        color: var(--secondary-color);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0;
    }
    
    .cart_totals td::before {
        padding: 0.25rem 0;
        margin: 0 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .wc-proceed-to-checkout {
        padding: 0 0.75rem;
    }
    
    .wc-proceed-to-checkout .checkout-button {
        padding: 16px 20px;
        font-size: 0.9rem;
        width: calc(100% - 1.5rem);
        max-width: 100%;
        text-align: center;
        justify-content: center;
        min-width: auto;
        margin: 0 auto;
    }
    
    /* Tabela responsiva otimizada para mobile - Layout em duas linhas */
    .cart-table-wrapper {
        overflow: visible;
        border-radius: 8px;
    }
    
    .shop_table {
        width: 100%;
        min-width: auto;
        border-collapse: separate;
        border-spacing: 0;
    }
    
    .shop_table thead {
        display: none;
    }
    
    .shop_table tbody tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 0.75rem;
        background: rgba(255, 255, 255, 0.05);
    }
    
    .shop_table tbody td {
        display: block;
        border: none;
        padding: 0.25rem 0;
        text-align: left;
        position: relative;
    }
    
    /* Primeira linha: PRODUTO, NOME, PREÇO */
    .shop_table .product-thumbnail,
    .shop_table .product-name,
    .shop_table .product-price {
        display: inline-block;
        vertical-align: top;
        margin-bottom: 0.5rem;
    }
    
    .shop_table .product-thumbnail {
        width: 50px;
        margin-right: 0.5rem;
    }
    
    .shop_table .product-thumbnail img {
        width: 45px;
        height: 45px;
        border-radius: 4px;
    }
    
    .shop_table .product-name {
         width: calc(100% - 120px);
         font-size: 0.85rem;
         line-height: 1.3;
         font-weight: 600;
         margin-right: 0.5rem;
         white-space: normal;
         word-wrap: break-word;
         overflow-wrap: break-word;
         hyphens: auto;
         max-height: none;
         overflow: visible;
     }
    
    .shop_table .product-price {
        width: 60px;
        font-size: 0.8rem;
        font-weight: 600;
        text-align: right;
    }
    
    .shop_table .product-price::before {
        content: "Preço: ";
        font-weight: 400;
        color: var(--text-color-light);
    }
    
    /* Segunda linha: QUANTIDADE, SUBTOTAL, REMOVER */
    .shop_table .product-quantity,
    .shop_table .product-subtotal,
    .shop_table .product-remove {
        display: inline-block;
        vertical-align: middle;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 0.5rem;
        margin-top: 0.5rem;
    }
    
    .shop_table .product-quantity {
        width: 35%;
    }
    
    .shop_table .product-quantity::before {
        content: "Qtd: ";
        font-size: 0.75rem;
        color: var(--text-color-light);
        display: block;
        margin-bottom: 0.25rem;
        
    }
    
    .shop_table .product-quantity input[type="number"] {
        width: 60px;
        padding: 0.3rem;
        font-size: 0.8rem;
        text-align: center;
        border-radius: 4px;
        background-color: #000;
    }
    
    .shop_table .product-subtotal {
        width: 40%;
        text-align: center;
    }
    
    .shop_table .product-subtotal::before {
        content: "Subtotal: ";
        font-size: 0.75rem;
        color: var(--text-color-light);
        display: block;
        margin-bottom: 0.25rem;
    }
    
    .shop_table .product-remove {
        width: 25%;
        text-align: right;
    }
    
    .shop_table .product-remove .remove {
        font-size: 0.9rem;
        padding: 0.4rem;
        width: 35px;
        height: 35px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
    }
}

/* Responsividade para dispositivos muito pequenos */
@media (max-width: 320px) {
    /* Ajustes específicos para o texto SPOCKY GAMES em iPhones antigos */
    .glitch {
        font-size: 1.4rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-top: 10px;
    }
    
    .hero-logo {
        width: 120px;
        height: 120px;
        margin-bottom: 15px;
    }
    
    .cart-items-container,
    .cart-collaterals {
        margin: 0;
        padding: 0.5rem;
        border-radius: 8px;
    }
    
    .actions {
        padding: 0.5rem !important;
    }
    
    /* Ajustes para dispositivos muito pequenos */
    .shop_table tbody tr {
        padding: 0.5rem;
        margin-bottom: 0.75rem;
    }
    
    .shop_table .product-thumbnail {
        width: 40px;
        margin-right: 0.4rem;
    }
    
    .shop_table .product-thumbnail img {
        width: 35px;
        height: 35px;
    }
    
    .shop_table .product-name {
         width: calc(100% - 100px);
         font-size: 0.75rem;
         margin-right: 0.4rem;
         white-space: normal;
         word-wrap: break-word;
         overflow-wrap: break-word;
         hyphens: auto;
         max-height: none;
         overflow: visible;
         line-height: 1.3;
     }
    
    .shop_table .product-price {
        width: 55px;
        font-size: 0.75rem;
    }
    
    .shop_table .product-quantity {
        width: 30%;
    }
    
    .shop_table .product-quantity input[type="number"] {
        width: 50px;
        padding: 0.25rem;
        font-size: 0.75rem;
        background-color: #000;
    }
    
    .shop_table .product-subtotal {
        width: 45%;
        font-size: 0.75rem;
    }
    
    .shop_table .product-remove {
        width: 25%;
    }
    
    .shop_table .product-remove .remove {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .shop_table .product-remove {
        width: 25px;
    }
    
    .shop_table .product-remove .remove {
        font-size: 0.7rem;
        width: 20px;
        height: 20px;
    }
    
    .coupon .button,
    .actions .button {
        padding: 14px 20px;
        font-size: 0.8rem;
    }
    
    .cart_totals th,
    .cart_totals td {
        padding: 0;
        font-size: 0.8rem;
        display: block;
        width: 100% !important;
        text-align: center !important;
        border-bottom: none;
        box-sizing: border-box;
        position: relative;
    }
    
    .cart_totals th::before,
    .cart_totals td::before {
        content: '';
        display: block;
        margin: 0 0.8rem;
        padding: 0.4rem 0;
        box-sizing: border-box;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .cart_totals th {
        font-weight: 600;
    }
    
    .cart_totals th::before {
        padding-bottom: 0.2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .cart_totals {
        padding: 0 0.8rem;
    }
    
    .cart_totals td {
        font-weight: 700;
        color: var(--product-price);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0;
    }
    
    .cart_totals td::before {
        padding: 0.2rem 0;
        margin: 0 0.8rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .wc-proceed-to-checkout {
        padding: 0 0.8rem;
    }
    
    .wc-proceed-to-checkout .checkout-button {
        padding: 14px 18px;
        font-size: 0.8rem;
        width: calc(100% - 1.6rem);
        max-width: 100%;
        text-align: center;
        justify-content: center;
        min-width: auto;
    }
}

/* Checkout Page Styles */
.checkout-section {
    padding: 4rem 0;
    background: #00000087;
}

.checkout-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Checkout Form Container */
.checkout-form-container {
    background: #6203156b;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    margin: 0;
    min-height: fit-content;
}

.col2-set {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.col2-set .col-1,
.col2-set .col-2 {
    width: 100%;
}

/* Checkout Section Titles */
.checkout-section-title {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkout-section-title i {
    color: var(--primary-color);
}

/* Form Fields */
.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3,
.woocommerce-additional-fields h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 0 0 10px var(--secondary-color);
}

.form-row {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-row label {
    display: block;
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-row label .required {
    color: #ff4757;
    margin-left: 3px;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row input[type="password"],
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #be1c39;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-sizing: border-box;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.2);
    transform: translateY(-1px);
}

.form-row.validated input,
.form-row.validated select,
.form-row.validated textarea {
    border-color: #2ed573;
    box-shadow: 0 0 0 2px rgba(46, 213, 115, 0.2);
}

.form-row.woocommerce-invalid input,
.form-row.woocommerce-invalid select,
.form-row.woocommerce-invalid textarea {
    border-color: #ff4757;
    box-shadow: 0 0 0 2px rgba(255, 71, 87, 0.2);
}

/* Checkbox and Radio Styles */
.form-row input[type="checkbox"],
.form-row input[type="radio"] {
    width: auto;
    margin-right: 0.5rem;
    accent-color: var(--primary-color);
}

/* Select2 Styling */
.select2-container--default .select2-selection--single {
    background: rgba(0, 0, 0, 0.8) !important;
    border: 1px solid #be1c39 !important;
    border-radius: 10px !important;
    height: 52px !important;
    line-height: 52px !important;
    backdrop-filter: blur(5px) !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--text-color) !important;
    padding-left: 12px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px !important;
}

.select2-dropdown {
    background: #000000 !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 8px !important;
}

.select2-container--default .select2-results__option {
    color: var(--text-color) !important;
    background: #000000 !important;
}

/* Adicionando estilo específico para options do select nativo */
select option {
    background: #000000 !important;
    color: var(--text-color) !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: var(--primary-color) !important;
    color: white !important;
}

/* Checkout Review Container */
.checkout-review-container {
    background: #7b031958;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 2rem;
    height: fit-content;
    margin: 0;
    min-width: 350px;
}

/* Order Review Table */
.woocommerce-checkout-review-order-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    table-layout: fixed;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    padding: 1rem 0.75rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.woocommerce-checkout-review-order-table th:first-child,
.woocommerce-checkout-review-order-table td:first-child {
    width: 60%;
    text-align: left;
}

.woocommerce-checkout-review-order-table th:last-child,
.woocommerce-checkout-review-order-table td:last-child {
    width: 40%;
    text-align: right;
    padding-right: 0.5rem;
}

.woocommerce-checkout-review-order-table th {
    background: rgba(var(--primary-color-rgb), 0.1);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.woocommerce-checkout-review-order-table .cart_item td {
    border-bottom: 1px solid rgba(var(--border-color-rgb), 0.3);
}

.woocommerce-checkout-review-order-table .product-name {
    font-weight: 500;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.woocommerce-checkout-review-order-table .product-name .product-quantity {
    color: rgba(var(--text-color-rgb), 0.7);
    font-weight: 400;
    font-size: 0.9em;
    display: inline-block;
    margin-left: 0.5rem;
}

.woocommerce-checkout-review-order-table .product-total {
    font-weight: 600;
    white-space: nowrap;
}

.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
    font-size: 1.2rem;
    color: var(--product-price);
    border-bottom: 2px solid var(--primary-color);
    font-weight: 700;
}

/* Payment Methods */
.wc_payment_methods {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.wc_payment_method {
    margin-bottom: 1rem;
    border: 1px solid #be1c39;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.wc_payment_method:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(var(--primary-color-rgb), 0.2);
}

.wc_payment_method label {
    display: block;
    padding: 1.25rem;
    cursor: pointer;
    background: rgba(190, 28, 57, 0.1);
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-color);
    border-radius: 12px 12px 0 0;
}

.wc_payment_method input[type="radio"]:checked + label {
    background: rgba(190, 28, 57, 0.2);
    color: #be1c39;
    border-color: #be1c39;
    box-shadow: 0 0 0 2px rgba(190, 28, 57, 0.3);
}

.payment_box {
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid #be1c39;
    display: none;
    backdrop-filter: blur(5px);
    border-radius: 0 0 12px 12px;
}

.payment_box p {
    margin: 0;
    color: var(--text-color);
    opacity: 0.9;
}

/* Place Order Button - Neon Green Style */
#place_order {
    width: 100%;
    padding: 24px 50px;
    background-color: #0000006b;
    border: 2px solid #00ff00;
    color: #ffffff;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 3;
    cursor: pointer;
    clip-path: inset(0 0 0 0);
    font-size: 1.2rem;
    font-weight: bolder;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

#place_order::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.4), transparent);
    transition: all 0.5s ease;
    z-index: 2;
}

#place_order:hover {
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.7);
    transform: translateY(-3px);
}

#place_order:hover::before {
    left: 100%;
}

#place_order:active {
    transform: translateY(-1px);
}

#place_order:focus {
    outline: none;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
}

#place_order:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    border-color: #666;
    color: #999;
}

#place_order:disabled::before {
    display: none;
}

/* Terms and Conditions */
.woocommerce-terms-and-conditions-wrapper {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(var(--secondary-color-rgb), 0.1);
    border-radius: 8px;
    border: 1px solid var(--secondary-color);
}

.woocommerce-terms-and-conditions {
    max-height: 200px;
    overflow-y: auto;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 5px;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Error Messages */
.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid;
}

.woocommerce-error {
    background: rgba(255, 71, 87, 0.1);
    border-left-color: #ff4757;
    color: #ff4757;
}

.woocommerce-message {
    background: rgba(46, 213, 115, 0.1);
    border-left-color: #2ed573;
    color: #2ed573;
}

.woocommerce-info {
    background: rgba(var(--primary-color-rgb), 0.1);
    border-left-color: var(--primary-color);
    color: var(--primary-color);
}

/* Loading State */
.processing {
    opacity: 0.6;
    pointer-events: none;
}

.processing::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-color);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Checkout Responsive */
@media (max-width: 1200px) {
    .checkout-wrapper {
        grid-template-columns: 1.5fr 1fr;
        gap: 1.5rem;
    }
    
    .checkout-review-container {
        min-width: 300px;
    }
}

@media (max-width: 1024px) {
    .checkout-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 0.5rem;
    }
    
    .checkout-review-container {
        position: static;
        order: -1;
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .checkout-section {
        padding: 1.5rem 0;
    }
    
    .checkout-wrapper {
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .checkout-form-container,
    .checkout-review-container {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .col2-set {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .woocommerce-checkout-review-order-table {
        font-size: 0.85rem;
    }
    
    .woocommerce-checkout-review-order-table th,
    .woocommerce-checkout-review-order-table td {
        padding: 0.75rem 0.25rem;
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .woocommerce-checkout-review-order-table th:first-child,
    .woocommerce-checkout-review-order-table td:first-child {
        width: 65%;
        padding-left: 0.5rem;
    }
    
    .woocommerce-checkout-review-order-table th:last-child,
    .woocommerce-checkout-review-order-table td:last-child {
        width: 35%;
        padding-right: 0.25rem;
        font-size: 0.8rem;
    }
    
    .woocommerce-checkout-review-order-table .order-total th,
    .woocommerce-checkout-review-order-table .order-total td {
        font-size: 1rem;
        font-weight: 700;
    }
    
    .checkout-section-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .form-row {
        margin-bottom: 1rem;
    }
    
    .form-row input[type="text"],
    .form-row input[type="email"],
    .form-row input[type="tel"],
    .form-row input[type="password"],
    .form-row select,
    .form-row textarea {
        padding: 0.875rem;
        font-size: 1rem;
    }
    
    #place_order {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        width: 100%;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .checkout-wrapper {
        padding: 0 0.5rem;
    }
    
    .checkout-form-container,
    .checkout-review-container {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .checkout-section-title {
        font-size: 1.2rem;
    }
    
    .woocommerce-checkout-review-order-table {
        font-size: 0.8rem;
    }
    
    .woocommerce-checkout-review-order-table th,
    .woocommerce-checkout-review-order-table td {
        padding: 0.5rem 0.15rem;
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    .woocommerce-checkout-review-order-table th:first-child,
    .woocommerce-checkout-review-order-table td:first-child {
        width: 70%;
        padding-left: 0.25rem;
    }
    
    .woocommerce-checkout-review-order-table th:last-child,
    .woocommerce-checkout-review-order-table td:last-child {
        width: 30%;
        padding-right: 0.15rem;
        font-size: 0.75rem;
    }
    
    .woocommerce-checkout-review-order-table .order-total th,
    .woocommerce-checkout-review-order-table .order-total td {
        font-size: 0.9rem;
        font-weight: 700;
    }
    
    .checkout-review-container {
         padding: 1rem 0.75rem;
     }
     
     .woocommerce-checkout-review-order-table .product-name {
         font-size: 0.75rem;
         line-height: 1.3;
     }
     
     .woocommerce-checkout-review-order-table .product-name .product-quantity {
         font-size: 0.7rem;
         margin-left: 0.25rem;
         display: block;
         margin-top: 0.25rem;
     }
     
     .woocommerce-checkout-review-order-table .product-total {
         font-size: 0.75rem;
     }
    
    .form-row input[type="text"],
    .form-row input[type="email"],
    .form-row input[type="tel"],
    .form-row input[type="password"],
    .form-row select,
    .form-row textarea {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
}

/* My Account Page Styles */
.my-account-section {
    padding: 4rem 0;
    background: var(--bg-color);
}

.my-account-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Account Navigation */
.account-navigation {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 2rem;
}

.account-user-info {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.user-avatar {
    margin-bottom: 1rem;
}

.user-avatar img {
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(var(--primary-color-rgb), 0.3);
}

.user-details h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.user-details p {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* WooCommerce Account Navigation */
.woocommerce-MyAccount-navigation {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-MyAccount-navigation-link {
    margin-bottom: 0.5rem;
}

.woocommerce-MyAccount-navigation-link a {
    display: flex;
    align-items: center;
    padding: 1rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 1px solid transparent;
}

.woocommerce-MyAccount-navigation-link a:hover {
    background: rgba(var(--primary-color-rgb), 0.1);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.woocommerce-MyAccount-navigation-link.is-active a {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.3);
}

/* Account Content */
.account-content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 0 0 10px var(--secondary-color);
}

/* Login/Register Forms */
.login-register-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.login-form-container,
.register-form-container {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.form-title {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-title i {
    color: var(--primary-color);
}

/* Form Styles */
.woocommerce-form .form-row {
    margin-bottom: 1.5rem;
}

.woocommerce-form label {
    display: block;
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.woocommerce-form label .required {
    color: #ff4757;
    margin-left: 3px;
}

.woocommerce-form input[type="text"],
.woocommerce-form input[type="email"],
.woocommerce-form input[type="password"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--card-bg);
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.woocommerce-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.2);
    transform: translateY(-1px);
}

.form-row.validated input {
    border-color: #2ed573;
    box-shadow: 0 0 0 2px rgba(46, 213, 115, 0.2);
}

.form-row.woocommerce-invalid input {
    border-color: #ff4757;
    box-shadow: 0 0 0 2px rgba(255, 71, 87, 0.2);
}

/* Login/Register Buttons */
.woocommerce-form .woocommerce-Button {
    width: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
}

.woocommerce-form .woocommerce-Button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(var(--primary-color-rgb), 0.4);
}

/* Form Footer */
.form-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.form-footer p {
    color: var(--text-color);
    opacity: 0.8;
}

.form-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.form-footer a:hover {
    color: var(--secondary-color);
}

/* Lost Password */
.woocommerce-LostPassword {
    text-align: center;
    margin-top: 1rem;
}

.woocommerce-LostPassword a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.woocommerce-LostPassword a:hover {
    color: var(--secondary-color);
}

/* Remember Me */
.woocommerce-form-login__rememberme {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.woocommerce-form-login__rememberme input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: var(--primary-color);
}

.woocommerce-form-login__rememberme label {
    margin: 0;
    font-size: 0.9rem;
    cursor: pointer;
}

/* Account Dashboard */
.woocommerce-MyAccount-content .woocommerce-Message {
    background: rgba(var(--primary-color-rgb), 0.1);
    border-left: 4px solid var(--primary-color);
    color: var(--primary-color);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

/* Orders Table */
.woocommerce-orders-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.woocommerce-orders-table th,
.woocommerce-orders-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

.woocommerce-orders-table th {
    background: rgba(var(--primary-color-rgb), 0.1);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.woocommerce-orders-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.woocommerce-orders-table .woocommerce-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.woocommerce-orders-table .woocommerce-button:hover {
    background: var(--secondary-color);
    transform: translateY(-1px);
}

/* Address Forms */
.woocommerce-address-fields .form-row {
    margin-bottom: 1.5rem;
}

.woocommerce-address-fields select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--card-bg);
    color: var(--text-color);
    font-size: 1rem;
}

/* Account Details Form */
.woocommerce-EditAccountForm .form-row {
    margin-bottom: 1.5rem;
}

.woocommerce-EditAccountForm .form-row-first,
.woocommerce-EditAccountForm .form-row-last {
    width: 48%;
    display: inline-block;
}

.woocommerce-EditAccountForm .form-row-first {
    margin-right: 4%;
}

/* My Account Responsive */
@media (max-width: 1024px) {
    .my-account-wrapper {
        grid-template-columns: 250px 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .my-account-section {
        padding: 2rem 0;
    }
    
    .my-account-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .account-navigation {
        position: static;
        order: -1;
    }
    
    .account-content {
        padding: 1rem;
    }
    
    .login-form-container,
    .register-form-container {
        padding: 1.5rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .woocommerce-orders-table {
        font-size: 0.9rem;
    }
    
    .woocommerce-orders-table th,
    .woocommerce-orders-table td {
        padding: 0.75rem;
    }
    
    .woocommerce-EditAccountForm .form-row-first,
    .woocommerce-EditAccountForm .form-row-last {
        width: 100%;
        display: block;
        margin-right: 0;
    }
}

/* ===== SHOP PAGE STYLES ===== */
.shop-section {
    padding: 4rem 0;
    background-color: transparent !important;
    z-index: -1;
}

.shop-header {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
}

.shop-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.woocommerce-result-count {
    color: #00d4ff;
    font-weight: 600;
    margin: 0;
}

.woocommerce-ordering select {
    background: rgba(15, 15, 35, 0.9);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.woocommerce-ordering select:focus {
    border-color: #00d4ff;
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.2);
    outline: none;
}

.shop-pagination {
    margin-top: 4rem;
    text-align: center;
}

.woocommerce-pagination {
    display: inline-flex;
    gap: 0.5rem;
    background: rgba(26, 26, 46, 0.8);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
}

.woocommerce-pagination a,
.woocommerce-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.woocommerce-pagination a:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: #00d4ff;
    transform: translateY(-2px);
}

.woocommerce-pagination .current {
    background: linear-gradient(135deg, #00d4ff, #0f3460);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

/* No Products Found */
.no-products-found {
    text-align: center;
    padding: 4rem 2rem;
}

.no-products-content {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(26, 26, 46, 0.8);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
}

.no-products-content i {
    font-size: 4rem;
    color: #00d4ff;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.no-products-content h2 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.no-products-content p {
    color: #b0b0b0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Featured Categories */
.featured-categories {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
    border-color: #00d4ff;
}

.category-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.category-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.8), rgba(15, 52, 96, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-count {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.category-info {
    padding: 1.5rem;
}

.category-name {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.category-card:hover .category-name {
    color: #00d4ff;
}

.category-description {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Shop Responsive */
@media (max-width: 768px) {
    .shop-controls {
        flex-direction: column;
        text-align: center;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .woocommerce-pagination {
        padding: 0.75rem 1rem;
        gap: 0.25rem;
    }
    
    .woocommerce-pagination a,
    .woocommerce-pagination span {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .no-products-content {
        padding: 2rem 1.5rem;
    }
    
    .no-products-content i {
        font-size: 3rem;
    }
    
    .no-products-content h2 {
        font-size: 1.5rem;
    }
}

.shop-section {
  
  background: transparent !important;
}

.main-content {

 background-color: transparent;

}


/* Centralizar conteúdo da área de variações e botão adicionar ao carrinho */
.woocommerce div.product form.cart,
.woocommerce div.product form.cart .variations,
.woocommerce div.product form.cart .woocommerce-variation-add-to-cart {
    text-align: center; /* Centraliza os elementos inline ou inline-block filhos */
    display: flex; /* Para centralizar block-level children se necessário */
    flex-direction: column; /* Empilha os itens verticalmente */
    align-items: center; /* Centraliza os itens no eixo cruzado (horizontalmente aqui) */
}

/* Ajuste para os labels e selects para que fiquem alinhados à esquerda dentro do container centralizado, se desejado */
.woocommerce div.product form.cart .variations td,
.woocommerce div.product form.cart .variations th {
    text-align: left; /* Ou 'center' se preferir os labels centralizados também */
}

/* Estilização Agressiva para Dropdowns de Variação WooCommerce */
.woocommerce div.product form.cart .variations select,
.woocommerce table.variations select,
select[name^="attribute_pa_"] /* Alvo mais genérico para atributos pa_ */
{
    background-color: #000000 !important;
    color: #FFFFFF !important;
    font-weight: bold !important;
    border: 2px solid var(--primary-color) !important; /* Use theme's primary red */
    padding: 10px 35px 10px 15px !important; /* Ajustado padding */
    border-radius: 5px !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23be1c39" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>') !important; /* Arrow with primary color */
    background-repeat: no-repeat !important;
    background-position: right 10px center !important;
    background-size: 12px !important;
    min-width: 250px !important; /* Aumentado para aproveitar mais espaço, ajuste conforme necessário */
    width: auto !important; /* Mantido para permitir que cresça se o conteúdo for maior, mas o min-width dará um bom tamanho base */
    /* Para fazer ocupar a largura do container, poderia usar width: 100%; e max-width: desejado; */
    /* Exemplo: width: 100%; max-width: 400px; */
    cursor: pointer !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

/* Estilização das opções dentro do dropdown */
.woocommerce div.product form.cart .variations select option,
.woocommerce table.variations select option,
select[name^="attribute_pa_"] option {
    background-color: #000000 !important;
    color: #FFFFFF !important;
    font-weight: bold !important;
    padding: 10px !important;
}

/* Estilização do dropdown quando está em foco (clicado) e hover */
.woocommerce div.product form.cart .variations select:hover,
.woocommerce table.variations select:hover,
select[name^="attribute_pa_"]:hover,
.woocommerce div.product form.cart .variations select:focus,
.woocommerce table.variations select:focus,
select[name^="attribute_pa_"]:focus {
    outline: none !important;
    border-color: var(--secondary-color) !important; /* Neon green for hover/focus (var(--product-price) is #00ff00) */
    box-shadow: 0 0 8px rgba(255, 0, 47, 0.5) !important; /* Neon green shadow */
}

/* Garanta que o label também tenha uma boa aparência */
.woocommerce .variations label {
    color: #FFFFFF !important;
    font-weight: bold !important;
    margin-bottom: 5px !important;
    display: block;
}

/* Novos seletores do plano */
.variations_form.cart .variations td.label label {
    color: #fff; 
    font-weight: bold;
    margin-right: 10px; /* Espaço entre o label e o select */
}

.variations_form.cart .variations td.value,
.variations_form.cart .variations th.value {
    text-align: left;
    padding: 5px 0;
}

.variations_form.cart .variations td.value {
    padding-bottom: 15px; /* Espaçamento abaixo de cada seletor */
}

/* Ajustes de layout para os seletores e labels */
/*
.woocommerce .variations_form .variations {
    display: flex;
    flex-direction: column; 
    gap: 15px; 
    margin-bottom: 20px; 
}

.woocommerce .variations_form .variations .label {
    margin-bottom: 5px;
}

.woocommerce .variations_form .variations .value {
    display: flex;
    flex-direction: column;
}
*/

/* Size Selector Styles */
.size-selector {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
}

.size-selector label {
    color: var(--text-color);
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}

.size-dropdown {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #333;
    border-radius: 8px;
    background-color: #1a1a1a;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23fff" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.size-dropdown:hover {
    border-color: #555;
    background-color: #2a2a2a;
}

.size-dropdown:focus {
    outline: none;
    border-color: #007cba;
    background-color: #2a2a2a;
    box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.2);
}

.size-dropdown option {
    background-color: #1a1a1a;
    color: #fff;
    padding: 8px;
}

/* Cart Quantity Selector Improvements */
.quantity-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
    background: var(--card-bg);
    max-width: 120px;
}

.quantity-wrapper input[type="number"] {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    text-align: center;
    width: 60px;
    padding: 8px 4px;
    background: transparent;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

.quantity-wrapper input[type="number"]::-webkit-outer-spin-button,
.quantity-wrapper input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 30px;
    height: 36px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--primary-hover);
}

.qty-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Melhorar aparência do input de quantidade original */
.product-quantity input[type="number"] {
    width: 70px;
    padding: 0.5rem 0.25rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background: #000;
    color: var(--text-color);
    text-align: center;
    font-weight: 500;
    margin: 0 auto;
}

.product-quantity input[type="number"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(var(--primary-color-rgb), 0.2);
}

/* Responsivo */
@media (max-width: 768px) {
    .quantity-wrapper {
        max-width: 100px;
    }
    
    .quantity-wrapper input[type="number"] {
        width: 40px;
    }
    
    .qty-btn {
        width: 25px;
        height: 32px;
        font-size: 14px;
    }
}

/* Media Queries para Telas HD (1280px) - Fix Hero Section */
@media screen and (max-width: 1366px) and (min-width: 1200px) {
    .hero {
        min-height: 65vh;
        padding-top: 60px; /* Reduzido para centralizar melhor */
    }
    
    .hero-wrapper {
        min-height: 100vh; /* Mantém cobertura total da viewport */
        padding-top: 0; /* Removido padding extra */
    }
    
    .hero-background {
        height: 100vh; /* Garante que o background cubra toda a viewport */
    }
    
    .hero-logo {
        width: 220px;
        height: 220px;
    }
    
    .glitch {
        font-size: 3.5rem;
    }
}

@media screen and (max-width: 1280px) and (min-width: 1024px) {
    .hero {
        min-height: 60vh;
        padding-top: 80px; /* Reduzido para melhor centralização */
    }
    
    .hero-wrapper {
        min-height: 100vh; /* Mantém cobertura total da viewport */
        padding-top: 0; /* Removido padding extra */
    }
    
    .hero-background {
        height: 100vh; /* Garante que o background cubra toda a viewport */
    }
    
    .hero-logo {
        width: 200px;
        height: 200px;
    }
    
    .glitch {
        font-size: 3.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-top: 15px;
    }
}

/* Ajustes específicos para computadores antigos com telas HD */
@media screen and (max-height: 768px) and (min-width: 1024px) {
    .hero {
        min-height: 50vh;
        padding-top: 100px; /* Reduzido para melhor centralização */
    }
    
    .hero-wrapper {
        min-height: 100vh; /* Mantém cobertura total mesmo em telas baixas */
        padding-top: 0; /* Removido padding extra */
    }
    
    .hero-background {
        height: 100vh; /* Background sempre cobre toda a viewport */
        background-size: cover;
        background-position: center center;
    }
    
    .hero-logo {
        width: 180px;
        height: 180px;
    }
    
    .glitch {
        font-size: 2.8rem;
    }
}

/* Ajustes para navbar em telas HD */
@media screen and (max-width: 1366px) and (min-width: 1024px) {
    .navbar {
        height: calc(var(--header-height) + 10px); /* Navbar ligeiramente maior */
        padding: 0 3%;
    }
    
    .logo {
        width: 45px;
        height: 45px;
    }
    
    .site-title {
        font-size: 1.4rem;
    }
}



/* === CANAL 3 EXPO 2025 SECTION === */
.canal3-expo-section {
    padding: 60px 5% 80px;
    background: transparent;
    position: relative;
}

.expo-card {
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid #be1c39;
    border-radius: 5px;
    padding: 40px;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 20px rgba(190, 28, 57, 0.3);
    transition: all 0.3s ease;
    max-width: 1200px;
    margin: 0 auto;
  
}

.expo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(190, 28, 57, 0.5);
    border-color: #ff1744;
}

/* Header do Evento */
.expo-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(190, 28, 57, 0.3);
}

.expo-title {
    font-size: 4.5rem;
    color: #be1c39;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(190, 28, 57, 0.5);
    font-weight: 900;
}

.expo-subtitle {
    font-size: 1.8rem;
    color: #00ffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.expo-highlight {
    font-size: 1.3rem;
    color: #fff;
    font-weight: bold;
    font-style: italic;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

/* Grid Principal */
.expo-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Informações do Evento */
.expo-date-location {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(190, 28, 57, 0.2);
    border-radius: 10px;
    border-left: 4px solid #be1c39;
}

.info-item i {
    color: #be1c39;
    font-size: 1.5rem;
    margin-top: 5px;
}

.highlight-text {
    color: #00ffff;
    font-weight: bold;
    font-size: 1.1rem;
    
}

.address {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
    font-size: 0.9rem;
}

/* Mapa */
.expo-map {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #be1c39;
}

.map-route-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(190, 28, 57, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.map-route-btn:hover {
    background: #be1c39;
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(190, 28, 57, 0.7);
}

/* === ATRAÇÕES REORGANIZADAS - LARGURA TOTAL === */
.expo-attractions {
    grid-column: 1 / -1; /* Ocupa toda a largura do grid */
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid #be1c39;
    margin-top: 20px;
    margin-bottom: 30px;
}

.expo-attractions h4 {
    color: #00ffff;
    font-size: 1.8rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: center;
    justify-content: center;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Grid de Atrações - 2 COLUNAS LADO A LADO SIMPLIFICADO */
.attractions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 20px;
}

.attractions-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.attraction-item {
    background: rgba(0, 255, 255, 0.08);
    padding: 12px 18px;
    border-radius: 8px;
    border-left: 3px solid #be1c39;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    line-height: 1.4;
    text-align: center;
}

.attraction-item:hover {
    background: rgba(0, 255, 255, 0.15);
    color: #fff;
    transform: translateX(5px);
    border-left-color: #00ffff;
    box-shadow: 0 2px 8px rgba(0, 255, 255, 0.2);
}

/* Transfer e Ingressos - MOVIDO PARA O TOPO */
.expo-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px;
    background: rgba(190, 28, 57, 0.2);
    border-radius: 10px;
    border: 2px solid var(--primary-color);
}

.transfer-info h4,
.tickets-info h4 {
    color: #be1c39;
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.transfer-info p,
.tickets-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.ticket-btn {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    padding: 12px 25px;
}

/* === FOOTER DA SEÇÃO CORRIGIDO === */
.expo-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.social-section h4,
.sponsors-section h4 {
    color: #00ffff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center; /* ADICIONADO */
    gap: 10px;
    text-align: center;
}

.social-section p {

  text-align: center;
}

/* BOTÃO INSTAGRAM CORRIGIDO */
.social-instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    text-decoration: none;
    font-weight: bold;
    color: #e1306c;
    border: 2px solid #e1306c;
    padding: 15px 25px;
    border-radius: 5px;
    transition: all 0.3s ease;
    background: rgba(225, 48, 108, 0.1);
    font-size: 1rem;
}

.social-instagram-link:hover {
    background: #e1306c;
    color: #fff;
    box-shadow: 0 0 15px rgba(225, 48, 108, 0.7);
    transform: translateY(-2px);
    text-decoration: none;
}

.social-instagram-link i {
    font-size: 1.3rem;
}

.sponsors-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.sponsor-item {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Imagem do Evento */
.expo-image {
    text-align: center;
    margin-top: 20px;
}

.event-image {
    max-width: 550px; /* aumentado em 20% */
    max-height: 30vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    border: 3px solid #be1c39;
    box-shadow: 0 0 20px rgba(190, 28, 57, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 50px;
    margin-left: 10px;
    margin-right: 10px;
}

.event-image:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(190, 28, 57, 0.6);
}

/* Media Queries para Event Image */
@media (min-width: 1920px) {
    .event-image {
        max-width: 660px; /* 550px + 20% = 660px */
    }
}

@media (min-width: 1280px) and (max-width: 1919px) {
    .event-image {
        max-width: 660px; /* 550px + 20% = 660px */
    }
}

/* Event Gallery Styles */
.event-gallery-section {
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.event-gallery-section h3 {
    color: #00ff88;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.event-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.gallery-photo:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Modal Styles para Imagem do Evento */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.image-modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
}

/* Novo Layout de Duas Colunas */
.event-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.event-gallery-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Classe específica para o container da imagem na segunda seção */
.canal3-main-image-container {
    width: 100%;
    max-width: 330px; /* ajuste conforme o layout */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    border-radius: 12px;
    border: 2px solid rgba(190, 28, 57, 0.9);
}

#main-event-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    background: #111;
    border: 2px solid rgba(190, 28, 57, 0.9);
}



.thumbnail-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background-color: #1a1a1a;
}

.thumbnail:hover {
    transform: translateY(-2px);
    border-color: #be1c39;
}

.thumbnail.active {
    border-color: #be1c39;
    box-shadow: 0 2px 8px rgba(190, 28, 57, 0.4);
}

.event-info-column {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

/* Sistema de Abas */
.tabs-section {
    margin-top: 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px solid var(--primary-color);
    margin-bottom: 50px;
}

.tabs-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tab-button {
    padding: 0.75rem 1.5rem;
    border: none;
    background: rgba(190, 28, 57, 0.1);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #be1c39;
}

.tab-button i {
    font-size: 1.1em;
}

.tab-button:hover {
    background: rgba(190, 28, 57, 0.2);
}

.tab-button.active {
    background: #be1c39;
    color: white;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Media Queries para Layout Responsivo */
@media screen and (max-width: 1024px) {
    .event-main-grid {
        grid-template-columns: 1fr;
    }

    .main-image-container {
        height: 300px;
    }

    .thumbnail {
        width: 60px;
        height: 60px;
    }
}

@media screen and (max-width: 768px) {
    .tabs-container {
        flex-direction: column;
    }

    .tab-button {
        width: 100%;
        justify-content: center;
    }
}

.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.image-modal.open {
    display: flex;
}

.image-modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    text-align: center;
}

.image-modal-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    border: 3px solid #be1c39;
    box-shadow: 0 0 30px rgba(190, 28, 57, 0.6);
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000;
    background: rgba(190, 28, 57, 0.8);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    padding-bottom: 4px;
    transition: background-color 0.3s ease, transform 0.3s;
}



.image-modal-close:hover {
    background: #be1c39;
    transform: scale(1.1);
}

/* === RESPONSIVIDADE MELHORADA === */
@media (max-width: 1024px) {
    .expo-card {
        padding: 30px;
    }
    
    .expo-content-grid {
        gap: 30px;
    }
    
    .attractions-grid {
        gap: 20px;
    }
    
    .event-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .gallery-photo {
        height: 180px;
    }

}

@media (max-width: 768px) {
    .canal3-expo-section {
        padding: 50px 4%;
    }
    
    .expo-card {
        padding: 25px;
    }
    
    .expo-title {
        font-size: 2.2rem;
    }
    
    .expo-subtitle {
        font-size: 1.4rem;
    }
    
    .event-image {
        max-width: 400px;
        max-height: 40vh;
    }
    
    .event-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 12px;
    }
    
    .gallery-photo {
        height: 150px;
    }
    
    .event-gallery-section {
        padding: 15px;
        margin: 20px 0;
    }
    
    .image-modal-content {
        width: 95%;
        padding: 10px;
    }
    
    /* Grid principal vira coluna única */
    .expo-content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Serviços em coluna única */
    .expo-services {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Footer em coluna única */
    .expo-footer {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Atrações em coluna única */
    .attractions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .attractions-column {
        gap: 10px;
    }
    
    .attraction-item {
        font-size: 0.95rem;
        padding: 10px 16px;
        line-height: 1.3;
    }
    
    .expo-attractions {
        padding: 25px;
        margin-top: 25px;
    }
    
    .expo-attractions h4 {
        font-size: 1.6rem;
    }
    

}

@media (max-width: 480px) {
    .canal3-expo-section {
        padding: 40px 3%;
    }
    
    .expo-card {
        padding: 20px;
    }
    
    .expo-title {
        font-size: 1.8rem;
    }
    
    .expo-subtitle {
        font-size: 1.2rem;
    }
    
    .expo-highlight {
        font-size: 1.1rem;
    }
    
    .event-image {
        max-width: 250px;
        max-height: 30vh;
    }
    
    .event-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 10px;
    }
    
    .gallery-photo {
        height: 120px;
    }
    
    .event-gallery-section {
        padding: 12px;
        margin: 15px 0;
    }
    
    .event-gallery-section h3 {
        font-size: 1.3rem;
    }
    
    .image-modal-close {
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
    
    .image-modal-content img {
        max-height: 70vh;
    }
    
    /* Info items em coluna */
    .info-item {
        flex-direction: column;
        
        gap: 10px;
    }
    
    .info-item i {
        font-size: 1.3rem;
    }
    
    /* Botões em largura total */
    .ticket-btn,
    .social-instagram-link {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    /* Atrações com menos padding */
     .expo-attractions {
         padding: 20px;
         margin-top: 20px;
     }
     
     .expo-attractions h4 {
         font-size: 1.4rem;
     }
     
     .attractions-column {
         gap: 10px;
     }
     
     .attraction-item {
         font-size: 0.9rem;
         padding: 10px 15px;
         line-height: 1.3;
     }
    
    /* Serviços com gap menor */
    .expo-services {
        gap: 15px;
        padding: 15px;
    }
    
    .transfer-info h4,
    .tickets-info h4 {
        font-size: 1.1rem;
    }
    
    .transfer-info p,
    .tickets-info p {
        font-size: 0.9rem;
    }
    

}

.neon-button-success {
    padding: 24px 50px;
    background-color: #0000006b;
    border: 2px solid #00ff00;
    color: var(--text-color);
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 3;
    cursor: pointer;
    clip-path: inset(0 0 0 0);
    font-size: 1.1rem;
    font-weight: bolder;
    display: inline-block;
    margin-top: 0; /* Removido o margin-top: 10px */
    text-align: center;
    text-decoration: none;
}

.neon-button-success::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.4), transparent);
    transition: all 0.5s ease;
    z-index: 2;
}

.neon-button-success:hover,
.neon-button-success:focus {
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.7);
    transform: translateY(-3px);
    color: var(--text-color);
    text-decoration: none;
}

.neon-button-success:hover::before {
    left: 100%;
}

/* Responsividade para o botão Adicionar ao Carrinho */
@media (max-width: 768px) {
    .neon-button-success {
        padding: 16px 24px;
        font-size: 1rem;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .neon-button-success {
        padding: 12px 16px;
        font-size: 0.9rem;
        min-width: auto;
        text-align: center;
    }
}

@media (max-width: 320px) {
    .neon-button-success {
        padding: 10px 12px;
        font-size: 0.85rem;
        word-break: break-word;
        white-space: normal;
        line-height: 1.2;
    }
}

/* Estilos básicos para o Modal */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.8); 
}

.modal-content {
    background-color: #1e0042; /* Cor de fundo escura do tema */
    margin: 10% auto; 
    padding: 20px;
    border: 1px solid #8800ff; /* Borda neon roxa */
    width: 80%; 
    max-width: 700px;
    border-radius: 10px;
    box-shadow: 0 0 15px #8800ff, 0 0 30px #8800ff;
    color: #fff; /* Texto branco */
    position: relative;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
}

.close-button:hover,
.close-button:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.modal-body {
    display: flex;
    gap: 20px;
}

.modal-gallery {
    flex: 1;
}

.modal-gallery img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px; /* Espaço entre as imagens da galeria */
}

.modal-details {
    flex: 1;
}

#modal-product-name {
    color: #ff00ff; /* Cor neon para o título */
    text-shadow: 0 0 5px #ff00ff;
    margin-bottom: 15px;
}

#modal-product-price {
    font-size: 1.2em;
    color: #00ff00; /* Cor neon para o preço */
    margin-bottom: 15px;
    text-decoration: none;
}

/* Substituir .product-attributes por: */
.product-selectors {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 280px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 12px;
    border: 1px solid rgba(190, 28, 57, 0.3);
    margin-bottom: 15px;
}

.size-selector,
.quantity-selector {
    position: relative;
}

.size-dropdown,
.quantity-dropdown {
    width: 100%;
    padding: 8px 12px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border: 2px solid #be1c39;
    border-radius: 6px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23be1c39" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 12px;
    padding-right: 30px;
}

.size-dropdown:hover,
.quantity-dropdown:hover {
    border-color: #ff1744;
    box-shadow: 0 0 8px rgba(190, 28, 57, 0.4);
    transform: translateY(-1px);
}

.size-dropdown:focus,
.quantity-dropdown:focus {
    outline: none;
    border-color: #ff1744;
    box-shadow: 0 0 12px rgba(190, 28, 57, 0.6);
}

.size-dropdown option,
.quantity-dropdown option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 8px;
}

.size-dropdown option.out-of-stock {
    color: #888;
    background: #2a2a2a;
}

.size-error-message {
    color: #ff1744;
    font-size: 0.75rem;
    margin-top: 4px;
    text-align: center;
    font-weight: 500;
    text-shadow: 0 0 4px rgba(255, 23, 68, 0.5);
}

/* Responsividade */
@media (max-width: 768px) {
    .product-selectors {
        max-width: 100%;
        gap: 10px;
        padding: 10px;
    }
    
    .size-dropdown,
    .quantity-dropdown {
        font-size: 0.85rem;
        padding: 7px 10px;
        padding-right: 28px;
    }
}

@media (max-width: 480px) {
    .product-selectors {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 8px;
    }
    
    .size-dropdown,
    .quantity-dropdown {
        font-size: 0.8rem;
        padding: 6px 8px;
        padding-right: 26px;
    }
    
    .size-error-message {
        font-size: 0.7rem;
    }
}

/* Remover estilos antigos */
.size-row,
.size-abbreviations,
.size-descriptions,
.size-item {
    display: none !important;
}
.size-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 0;
}

.size-row:last-child {
    margin-bottom: 0;
}

.size-abbreviations .size-item {
    background: linear-gradient(135deg, #be1c39, #be1c39);
    color: #000;
    font-weight: bold;
    font-size: 1.1em;
    padding: 8px 4px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.size-descriptions .size-item {
    color: #ffffff;
    font-size: 0.75em;
    padding: 4px 2px;
    text-align: center;
    opacity: 0.9;
    font-weight: 500;
    line-height: 1.2;
    word-wrap: break-word;
    hyphens: auto;
}

.size-abbreviations .size-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.4);
    background: linear-gradient(135deg, #be1c39, #be1c39);
}

.size-descriptions .size-item:hover {
    opacity: 1;
    color: #be1c39;
}

/* Classe específica para o botão Finalizar Compra - Verde Neon */
.neon-button.checkout-green {
    border: 2px solid #00ff00; /* Verde neon */
    color: #ffffff;
}

.neon-button.checkout-green::before {
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.4), transparent); /* Gradiente verde */
}

.neon-button.checkout-green:hover {
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.7); /* Glow verde neon */
    transform: translateY(-3px);
}

/* Classe específica para o botão Adicionar ao Carrinho - Azul Ciano */
.neon-button.cyan-cart {
    border: 2px solid #00ffff; /* Azul ciano */
    color: #ffffff;
}

.neon-button.cyan-cart::before {
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.4), transparent); /* Gradiente azul ciano */
}

.neon-button.cyan-cart:hover {
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.7); /* Glow azul ciano */
    transform: translateY(-3px);
}

/* Classe específica para o botão Voltar à Loja - Vermelho */
.neon-button.back-red {
    border: 2px solid #ff0040; /* Vermelho neon */
    color: #ffffff;
}

.neon-button.back-red::before {
    background: linear-gradient(90deg, transparent, rgba(255, 0, 64, 0.4), transparent); /* Gradiente vermelho */
}

.neon-button.back-red:hover {
    box-shadow: 0 0 15px rgba(255, 0, 64, 0.7); /* Glow vermelho */
    transform: translateY(-3px);
}

/* Nova classe de botão neon independente - sem herança problemática */
.custom-neon-btn {
    padding: 24px 50px;
    background-color: rgba(0, 0, 0, 0.42);
    color: #ffffff;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 3;
    cursor: pointer;
    clip-path: inset(0 0 0 0);
    font-size: 1.1rem;
    font-weight: bolder;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.custom-neon-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
    z-index: 2;
}

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

/* Variação Azul Ciano */
.custom-neon-btn.cyan {
    border: 2px solid #00ffff;
    color: #ffffff;
}

.custom-neon-btn.cyan::before {
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.4), transparent);
}

.custom-neon-btn.cyan:hover {
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.7);
    transform: translateY(-3px);
}

/* Variação Verde Neon */
.custom-neon-btn.green {
    border: 2px solid #00ff00;
    color: #ffffff;
}

.custom-neon-btn.green::before {
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.4), transparent);
}

.custom-neon-btn.green:hover {
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.7);
    transform: translateY(-3px);
}

/* Variação Vermelha */
.custom-neon-btn.red {
    border: 2px solid #ff0040;
    color: #ffffff;
}

.custom-neon-btn.red::before {
    background: linear-gradient(90deg, transparent, rgba(255, 0, 64, 0.4), transparent);
}

.custom-neon-btn.red:hover {
    box-shadow: 0 0 15px rgba(255, 0, 64, 0.7);
    transform: translateY(-3px);
}

/* Responsividade para custom-neon-btn */
@media (max-width: 768px) {
    .custom-neon-btn {
        padding: 16px 24px;
        font-size: 1rem;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .custom-neon-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
        min-width: auto;
        text-align: center;
    }
}

@media (max-width: 320px) {
    .custom-neon-btn {
        padding: 10px 12px;
        font-size: 0.85rem;
        word-break: break-word;
        white-space: normal;
        line-height: 1.2;
    }
}

/* Classe específica para o botão Finalizar Compra - Vermelho */
.neon-button.checkout-red {
    border: 2px solid #22ff00; /* Vermelho neon */
    background: linear-gradient(135deg, #001a01, #094f00) !important;
    color: #ffffff;
}

.neon-button.checkout-red::before {
    background: linear-gradient(90deg, transparent, rgba(0, 255, 34, 0.4), transparent); /* Gradiente vermelho */
}

.neon-button.checkout-red:hover {
    box-shadow: 0 0 15px rgba(17, 255, 0, 0.7); /* Glow vermelho */
    transform: translateY(-3px);
}

.purchase-form .single_add_to_cart_button {
    text-transform: none; /* Remover uppercase */
    color: #ffffff;
}

/* Classe específica para o botão Finalizar Compra - Vermelho */
.neon-button.checkout-red2 {
    border: 2px solid #be1c39; /* Vermelho neon */
    background: linear-gradient(135deg, #1a0006, #4f0000) !important;
    color: #ffffff;
}

.neon-button.checkout-red2::before {
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.4), transparent); /* Gradiente vermelho */
}

.neon-button.checkout-red2:hover {
    box-shadow: 0 0 15px rgba(255, 0, 30, 0.7); /* Glow vermelho */
    transform: translateY(-3px);
}

/* Media Query para telas de 1280px - Ajuste do botão Finalizar Compra */
@media (max-width: 1280px) {
    .neon-button.checkout-red {
        padding: 18px 40px;
        font-size: 1rem;
        min-width: 180px;
    }
    
    .neon-button.checkout-red2 {
        padding: 18px 40px;
        font-size: 1rem;
        min-width: 180px;
    }
}

/* Media query for HD resolutions (1280p) */
@media (min-width: 1200px) and (max-width: 1366px) {
    .cta-button {
        padding: 15px 30px;
        font-size: 1.2rem;
    }
}

/* Media query específica para iPhone 7 (375px × 667px) */
@media screen and (max-width: 375px) and (min-height: 600px) {
  .hero {
    padding: 20px 15px;
    min-height: auto;
}

/* Estilo exclusivo para a galeria Canal 3 Expo 2025 */
#main-event-image-canal3 {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 5px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.4);
  background: #2d002e;
  transition: transform 0.3s ease;
}

#main-event-image-canal3:hover {
  transform: scale(1.02);
}

.canal3-thumbnail-container {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 10px;
}

#main-event-image-canal3 + .canal3-thumbnail-container img,
.canal3-thumbnail-container img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  background-color: #2d002e;
}
#main-event-image-canal3 + .canal3-thumbnail-container img.active,
.canal3-thumbnail-container img.active {
  border: 2px solid #ff2e92;
  box-shadow: 0 2px 8px 0 rgba(255,46,146,0.2);
}

#main-event-image-canal3 + .canal3-thumbnail-container img:hover,
.canal3-thumbnail-container img:hover {
  transform: scale(1.05);
  border-color: rgba(255, 46, 146, 0.5);
}

/* Canal 3 Expo Footer Responsive Layout */
.canal3-expo-section .expo-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 40px;
  margin-top: 32px;
}
.canal3-expo-section .expo-footer .social-section,
.canal3-expo-section .expo-footer .sponsors-section {
  flex: 1 1 0;
  min-width: 0;
}
.canal3-expo-section .expo-footer .social-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.canal3-expo-section .expo-footer .social-section a.social-instagram-link {
  display: inline-block;
  margin-bottom: 12px;
  margin-right: 0;
  min-width: 180px;
  text-align: left;
}
.canal3-expo-section .expo-footer .social-section a.social-instagram-link:last-child {
  margin-bottom: 0;
}
@media (min-width: 769px) {
  .canal3-expo-section .expo-footer .social-section {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
  .canal3-expo-section .expo-footer .social-section a.social-instagram-link {
    margin-bottom: 0;
    margin-right: 16px;
    min-width: 180px;
    text-align: center;
  }
  .canal3-expo-section .expo-footer .social-section a.social-instagram-link:last-child {
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  .canal3-expo-section .expo-footer {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .canal3-expo-section .expo-footer .social-section,
  .canal3-expo-section .expo-footer .sponsors-section {
    width: 100%;
  }
  .canal3-expo-section .expo-footer .social-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .canal3-expo-section .expo-footer .social-section a.social-instagram-link {
    margin-bottom: 12px;
    margin-right: 0;
    min-width: 0;
    text-align: left;
  }
}
}