* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Fira Code", monospace;
  font-optical-sizing: auto;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}


.header.scrolled {
  height: 55px;
  background: black;
}

.header {
  width: 100%;
  position: fixed;
  background-color: transparent;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px;
  z-index: 1000;
  height: 65px;
  transition: 0.3s ease;
  color: white;
}

.logo img {
  display: flex;
  width: 120px;
  align-items: center;
  margin-top: 14px;
  transition: 0.3s ease;
}

.logo img.scrolledd {
  width: 100px;
}

#menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2em;
  cursor: pointer;
}

nav {
  display: flex;
  align-items: center;
}

nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

nav ul li {
  transition: transform 0.5s ease-in-out;
}

nav li:hover {
  transform: scale(1.1);
}

nav a {
  text-decoration: none;
  text-transform: uppercase;
  color: var(--lightGrey);
  font-weight: 500;
  margin: 0 10px;
}

nav a:hover {
  color: darkorchid;
}

nav a:not(:hover) {
  opacity: 0.5;
}

/* From Uiverse.io by vinodjangid07 */
#checkbox {
  display: none;
}

.toggle {
  display: none;
  position: fixed;
  width: 35px;
  height: 35px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition-duration: .5s;
  margin-left: 85%;
}

.bars {
  width: 100%;
  height: 4px;
  background-color: rgb(176, 92, 255);
  border-radius: 2px;
}

#bar2 {
  transition-duration: .8s;
}

#bar1,
#bar3 {
  width: 70%;

}

#checkbox:checked+.toggle .bars {
  position: absolute;
  transition-duration: .5s;

}

#checkbox:checked+.toggle #bar2 {
  transform: scaleX(0);
  transition-duration: .5s;
}

#checkbox:checked+.toggle #bar1 {
  width: 80%;
  transform: rotate(45deg);
  transition-duration: .5s;
}

#checkbox:checked+.toggle #bar3 {
  width: 80%;
  transform: rotate(-45deg);
  transition-duration: .5s;
}

#checkbox:checked+.toggle {
  transition-duration: .5s;
  transform: rotate(180deg);
}

.main1 {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100vh;
  background: url(assets/fundobarbe.jpeg) fixed center;
}

.fundo {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0.8, 0.8, 0.8, 0.8);
  width: 100%;
  gap: 150px;
  height: 100%;
}

.main1 .textocarousel {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  max-width: 500px;
  gap: 30px;
  padding: 10px;
}

.main1 .textocarousel p {
  font-size: 15px;
  color: #f0f0f0;
}

.main1 .textocarousel h3 {
  color: #f0f0f0;
}

.main1 .textocarousel img {
  width: 100px;
}

.main1 .textocarousel a {
  text-decoration: none;
  justify-content: center;
  align-items: center;
  font-family: "Space Mono", monospace;
  font-style: normal;
  border: 1px solid darkorchid;
}


/* From Uiverse.io by vikiWayne */
.button {
  padding: 0.7em 1em;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  letter-spacing: 5px;
  text-transform: uppercase;
  cursor: pointer;
  color: white;
  transition: all 1000ms;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  outline: 2px solid darkorchid;
}

.button:hover {
  color: #ffffff;
  transform: scale(1.1);
  outline: 2px solid white;
  box-shadow: 4px 5px 17px -4px darkorchid;
}

.button::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 0;
  width: 0;
  height: 100%;
  background-color: darkorchid;
  transform: skewX(45deg);
  z-index: -1;
  transition: width 1500ms;
}

.button:hover::before {
  width: 250%;
}



/* .carousel {
  width: 100%;
  max-width: 450px;
  overflow: hidden;
  z-index: 0;
  position: relative;
  padding: 5% 0% 0% 0%;
} */

/* .carousel-inner {
  display: flex;
  transition: transform 0.5s ease-in-out;
} */

.carousel .carousel-item {
  width: 280px;
  border: 3px white solid;
  border-radius: 30px;
  padding: 10px 10px 10px 10px;

}


