@charset "utf-8";
/* Como linkar fonte inter*/
@font-face {
  src: url(../fonts/arial.ttf);
font-family: "arial";
font-weight: 400;
}

@font-face {
  src: url(../fonts/Roboto-Light.ttf);
  font-family: "regular";
  font-weight: 400;
}

*{
	margin:0px;
	padding: 0px;
}



/*CSS RESPONSIVEL*/

@media(max-width: 960px) {
  .principal .imgem{
    max-width: 100%;
  }
  .principal h2{
    font-size: 18px;
  }
  .principal .imgem img{
    max-width: 100%;
  }
  .menu{
    margin-top: 20px;
    max-width: 100%;
  }
  .menu li{
    background-color: #CA2F2F;
    border-radius: 5px;
    margin: 5px;
    list-style: none;
    max-width: 100%;
  }
  .menu li a{
    display: block;
    color: white;
    font-size: 14px;
    font-family: arial;
    font-weight: 600;
    text-decoration: none;
    padding: 10px;
  }
  .menu li :hover{
    border-radius: 5px;
    background-color:#730011;
  }
  .menu li .active{
    background-color:#730011;
    border-radius: 5px;
  }
}
/*----------------------------------------------------------------------------------------------------------------------*/
@media(min-width: 961px){
  html{
    width: 1024px;
  }
  .principal .imgem{
    max-width: 100%;
  }
  .principal h2{
    font-size: 18px;
  }
  .principal .imgem img{
    max-width: 100%;
  }
  .menu{
    display: flex;
    margin-top: 20px;
    max-width: 100%;
  }
  .menu li{
     background-color: #CA2F2F;
    border-radius: 5px;
    margin: 5px;
    list-style: none;
    max-width: 100%;
  }
  .menu li a{
    display: block;
    color: white;
    font-size: 14px;
    font-family: arial;
    font-weight: 600;
    text-decoration: none;
    padding: 10px;
  }
  .menu li :hover{
    border-radius: 5px;
    background-color:#730011;
  }
  .menu li .active{
    background-color:#730011;
    border-radius: 5px;
  }
}