body {
  font-family: -apple-system, 'Inter', sans-serif;
}

#theme_toggler {
  position: absolute;
  bottom: 5%;
  right: 5%;
  background: #0096c3;
  padding: 20px;
  border-radius: 30px;
  color: #fff;
  cursor: pointer;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}


/* Estilos adicionais de CSS */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.modal-carousel.owl-carousel {
  max-width: 50%;
  border-radius: 15px;
}

.owl-carousel img {
  max-width: 100%;
  border-radius: 15px;
  height: auto;
}

@media (max-width: 800px) {
  .modal-carousel.owl-carousel {
    max-width: 100%;
    border-radius: 15px;
  }
  .owl-carousel img {
    border-radius: 15px;
  }
}
.carousel-description {
  padding: 20px;
  text-align: center;
  color: white;
}

.close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: white;
}

nav ul {
  list-style-type: none;
  padding: 0;
}

nav ul li {
  display: inline;
  margin-right: 20px;
}

nav a {
  text-decoration: none;
  color: black;
  /* Cor inicial do texto */
  transition: color 0.3s;
  /* Transição suave de cor ao passar o mouse */
}

nav a:hover {
  color: green;
  /* Cor ao passar o mouse */
}

nav a.active {
  font-weight: bold;
  /* Estilo quando clicado */
  color: green;
  /* Cor quando clicado */
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}