.slide-container {
  width: 1280px;
  min-height: 720px;
  background: linear-gradient(135deg, #1C1C1E 0%, #2D2D30 100%);
  color: #FFFFFF;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  display: none;
}

.slide.active {
  display: flex;
}

.accent-line {
  height: 4px;
  background: linear-gradient(90deg, #7D4EDB 0%, #3A86FF 100%);
  border-radius: 2px;
}

.title-text {
  background: linear-gradient(90deg, #7D4EDB 0%, #7D4EDB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle-gradient {
  background: linear-gradient(90deg, #FFD93D 30%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tech-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #3A86FF;
  opacity: 0.5;
}

/* Responsividade */
@media (max-width: 1280px) {
  .slide-container {
    width: 100%;
    height: auto;
    min-height: 100vh;
  }
}

/* Animações */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.slide.active {
  animation: fadeIn 0.5s ease-in-out;
}

/* Estilos para navegação */
#prevSlide, #nextSlide, #slideCounter {
  transition: all 0.3s ease;
}

#prevSlide:hover, #nextSlide:hover {
  transform: scale(1.1);
}

/* Estilos para partículas */
.particles {
  z-index: 1;
}

/* Ajuste para evitar scroll vertical no desktop */
body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Estilos para o mascote */
.mascote-img {
  max-width: 100%;
  height: auto;
}

/* Ajustes para responsividade em dispositivos móveis */
@media (max-width: 768px) {
  .slide-container {
    padding: 1rem;
  }
  
  h1.text-6xl {
    font-size: 2.5rem;
  }
  
  h2.text-3xl {
    font-size: 1.5rem;
  }
  
  .grid-cols-3 {
    grid-template-columns: 1fr;
  }
  
  .grid-cols-2 {
    grid-template-columns: 1fr;
  }
  
  .flex-wrap {
    justify-content: center;
  }
  
  .space-x-8 {
    gap: 1rem;
  }
  
  /* Ajuste específico para o primeiro slide no mobile */
  #slide1 .flex.items-center.justify-center.space-x-8 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  #slide1 .flex.items-center.mb-8 {
    flex-direction: column;
    text-align: center;
  }
  
  #slide1 .mascote-img {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

/* Garantir que as imagens não sejam cortadas */
.project-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 200px;
  border-radius: 8px;
}

/* Estilo para o título bicolor */
.webruxo-title {
  display: inline-block;
}

.webruxo-title-purple {
  color: #7D4EDB;
  display: inline;
}

.webruxo-title-yellow {
  color: #FFD93D;
  display: inline;
}

/* Estilo para ícones 3D */
.icon-3d {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}

.icon-3d:hover {
  transform: translateZ(20px) rotateX(10deg) rotateY(10deg);
}

/* Efeito de brilho para elementos 3D */
.glow-effect {
  box-shadow: 0 0 15px rgba(125, 78, 219, 0.5);
  transition: box-shadow 0.3s ease;
}

.glow-effect:hover {
  box-shadow: 0 0 25px rgba(125, 78, 219, 0.8);
}