/* .carousel-item img {
  height: 390px;
  width: 99%;
  display: block;
  border-radius: 10px;
  z-index: 1;
} */

.carousel-item {
  animation: float 3s ease-in-out infinite;
}

.main2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 110vh;
  background-color: #ebebeb;
  gap: 100px;
  padding: 30px;
}

.imagems {
  display: flex;
  flex-wrap: wrap;
  max-width: 500px;
}

.imagems img {
  margin: 5px;
  max-height: 24vh;
  border-radius: 5px;
  box-shadow: 0 5px 5px rgba(0, 0.5, 0, 0.5);
  transition: transform 0.3s ease-in-out;
}

.imagems img:hover {
  transform: scale(1.08);
}

.main2 .textsobreabout {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 60vh;
  max-width: 550px;
  padding: 10px;
  gap: 30px;
  border-radius: 10px;
  margin-top: 0%;
}

.main2 .textsobreabout p {
  color: black;
  margin-top: -10%;
  padding: 10px;
}


.main4 {
  width: 100%;
  height: 100vh;
  background: url(assets/fundobarbe.jpeg) fixed center;
  color: #f0f0f0;
  text-align: center;
}

.main4 .fundo2 .perfil {
  display: flex;
  align-items: center;
  gap: 200px;
  margin-top: -3%;
}

.main4 .fundo2 .perfil .perfill {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 400px;
  gap: 10px;
}

.main4 .fundo2 .perfil .perfill .botaoimgperfil {
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 1s;
}

.main4 .fundo2 .perfil .perfill .botaoimgperfil:hover {
  transform: scale(1.10);
}

.main4 .fundo2 .perfil .perfill .botaoimgperfil img {
  width: 200px;
  border-radius: 100%;
}

.main4 .fundo2 .perfil .perfill a {
  background: transparent;
  padding: 10px;
  width: 230px;
  font-family: "Fira Code", monospace;
  font-optical-sizing: auto;
  font-style: normal;
  border-radius: 10px;
  border: 1px solid darkorchid;
  text-decoration: none;
  color: #f0f0f0;
  margin-top: 5%;
}

.main4 .fundo2 .perfil .perfill a {
  text-decoration: none;
  color: #f0f0f0;
  font-size: 15px;
}


.hidden3 {
  opacity: 0;
  filter: blur(15px);
  transform: translateY(30%);
  transition: all 2s;
}

.show3 {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
  transition: all 2s;
}

.fundo2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0.5, 0.5, 0.5, 0.9);
  width: 100%;
  gap: 120px;
  height: 100vh;
  padding: 5%;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  transition: opacity 0.1s ease;
}

.modal-content {
  background-color: black;
  margin: 5% auto;
  padding: 20px;
  border: 2px solid mediumorchid;
  border-radius: 20px;
  width: 25%;
  height: 60vh;
  gap: 20px;
  color: #f0f0f0;
  text-align: center;
  transform: translateY(-10px);
  transition: transform 0.1s ease, opacity 0.1s ease;
  opacity: 0;
}

.modal.show {
  display: block;
  opacity: 1;
}

.modal-content.show {
  transform: translateY(0);
  opacity: 1;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}


.main5 {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dadada;
  width: 100%;
  gap: 30px;
  padding: 30px;
  height: 75vh;
}

.main5 .textolocalização {
  display: flex;
  flex-direction: column;
  max-width: 600px;
}

.main5 .textolocalização img {
  margin-left: 5%;
}

.main5 .textolocalização .info div {
  display: flex;
  flex-direction: column;

}

.main5 .textolocalização .info div p {
  display: flex;
  gap: 5px;
  align-items: center;
}


.main5 .map {
  margin-top: 5%;
}

.main5 .map .mapa-conteudo {
  width: 500px;
}

.main5 .textocomimg p {
  margin-left: -1px;
}

.main5 p {
  max-width: 700px;
  margin-left: 5%;
  margin-top: 1%;
  font-family: "Fira Code", monospace;
  font-optical-sizing: auto;
  font-style: normal;
}

