*{ 
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

.topo {
  display: flex;
  background-color: black;
}

main{
  background-image: linear-gradient(#000000, #e4d4d4 , #352c2c);
}
/* estava mexendo aqui jean */
/* header{

  background-size: cover;
  display: flex;
  justify-content: center;
  width: 100vw;
} */

/* ######### Menu - Home - Lista - Sobre Nós - Login ######### */
.logo {
  text-align: center;
  margin-left: 30px;
  color: rgb(167, 19, 19);
  margin: 15px;
}

.logo h2 {
  display: inline-block;
  font-weight: bold;
  background: linear-gradient(to right, rgb(255, 255, 255) 10%,rgb(255, 0, 0) 90%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  padding:0;
}

.container {

  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color:  rgb(0, 0, 0);
  position: fixed;
  z-index: 1; /* z-index: 1 para deixar o header acima do conteudo quando usar o scrol*/
}

.menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-family: 'Roboto', sans-serif;
  font-variant: small-caps;
}

.menu li{
  margin: 0px;
  display: inline;
  padding: 0px;
  list-style: none;
}

.menu li a{
  font-size: 20px;
  color: white;
  text-decoration: none;
  margin-right: 30px;
  padding: 0%;
}

.menu a:hover {
  color: red;
  font-weight: bold;
  font-variant: small-caps;
}

#divBusca{
  margin-right: 30px;
  background-color:rgb(26,26, 26);
  border:solid 1px;
  border-radius:15px;
  width:200px;
}

#txtBusca{
  float:left;
  background-color:transparent;
  padding-left:5px;
  font-style:italic;
  font-size:18px;
  color: white;
  border:none;
  height:32px;
  width:160px;
}

/* ************************MODAL********************* */

