* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  background-color: rgb(250, 240, 220);
  color: black;
  font-family:  "Montserrat", sans-serif;
}

/* Header */
header {
  width: 100%;
  height: 100px;
  background-color: #8a1414;
  box-shadow: 5px 10px 18px rgb(170, 130, 130);
}

.wrapper-header {
  width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin: 0 auto;
}
.logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.barNav{
  display: flex;
  align-items: center;
}
.barNav a {
  text-decoration: none;
  font-size: 1.5em;
  color: white;
  letter-spacing: 2px;
  padding: 10px 20px;

}

.barNav a:hover {
  background-color: white;
  color: #8a1414;
  box-shadow: 5px 10px 8px rgb(170, 130, 130);
}
.reseauxSociale {
    display: flex;
    align-items: center;
    gap: 20px;
}
.reseaux {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    box-shadow: rgba(240, 46, 170, 0.4) 5px 5px, rgba(240, 46, 170, 0.3) 10px 10px, rgba(240, 46, 170, 0.2) 15px 15px, rgba(240, 46, 170, 0.1) 20px 20px, rgba(240, 46, 170, 0.05) 25px 25px;
}
.reseaux:hover {
    box-shadow: 5px 10px 8px rgb(170, 130, 130) ;
}
/* Menu burguer para celular */
.label_burger ,  #toggle {
    display: none;
}
/* Style para o corpo  */

main {
  margin: 30px 0px 80px 0px;
}

main h1 {
  padding: 10px;
  color: #8a1414;
  font-family:  "Dancing Script", cursive;
  font-size: 2.5em;
  font-weight: bolder;
  text-align: center;
}
main h2 {
  color: rgb(10, 75, 150);
/*  color: rgb(22, 156, 22);*/
  font-size: 1.8em;
  margin-bottom: 20px;
  text-align: center;
}
main h3 {
  margin-bottom: 20px;
  text-align: center;
}


footer {
    width: 100%;
    height: 70px;
   /* background:  rgb(55, 40, 40);*/
    background:  #8a1414;
    box-shadow: 0px -10px 10px gray;
    color: white;
    letter-spacing: 2px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center; 
    margin: 0 auto;
}  
@media only screen and (max-width: 1340px) {
  .logo {
    width: 150px;
} 
.reseaux {
  width:40px;
  height: 40px;
  margin-top: 10px;
}
.wrapper-header {
  width: 90%;
  justify-content: space-around;
}
}
@media only screen and (max-width: 1200px) {
  .barNav a {
    text-decoration: none;
    font-size: 1.3em;
  }
  .reseaux {
    width:30px;
    height: 30px;
  }
}

@media only screen and (max-width: 900px) {
  .logo {
     display: none;
   }
   .wrapper-header .reseauxSociale {
     display: none;
   }
   .barNav a {
     font-size: 1em;
   }
   footer {
     font-size: 0.8em;
   }
 
 .wrapper-header .barNav
 {
   display: none;
   flex-direction: column;
   background: rgb(10, 75, 150);
   height: 240px;
   position: absolute;
   top: 100px;
   z-index: 1;
   width: 100%;
   text-align: center;
 
 }
 .wrapper-header
 {
     margin: 0 auto;
     width: 100%;
     height: 100px;
     background: rgb(10, 75, 150);
 
    
 }
 .label_burger  
   {
       width: 30px;
       display: flex;
       justify-content: center;
       align-items: center;
       margin: 0 auto;
       font-size: 40px;
       color: rgb(255, 255, 255);
       cursor: pointer;
   }
 
   #toggle:checked + .barNav {
       display: flex;
   } 
 
 }


@media only screen and (max-width: 800px) {
  footer h3 , main h3 {
    display: none;
  }
  .barNav {
    display: flex;
    flex-direction: column;
    margin-top: -20px;
  }
  .barNav a {
    padding: 8px 0;
    top: 10px;
  }
  main h1 {
    font-size: 1.5em;
  }
  main h2, main p, form p {
    font-size: 1.2em;
  }

}
@media only screen and (max-width: 550px) {
  main h1 {
    font-size: 1em;
  }
  main h2 {
    font-size: 0.9em;
  }

  .main-section-container ul li h3 {
    left: 10% ;
  }
  
}