footer {
  margin-top: auto;
  background: rgba(1, 1, 1, 0.9);
  padding: 15px;
  width: 100%;
  gap: 30px;
}

footer .icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 80%;
}

.responsive-video {
  width: 100%;
  /* O vídeo ocupará 100% da largura do container */
  height: auto;
  /* A altura será ajustada proporcionalmente */
  max-width: 100%;
  /* Não ultrapassa a largura do container */
  display: block;
}

footer .icon img {
  width: 30px;
}


footer .icon ul {
  list-style-type: none;
}

footer p {
  font-size: 13px;
  justify-content: center;
  text-align: center;
  color: #CCC;
}

footer a {
  text-decoration: none;
  font-weight: 600;
  transition: 300ms;
  color: #CCC;
}

footer a:hover {
  opacity: 0.5;
}


footer .contact-info {
  font-size: 13px;
}

footer #livro-reclamacoes {
  font-size: 13px;
}

.hidden {
  opacity: 0;
  filter: blur(15px);
  transform: translateX(-100%);
  transition: all 2s;
  transition-delay: 600ms;
}

.show {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
  transition: all 3s;
  transition-delay: 600ms;
}

.hidden2 {
  opacity: 0;
  filter: blur(15px);
  transform: translateY(30%);

}

.show2 {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
  transition: all 2s;
}

/* Estilos gerais do banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #282828;
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: Arial, sans-serif;
  z-index: 1000;
}

.cookie-banner a {
  margin: 0;
  font-size: 15px;
  color: white;
}

.cookie-banner p {
  margin: 0;
  font-size: 15px;
}

.cookie-banner button {
  background-color: transparent;
  border: 2px solid blueviolet;
  color: white;
  padding: 5px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  transition: transform 1s;
}

.cookie-banner button:hover {
  border: 2px solid white;
  transform: scale(1.1);
}

#playPauseBtn {
  display: none;
}

/* Media Query para telas menores */
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner p {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .cookie-banner button {
    font-size: 14px;
    padding: 8px 16px;
  }
}

/* Estilos para dispositivos menores */
@media (max-width: 600px) {
  .responsive-video {
    width: 100%;
    height: auto;
  }

  /* Opcionalmente, ajustar o tamanho do vídeo ou escondê-lo */
  .responsive-video {
    display: block;
  }
}


@media (max-width: 1100px) {

  .main1 {
    width: 100%;
    height: 110vh;
  }

  .fundo {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 110vh;
    gap: 0%;
    padding: 20px;
    margin: 0%;
  }

  .textocarousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .textocarousel2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-left: -5%;
    margin-top: 10%;
  }

  .carousel {
    max-width: 350px;
  }


  .main2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 105vh;
  }

  .main2 .imagems {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;


  }

  .main2 .imagems img {
    width: 105px;
    margin: 0;
  }

  .textsobreabout {
    display: flex;
    flex-direction: column;
    margin-top: -10%;
  }

  .perfil {
    display: flex;
    flex-direction: column;
  }


  .main5 {
    display: flex;
    flex-direction: column;
    gap: 100px;
    height: 100vh;
  }

}