#modalLogin:checked + .modal {
  display: flex;
  }
  
  .checkModal{
    display: none;
  }

  .modal{
    display: none;
    position: fixed;
    justify-content: center;
    align-items: center;
  
    width: 100%;
    height: 100%;
  
  }
  
  #corModal{
    font-family: 'Roboto', sans-serif;
    font-variant: small-caps;
    font-size: 20px;
    color: white;
    text-decoration: none;
    margin-right: 30px;
    padding: 0%;
  }

  .menu label:hover {
    color: red;
    font-weight: bold;
    font-variant: small-caps;
  }
  
  .modal .fechaModal {
    position: absolute;
    margin-top: 120px;
    margin-left: 200px;
    color: white;
    font-size: 25px;
  }
  
  .modal .fechaModal:hover{
  cursor: pointer;
  color: red;
  }
  /* ************************MODAL********************* */
  #login {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-family: 'Roboto', sans-serif;
    font-variant: small-caps;
  }
  
  .cardl {
    background-color: rgba(19, 19, 19, 1);
    margin-top: auto;
    padding: 40px;
    border-radius: 2px;
    width:280px;
  }
  
  .cardl-header {
    text-align: center;
    margin-left: 30px;
    color: rgb(167, 19, 19);
    margin: 15px;
    padding-bottom: 50px;
    opacity: 0.8;
  }
  
  .cardl-header h2 {
    display: inline-block;
    font-weight: bold;
    background: linear-gradient(to right, rgb(255, 255, 255) 10%,rgb(255, 0, 0) 90%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    padding:0;
  }
  
  .cardl-content label {
    color: #fff;
    font-size: 12px;
    opacity: 0.8;
  }
  
  .cardl-content-area {
    display: flex;
    flex-direction: column;
    padding:10px 0;
  }
  
  .cardl-content-area input {
    margin-top: 10px;
    padding:0 5px;
    background-color: transparent;
    border:none;
    border-bottom: 1px solid #e1e1e1;
    outline: none;
    color: #fff;
  }
  
  .cardl-footer {
    display: flex;
    flex-direction: column;
  }
  
  .cardl-footer .submit{
    width: 100%;
    height: 40px;
    background-color: #a13854;
    border:none;
    color:#e1e1e1;
    margin: 10px 0;
  }
  
  .cardl-footer a {
    text-align: center;
    font-size: 20px;
    opacity: 0.8;
    color: #e1e1e1;
    text-decoration: none;
  }
/* ################################################### */


/* ##################### Banners ##################### */
.banner{
  background: url(../img/Banner.jpg);
  width: 100%;
  height: 650px;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: white;
  text-align: center;
  padding: 200px 0;
}

.banner h1{
  font-size: 56px;
  padding-bottom: 30px;
  background: linear-gradient(to right, rgb(255, 255, 255) 40%,rgb(255, 0, 0) 60%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  padding:0;
}

.banner p{
  font-size: 25px;
  padding-bottom: 50px;
}

.banner a{
  color: black;
  background: rgba( 255, 255, 255, 0.60 );
  padding: 18px 40px;
  text-decoration: none;
  border-radius: 8px;
}

.banner a:hover{
  background: rgba( 200, 210, 220, 0.80 );
}
/* ################################################### */


/* ############## Conteudo das Páginas ############### */
.contpage{
  justify-content: center;
  text-align: center;
}

.contpage img{
  width: 100%;
  height: 100%;
  /* foi alterado o height para 100% para a imagem não ficar destorcida */
  /* height: 650px; */
}

h2{
  color: white;
  font-variant: small-caps;
  padding: 2%
}

.paraMais{
  color: white;
  font-variant: small-caps;
}

.paraMais a{
  text-decoration: none;
  color: red;
}

iframe{
  /* width: 100%; */
  width: 600px;
  height: 500px;
  border: outset;
}

.curiosidade h3{
  color: red;
}

.curiosidade p{
  text-align: center;
}

.bodypage{
  padding: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
}

.curiosidade{
  display: grid;
  row-gap: 10px;
  background-color: rgb(0, 0, 0);
  border-radius: 13px;
  color: rgb(250, 250, 250);
  padding: 1%;
}
/* ################################################### */


/* ###################### Cards ###################### */
.cards{
  display: flex;
  justify-content: space-evenly;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px;
  width: 80%;
  text-align: center;
}

.cardsbody{
  padding: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
}

.card{
  width: 400px;
  height: 400px;
  border-radius: 13px;
  background: rgba( 255, 255, 255, 0.35 );
  box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
  backdrop-filter: blur( 13.5px );
  border: 2px solid rgba( 255, 255, 255, 0.18 );
}

.cards a{
  display: inline-block;
  padding: 10px 20px;
  font-size: 20px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  outline: none;
  color: #fff;
  background-color: #df1f1f;
  border: none;
  border-radius: 15px;
  box-shadow: 0 9px #999;
}

.card a:hover{
  background-color: #3e8e41;
}

.card a:active{
  background-color: #3e8e41;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}

.card:hover{
  transform: scale(1.2);
}

.card img{
  width: 100%;
  height: 200px;
  border-radius: 13px;
}

.text{
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  justify-content: center;
}

.textcards{
    font-weight: bold;
    margin: auto;
    list-style: none;
    font-size: 25px;
    text-align: center;
    margin-top: 20px;
}
/* ################################################### */


/* ################### Cards Pages ################### */
.cardspage{
  display: flex;
  justify-content: space-evenly;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px;
  width: 80%;
}

.cardspagebody{
  padding: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
}

.cardpage{
  width: 300px;
  height: 250px;
  border-radius: 13px;
  background: black;
  color: white;
}

.cardpage img{
  width: 100%;
  height: 200px;
  border-radius: 13px;
}

.textpage{
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  justify-content: center;
  font-size: 35px;
}
/* ################################################### */


/* ##################### Rodapé ###################### */
footer{
  background-color: rgb(17, 17, 17);
  background-size: cover;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  padding: 15px 0;
  bottom: 0;
  gap: 10px;
}

.controleFooter{
  display: flex;
  /* flex-direction: row; */
}

.caixafooter{
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  align-items: center;
  padding: 10px;
}

.icone{
  display: flex;
  justify-content: space-between;
  gap: 5px;
  align-items: center;
  border-radius: 100px;
}

.icone  a  img {
  width: 55px;
  height: 55px;
  transition: 0.3s;
  padding: 5px;
}

.icone a img:hover{
  transform: scale(1.2) rotate(360deg);
}

footer p{
  font-size: 15px;
  font-style: arial;
  font-family: 'Ramaraja',serif;
  color: white;
}

.linha-rodape{
  text-align: center;
}

.rodapeTexto{
  display: flex;
  justify-content: center;
  font-size: 25px;
  text-align: center;
  width: 100%;
  color:rgb(255, 255, 255)
}
/* ################################################### */


/* ####### Barra de rolagem da Pagina (Scroll) ####### */
::-webkit-scrollbar{
  width: 10px;
}

::-webkit-scrollbar-track{
  background-color: black;
}

::-webkit-scrollbar-thumb{
  background-color: white;
}

::-webkit-scrollbar-thumb:hover{
  background-color: rgb(255, 0, 0);
}
/* ################################################### */

@media (max-width: 600px) {
  main.cards{
    flex-direction: column;
    
  }
}

@media (min-width: 600px) {
 .iframe{
  width: 100%;
  }  
}

@media only screen and (max-width: 780px){

  .container{
      display: flex;
      flex-wrap:wrap;
      align-items: center;
      justify-content: space-between;
      position: relative;
  }
  
  .cabecalho a{
      display: none;
  }
  .cabecalho label{
    display: none;
}
  .menuhamburguer img{
      margin: auto;
      width: 50px;
      height: 50px;
  }

  #divBusca{
    display: none;
  }
}

@media only screen and (max-width: 600px){
  iframe{
    width: 100%;
  }
}

@media only screen and (min-width: 779px){
    
  .menuhamburguer{
      display: none;
  }
}

@media (max-width: 600px) {
  .controleFooter{
    display: grid;
  }  
}