* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.fs-2-2 {
  font-size: 2.2rem !important;
}

.navBarOption {
  text-transform: uppercase;
  font-size: 1.3rem !important;
}

.zoom {
  transition: 0.5s cubic-bezier(0.6, 0.03, 0.28, 0.98);
  transform: scale(0.8);
}
.zoom:hover {
  transform: scale(1);
  transition: 0.5s cubic-bezier(0.6, 0.03, 0.28, 0.98);
}

.logo {
  width: 15rem;
  height: 3.5rem;
  justify-self: left;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.carousel-item {
  max-width: 60rem;
}

/*WATER EFFECT*/
@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900");

.contentWaterEffect {
  display: flex;
  justify-content: center;
  align-items: start;
  min-height: 180px;
}

.contentWaterEffect h2 {
  font-family: "Poppins", sans-serif;
  color: #fdfdfd;
  position: absolute;
  font-size: 7.5rem;
}

.contentWaterEffect h2:nth-child(1) {
  color: transparent;
  -webkit-text-stroke: 2px #ffffff;
}

.contentWaterEffect h2:nth-child(2) {
  color: #2d58b6;
  animation: animate 4s ease-in-out infinite;
}

@keyframes animate {
  0%,
  100% {
    clip-path: polygon(
      0% 45%,
      16% 44%,
      33% 50%,
      54% 60%,
      70% 61%,
      84% 59%,
      100% 52%,
      100% 100%,
      0% 100%
    );
  }

  50% {
    clip-path: polygon(
      0% 60%,
      15% 65%,
      34% 66%,
      51% 62%,
      67% 50%,
      84% 45%,
      100% 46%,
      100% 100%,
      0% 100%
    );
  }
}

/*OTHERS CSSs*/

.opening-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.hide {
  display: none;
}

#initial-text {
  font-family: "Ubuntu", sans-serif;
  color: white;
  font-size: 3.8rem;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: end;
  margin: 0;
  text-transform: uppercase;
}

@media screen and (max-width: 1110px) {
  #initial-text {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 830px) {
  .contentWaterEffect {
    min-height: 110px; /* Ajuste a altura mínima para telas menores */
  }

  .contentWaterEffect h2 {
    font-size: 4.8rem; /* Reduza ainda mais o tamanho da fonte para telas menores */
  }

  #secInicial {
    display: block;
  }
}
@media screen and (max-width: 992px) {
  .removeWhenSmall {
    display: none;
  }
  .showWhenSmall {
    display: block !important;
  }
}
