@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Qwitcher+Grypen:wght@400;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

.topo-site {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 100px;
  background: transparent;
  display: flex;
  align-items: center;
  z-index: 100;
}

.logo {
  font-size: 2em;
  color: white;
  text-decoration: none;
  font-weight: 700;
}

.redes-sociais {
  margin: 0 auto 0 50px;
}

.redes-sociais a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid white;
  border-radius: 6px;
  text-decoration: none;
  margin-right: 10px;
  transition: 0.5s;
}
.redes-sociais a:hover {
  background: white;
}

.redes-sociais a i {
  font-size: 20px;
  color: white;
}

.redes-sociais a:hover i {
  color: #444;
}

.navbarra a {
  font-size: 20px;
  text-decoration: none;
  color: white;
  margin-left: 30px;
  font-weight: 500;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: 6px 6px;
}

.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
}

.conteudo .slide {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  opacity: 0;
  transition: 0.3s ease;
}

.slide.active img {
  opacity: 1;
}

.slide .info-esquerda {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  transform: translateX(-100%);
  transition: 0s;
}

.slide.active .info-esquerda {
  transform: translateX(0);
  z-index: 1;
  transition: 0.5s ease;
}

.info-esquerda .blur {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  -webkit-mask: linear-gradient(#000 0 0), linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0), linear-gradient(#000 0 0);
  -webkit-mask-clip: text, padding-box;
  mask-clip: text, padding-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding-right: 20px;
}

.blur h1 {
  font-size: 250px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 1);
}

.slide:nth-child(1) .blur h1,
.slide:nth-child(4) .blur h1 {
  margin-right: -10px;
}

.info-esquerda .textao {
  position: absolute;
  bottom: 8%;
  left: 10%;
  color: white;
}

.textao h3 {
  font-size: 20px;
}

.textao p {
  font-size: 16px;
  margin: 10px 0 15px;
}

.textao .botao {
  display: inline-block;
  padding: 13px 28px;
  background: white;
  border: 2px solid white;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  color: #444;
  text-decoration: none;
  font-weight: 600;
  transition: 0.5s;
}

.textao .botao:hover {
  background: transparent;
  color: white;
}

.slide .info-direita {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  transform: translateX(100%);
  transition: 0s;
}

.slide.active .info-direita {
  transform: translateX(0);
  z-index: 1;
  transition: 0.5s ease;
}

.info-direita h1 {
  font-size: 250px;
  color: white;
  text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9,
    0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2),
    0 5px 10px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.2),
    0 20px 20px rgba(0, 0, 0, 0.15);
}

.slide:nth-child(2) .info-direita h1,
.slide:nth-child(4) .info-direita h1 {
  margin-left: 10px;
}

.info-direita h3 {
  font-size: 80px;
  position: absolute;
  color: white;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transform: translateY(150%);
  margin-left: 13px;
}

.navegacao-botao {
  position: absolute;
  bottom: 8%;
  right: 5%;
  z-index: 99;
}

.navegacao-botao span {
  display: inline-flex;
  width: 50px;
  height: 50px;
  background: white;
  border: 2px solid white;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  margin-left: 25px;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.navegacao-botao span:nth-child(1) {
  background: transparent;
}

.navegacao-botao span:nth-child(1):hover {
  background: white;
}

.navegacao-botao span i {
  font-size: 45px;
  color: #444;
  transition: 0.5s;
}

.navegacao-botao span:nth-child(1) i {
  color: white;
}

.navegacao-botao span:nth-child(1):hover i {
  color: #444;
}

/* Media Queries para Responsividade */
@media (max-width: 1200px) {
  .blur h1,
  .info-direita h1 {
    font-size: 200px;
  }

  .info-direita h3 {
    font-size: 60px;
  }
}

@media (max-width: 992px) {
  .topo-site {
    padding: 20px 50px;
  }

  .blur h1,
  .info-direita h1 {
    font-size: 150px;
  }

  .info-direita h3 {
    font-size: 50px;
  }

  .textao h3 {
    font-size: 18px;
  }

  .textao p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .topo-site {
    padding: 20px;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.8);
  }

  .logo {
    margin-bottom: 15px;
  }

  .redes-sociais {
    margin: 15px 0;
  }

  .navbarra {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .navbarra a {
    margin: 0 10px;
    font-size: 16px;
  }

  .slide .info-esquerda,
  .slide .info-direita {
    width: 100%;
  }

  .blur h1,
  .info-direita h1 {
    font-size: 120px;
  }

  .info-direita h3 {
    font-size: 40px;
  }

  .textao {
    left: 5%;
    right: 5%;
    text-align: center;
  }

  .navegacao-botao {
    bottom: 5%;
    right: 50%;
    transform: translateX(50%);
  }
}

@media (max-width: 576px) {
  .blur h1,
  .info-direita h1 {
    font-size: 80px;
  }

  .info-direita h3 {
    font-size: 30px;
  }

  .textao h3 {
    font-size: 16px;
  }

  .textao p {
    font-size: 12px;
  }

  .textao .botao {
    padding: 10px 20px;
    font-size: 14px;
  }

  .navegacao-botao span {
    width: 40px;
    height: 40px;
    margin-left: 15px;
  }
}

@media (max-width: 400px) {
  .blur h1,
  .info-direita h1 {
    font-size: 60px;
  }

  .info-direita h3 {
    font-size: 24px;
  }

  .navbarra a {
    font-size: 14px;
    margin: 0 5px;
  }

  .redes-sociais a {
    width: 35px;
    height: 35px;
  }

  .redes-sociais a i {
    font-size: 16px;
  }
}
