*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}
header{
    padding: 16px 0;
    background-color:black;
    color: rgb(236, 10, 10);
}
header ,
section h2,
section h3,
form button{
    font-family: 'Bungee', cursive;
    font-weight: normal;
}
header nav li{
    display: inline;
    margin-left: 16px;
    font-size: 18px;

}
header nav a{
    color: rgb(236, 10, 10);
    text-decoration: none;
}
header h1 ,
section h2{
    font-weight:  normal;
}
.container {
    max-width: 1280px;
    width: 80%;
    margin-top: 0 auto;
}
header .container ,
section .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header h1{
    padding-left: 20px;
}
.logos img{
    height: 24px;

}
.logos li{
   display: inline;
   margin-left: 8px;
}
section .container{
    align-items: flex-start;
}
section h2 ,
section h3{
    padding: 24px 0;
    color: rgb(236, 10, 10);
}
section h2{
    margin-bottom: 16px;

}
section p{
    margin-bottom: 8px;
}
.frontal{
    margin-right: 32px;
}
.social-links img{
    height: 24px;

}
.social-links li{
    display: inline;
    margin-right: 8px;

}
.social-links a {
    text-decoration: none;
}
#contato .container{
    display: block;
}
.metodos-contato{
    display: flex;
    justify-content: space-between;
}
form input,
form textarea,
form button{
    display: block;
    width: 320px;
    margin-bottom: 8px;
    padding: 8px;
}
form textarea{
    resize: none;
    height: 180px;
}
section h3{
    margin-bottom: 16px;
}
form button{
    background-color: rgb(236, 10, 10);
    border: none;
    cursor: pointer;
}
form button:hover{
    background-color: rgb(231, 93, 93);
}
input:focus, textarea:focus{
    outline-color: rgb(236, 10, 10);
}
footer{
    background-color: rgb(236, 10, 10);
    padding: 16px 0;
}
