body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    
}

html{
    scroll-behavior: smooth;
}

.carousel-3d-wrapper {
  perspective: 1000px; /* Definindo a perspectiva 3D */
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 400px;
  margin: auto;
}

#carousel3d .carousel-inner {
  display: flex;
  position: relative;
  width: 100%;
  transition: transform 0.5s ease-in-out;
}

#carousel3d .carousel-item {
  position: relative;
  width: 100%;
  height: 100%;
  transform-origin: center;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

#carousel3d .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

#carousel3d .carousel-item.active {
  transform: scale(1) translateX(0) rotateY(0deg);
  opacity: 1;
  z-index: 3;
}

#carousel3d .carousel-item-next,
#carousel3d .carousel-item-prev {
  transform: scale(0.85) rotateY(20deg);
  opacity: 0.6;
  z-index: 2;
}

#carousel3d .carousel-item-start,
#carousel3d .carousel-item-end {
  transform: scale(0.85) rotateY(-20deg);
  opacity: 0.6;
  z-index: 2;
}

#carousel3d .carousel-item-left,
#carousel3d .carousel-item-right {
  transform: scale(0.9) rotateY(15deg);
  opacity: 0.8;
  z-index: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}


.btn-language{
  /* width: 150px; */
  /* height: 40px; */
/* 
  display: flex;
  align-items: center;
  justify-content: space-around; */

}

#pt, #en{
  width: 30px;
  cursor: pointer;
}