.image-container {
    position: relative;
    width: 100%;
    max-width: 600px; /* Ajuste o tamanho conforme necessário */
    margin: auto;
    cursor: pointer;
}

.image-container img {
    width: 100%;
    border-radius: 10px;
    transition: 0.3s;
}

.overlay-text1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: white;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background: rgba(0, 0, 0, 0.3); /* Preto com 30% de opacidade */
    padding: 15px;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.image-container.active .overlay-text {
    opacity: 1;
}


.slide-color-1 {
    background-color: #ffcccc; /* cor para o slide 1 */
}

.slide-color-2 {
    background-color: #ccffcc; /* cor para o slide 2 */
}

.slide-color-3 {
    background-color: #ccccff; /* cor para o slide 3 */
}

/* ################## CARROSSEL BOTÕES ##################  */
/* Estilo dos botões de controle - Fundo laranja com setas personalizadas */
#carouselExample {
   max-height: 800px;
    }
carouselExample .carousel-item img {
   height: 600px;
   object-fit: cover;
    }
#carouselExample .carousel-control-prev-icon,
#carouselExample .carousel-control-next-icon {
  background-image: none !important;
  background-color: orange !important;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: inline-block;
  position: relative;
}



/*
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none !important;
  background-color: orange !important;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: inline-block;
  position: relative;
}
*/

/* Cria as setas com pseudo-elementos */
.carousel-control-prev-icon::after,
.carousel-control-next-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
}

.carousel-control-prev-icon::after {
  transform: translate(-50%, -50%) rotate(135deg);
}

.carousel-control-next-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Indicadores do Carrossel (círculos) */
.carousel-indicators [data-bs-target] {
  background-color: gray; /* Cor dos indicadores inativos */
  width: 12px;
  height: 12px;
  border-radius: 50%;
  opacity: 0.7;
  border: none;
}

.carousel-indicators .active {
  background-color: orange; /* Indicador ativo em laranja */
  opacity: 1;
}




