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);
}


#pt,
#en {
  width: 30px;
  cursor: pointer;
}


/* From Uiverse.io by SouravBandyopadhyay */

.notification {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  position: fixed;
  /* deixa fixo na tela */
  top: 10px;
  /* colado no topo */
  left: 10px;
  z-index: 100;
  width: 18rem;
  height: 8rem;
  background: #29292c;
  border-radius: 1rem;
  overflow: hidden;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 16px;
  --gradient: linear-gradient(to bottom, #2eadff, #3d83ff, #7e61ff);
  /* --gradient: linear-gradient(to bottom, #ff2e2e, #ff3d3d, #ff6161); */
  /* --gradient: linear-gradient(to bottom, #2eff4d, #3dff47, #7eff61); */
  --color: #32a6ff;
  display: none;
}

.notification:before {
  position: absolute;
  content: "";
  inset: 0.0625rem;
  border-radius: 0.9375rem;
  background: #18181b;
  z-index: 2
}

.notification:after {
  position: absolute;
  content: "";
  width: 0.25rem;
  inset: 0.65rem auto 0.65rem 0.5rem;
  border-radius: 0.125rem;
  background: var(--gradient);
  transition: transform 300ms ease;
  z-index: 4;
}

.notification:hover:after {
  transform: translateX(0.15rem)
}

.notititle {
  color: var(--color);
  padding: 0.65rem 0.25rem 0.4rem 1.25rem;
  font-weight: 500;
  font-size: 1.1rem;
  transition: transform 300ms ease;
  z-index: 5;
}

.notification:hover .notititle {
  transform: translateX(0.15rem)
}

.notibody {
  color: #99999d;
  padding: 0 1.25rem;
  transition: transform 300ms ease;
  z-index: 5;
}

.notification:hover .notibody {
  transform: translateX(0.25rem)
}

.notiglow,
.notiborderglow {
  position: absolute;
  width: 20rem;
  height: 20rem;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle closest-side at center, white, transparent);
  opacity: 0;
  transition: opacity 300ms ease;
}

.notiglow {
  z-index: 3;
}

.notiborderglow {
  z-index: 1;
}

.notification:hover .notiglow {
  opacity: 0.1
}

.notification:hover .notiborderglow {
  opacity: 0.1
}

.note {
  color: var(--color);
  position: fixed;
  top: 80%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 0.9rem;
  width: 75%;
}


/* Spinner */


/* From Uiverse.io by mobinkakei */
/* From Uiverse.io by PriyanshuGupta28 */ 
.spinner {
  position: absolute;
  width: 4px;
  height: 4px;
}

.spinner div {
  position: absolute;
  width: 50%;
  height: 150%;
  background: #ffffff;
  transform: rotate(calc(var(--rotation) * 1deg)) translate(0, calc(var(--translation) * 1%));
  animation: spinner-fzua35 1s calc(var(--delay) * 1s) infinite ease;
}

.spinner div:nth-child(1) {
  --delay: 0.1;
  --rotation: 36;
  --translation: 150;
}

.spinner div:nth-child(2) {
  --delay: 0.2;
  --rotation: 72;
  --translation: 150;
}

.spinner div:nth-child(3) {
  --delay: 0.3;
  --rotation: 108;
  --translation: 150;
}

.spinner div:nth-child(4) {
  --delay: 0.4;
  --rotation: 144;
  --translation: 150;
}

.spinner div:nth-child(5) {
  --delay: 0.5;
  --rotation: 180;
  --translation: 150;
}

.spinner div:nth-child(6) {
  --delay: 0.6;
  --rotation: 216;
  --translation: 150;
}

.spinner div:nth-child(7) {
  --delay: 0.7;
  --rotation: 252;
  --translation: 150;
}

.spinner div:nth-child(8) {
  --delay: 0.8;
  --rotation: 288;
  --translation: 150;
}

.spinner div:nth-child(9) {
  --delay: 0.9;
  --rotation: 324;
  --translation: 150;
}

.spinner div:nth-child(10) {
  --delay: 1;
  --rotation: 360;
  --translation: 150;
}

@keyframes spinner-fzua35 {
  0%, 10%, 20%, 30%, 50%, 60%, 70%, 80%, 90%, 100% {
    transform: rotate(calc(var(--rotation) * 1deg)) translate(0, calc(var(--translation) * 1%));
  }

  50% {
    transform: rotate(calc(var(--rotation) * 1deg)) translate(0, calc(var(--translation) * 1.5%));
  }
}