@media (max-width: 580px) {
  #playPauseBtn {
    display: block;
  }


  #accept-cookies {
    display: none;
  }

  .header {
    justify-content: space-between;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .toggle {
    display: flex;
    z-index: 2;
    position: fixed;
    width: 35px;
    height: 35px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition-duration: .5s;
    margin-left: 83%;
  }

  nav {
    display: none;
    flex-direction: column;
    color: white;
    width: 50%;
    height: 200px;
    margin-top: 50%;
    margin-left: 3%;
    background: rgba(1, 1, 1, 1);
    border-radius: 10px 10px 10px 10px;
    justify-content: center;
    z-index: 1;
  }


  nav.show {
    display: flex;
  }


  .main1 {
    display: flex;
    align-items: center;
    width: 100%;
    height: 1000px;
    background: url(assets/fundo2.jpeg) fixed center;
  }

  .fundo {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 1000px;
    padding: 5%;
    gap: 30px;
  }

  .textocarousel {
    display: flex;
    flex-direction: column;
    margin-left: 5%;
  }

  .textocarousel2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-left: -5%;
    margin-top: 10%;
  }

  .carousel {
    max-width: 380px;
  }

  /* .carousel-inner {
    max-height: 43vh;
  } */

  /* .carousel-item img {
    max-height: 38vh;
  } */

  .main2 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .main2 .textsobreabout p {
    font-size: 15px;
  }

  #sobre {
    height: 1050px;

  }

  .carousel .carousel-item {
    width: 250px;
    border: 3px white solid;
    border-radius: 30px;
    padding: 10px 10px 10px 10px;
  }

  .main2 .imagems {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;

  }

  .main2 .imagems img {
    width: 100px;
    margin: 0;
  }

  .textsobreabout {
    display: flex;
    flex-direction: column;
    margin-top: -10%;
  }

  .main2 .textsobreabout {
    height: 30vh;
  }

  .main4 {
    width: 100%;
    height: 1100px;
    background: url(assets/fundo2.jpeg) fixed center;
    text-align: center;
  }

  .main4 .fundo2 {
    height: 1100px;
  }

  .main4 .fundo2 .perfil {
    display: flex;
    flex-direction: column;
    gap: 100px;
  }

  .main5 .textolocalização .info div p {
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 15px;
  }

  .main5 {
    display: flex;
    flex-direction: column;
    gap: 100px;
    height: 1000px;
    padding: 5px;
  }

  .modal-content {
    width: 350px;
  }

  .modal-content h1 {
    margin-top: 10%;
  }

  .map {
    display: flex;
    justify-content: center;
    max-width: 95%;
  }

  .mapa-conteudo {
    display: flex;
    align-items: center;
    max-width: 95%;
  }

  footer .icon {
    display: flex;
    align-items: center;
    margin-left: -10px;

  }

  footer .icon ul {
    display: flex;
    align-items: center;
    margin-left: -25px;
    justify-content: center;
  }

}

@media (max-width: 385px) {
  .header {
    padding: 5px;
  }

  .toggle {
    display: flex;
    z-index: 2;
    position: fixed;
    width: 35px;
    height: 35px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition-duration: .5s;
    margin-left: 85%;
  }



  nav.show {
    display: flex;
  }


  .main1 {
    width: 100%;
    height: 1000px;
  }

  .fundo {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 1000px;
    justify-content: center;
  }

  .textocarousel {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-left: 5%;
  }

  .textocarousel2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-left: -5%;
    margin-top: 10%;
  }

  .carousel {
    max-width: 350px;
    max-height: 55vh;
  }


  .carousel-inner {
    max-height: 50vh;
  }

  .carousel-item img {
    width: 50vh;
  }

  /* .carousel-item img {
    max-height: 45vh;
  }

  .carousel-item {
    animation: float 3s ease-in-out infinite;
  } */

  .main2 {
    display: flex;
    flex-direction: column;
    align-items: center;
 
  }
  #sobre {
    height: 1100px;
  }

  .main2 .imagems {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: -50%;
  }

  .main2 .imagems img {
    width: 90px;

  }

  .textsobreabout {
    display: flex;
    flex-direction: column;
  
  }

  .main4 {
    height: 1200px;
  }

  .main4 .fundo2 {
    height: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .main4 .fundo2 .perfil {
    display: flex;
    flex-direction: column;
    gap: 100px;
  }

  .perfil {
    display: flex;
    flex-direction: column;
  }

  .main5 {
    display: flex;
    flex-direction: column;
    gap: 100px;
    height: 1000px;
  }

  .main5 .textolocalização {
    display: flex;
    flex-direction: column;
    max-width: 350px;
  }

  .main5 .map {
    display: flex;
    justify-content: center;
  }

  .modal-content {
    width: 300px;
  }
}