/* Estilos para o carrossel */
.carousel-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 2rem;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.1);
}

.carousel-slide {
  display: none;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
  display: block;
}

/* Estilo específico para o logo no carrossel */
.carousel-logo {
  width: auto !important;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

/* Controles do carrossel (opcional) */
.carousel-controls {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-dot.active {
  background-color: white;
}

/* Responsividade */
@media (max-width: 768px) {
  .carousel-slide {
    height: auto;
  }
  
  .carousel-logo {
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .carousel-slide {
    height: auto;
  }
  
  .carousel-logo {
    max-width: 250px;
  }
}
