* {
  margin: 0;
}

a,
a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
  outline: none;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #deefe7;
}
footer {
  padding: 1%;
  text-align: center;
  background-color: #f0e948;
  font-weight: 600;
  width: 100%;
  padding-bottom: 3vw;
  height: 100%;
}

.border {
  padding: 0% 5%;
  list-style: none;
}

.center {
  text-align: center;
}

.navbar {
  list-style: none;
  background-color: #0adcde;
  overflow: auto;
  width: 100%;
}

.navbar a {
  float: left;
  color: #8b3986;
  text-decoration: none;
  font-weight: 600;
  padding: 15px;
  text-align: center;
}

.navbar a:hover {
  background-color: #dfa8dc;
}

.active {
  background-color: #f0e948;
  color: #8b3986;
}

.banner {
  background-image: url("./img/back.jpg");
  background-size: cover;
  background-position: bottom right;
  height: 50vh;
  width: 90%;
  border-bottom: 5px solid #4e29;
  border-top: 4px solid #f0e948;
  padding: 2% 5%;
}

.texto {
  background: #f09e5280;
  width: 100%;
  padding: 10px;
  border-radius: 15px;
  font-size: 20px;
  text-align: left;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.row {
  padding: 0% 4%;
  text-align: center;
  margin-bottom: 90px;
  justify-content: center;
  align-items: center;
}

.barra {
  background-color: #d9d271;
  height: 100%;
  width: 250px;
  position: fixed;
  transition: all 0.2s linear;
  left: -250px;
}

.menu-text {
  width: 100%;
  position: absolute;
  top: 80px;
  padding-top: 15px;
}

.menu-text a {
  text-decoration: none;
}

#check {
  display: none;
}
#icone {
  cursor: pointer;
  padding: 32px;
  position: absolute;
  z-index: 1;
  top: 20px;
  left: 20px;
}

#check:checked ~ .barra {
  transform: translateX(250px);
}

#check:checked ~ .barra nav a .Link {
  opacity: 1;
  transition-delay: 0.3s;
}

.mburg {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  top: 25px;
  left: 25px;
  position: absolute;
}

.hamburguer {
  position: relative;
  display: none;
  background: #101010;
  width: 30px;
  height: 3px;
  top: 29px;
  left: 15px;
  transition: 0.5s ease-in-out;
}

.hamburguer:before,
.hamburguer:after {
  background: #0a0a0a;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  transition: 0.5s ease-in-out;
}

.hamburguer:before {
  top: -10px;
}

.hamburguer:after {
  bottom: -10px;
}

input:checked ~ label .hamburguer {
  transform: rotate(45deg);
}

input:checked ~ label .hamburguer:before {
  transform: rotate(90deg);
  top: 0;
}

input:checked ~ label .hamburguer:after {
  transform: rotate(90deg);
  bottom: 0;
}

@media (min-width: 300px) and (max-width: 600px) {
  .navbar a {
    float: none;
    display: none;
  }

  .hamburguer {
    display: block;
  }

  .Link {
    background-color: #d9d271;
    padding: 25px;
    font-size: 15pt;
    font-weight: bolder;
    transition: all 0.3s linear;
    color: #03a60e;
    border-bottom: 3px solid #c1d9b0;
    opacity: 0;
  }

  .Link:hover {
    background-color: #03a60e;
    color: #c1d9b0;
  }

  .video:hover {
    background-color: #deefe7;
    box-shadow: 0px 0px 10px #8b3986, 0px 0px 20px #d280cc, 0px 0px 30px #d26f35;
    border-radius: 20px;
  }

  .curio:hover {
    background-color: #deefe7;
    box-shadow: 0px 0px 10px #0adcde, 0px 0px 20px #04787a, 0px 0px 30px #d26f35;
    border-radius: 20px;
  }

  .cardsMenu:hover {
    background-color: #deefe7;
    box-shadow: 0px 0px 10px #8bff5d, 0px 0px 20px #56c32a, 0px 0px 30px #d26f35;
    border-radius: 20px;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .hamburguer {
    display: block;
  }

  .active {
    background-color: #0adcde;
  }

  footer {
    font-size: 0.8em;
  }

  .curiosidades,
  .fontes {
    display: flex;
    width: 80%;
    margin-left: auto;
    padding: 2%;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
  }
  .imagens-curiosidades {
    width: 100%;
    height: auto;
    padding-bottom: 2%;
  }
  .texto-curiosidades,
  .fontes p,
  a {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    text-align: justify;
    font-size: 0.9rem;
  }
  .texto {
    width: 95%;
    font-size: 15px;
    margin-top: 62px;
  }
}

@media screen and (max-width: 480px) {
  .navbar {
    display: none;
  }

  .banner {
    height: auto;
    padding-top: 15%;
    padding-bottom: 8%;
  }

  .texto {
    width: 95%;
    font-size: 12px;
    margin-top: 62px;
  }
  h1 {
    font-size: 13px;
  }
  
}

@media screen and (min-width: 1300px) {
  .row {
    display: flex;
    padding: 0% 4%;
    text-align: center;
    margin-bottom: 90px;
    justify-content: center;
    align-items: center;
  }
}
