*{
    margin: 0;
    margin: 0;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    box-sizing: border-box;
    list-style: none;
    /* outline: 1px solid red; */
}
header{
    display: flex;
    background-color: white;
}
header figure{
    margin: 20px 100px;
}
main{    
    display: flex;
    justify-content: space-around;
    height: 100vh;
    background-color: #B5B6F2;
    background-image: linear-gradient(#B5B6F2, #EFEFFF);
}
figure, .section-sociais{
    display: flex;
}
.container-main a, footer a:hover{
    text-decoration: underline;
}
section.container-main{
    width: 100vw;
    height: 100vh;
}
.container-form label{
    font-weight: 700;
    font-size: 12px;
}
.container-form input{
    background-color: #e6e5e5;
    height: 40px;
    width: 100%;
    border-radius: 10px;
    border: none;
    padding-left: 10px;
    outline: none;
}
.form-button{
    display: block;
    text-align: center;
    height: 40px;
    width: 100%;
    border-radius: 10px;
    background-color: #C92071;    
    text-decoration: none;
    margin-top: 20px;
}
.form-button button{
    color: #F5F5F5;
    background-color: transparent;
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}
.form-button:hover{
    background-color: #fa6bb0;   
    transition: .3s;
}

.container-sociais{
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.container-sociais a{
    margin-left: 20px;
}

img.esquerda{
    align-self: flex-start;
}
img.direita{
    align-self: flex-end;
}

footer{
    height: auto;
    width: 100%;
    background-color: #1F1F1F;     
}
.footer-section{
    display: flex;
    justify-content: space-around;
    border-bottom: 1px solid white;
    width: 90%;
    margin: auto;
}
.section-sociais li{
    margin: 10px 20px 0 0;
}
.footer-section nav ul{
    padding: 0;
}
.footer-section nav li{
    margin-bottom: 20px;
}
.footer-section h4, .section-logo img{
    padding: 30px 0;
}
.footer-section p, .footer-section h4, .footer-section a, .footer-copy{
    color: white;
}
.contatos p:nth-child(3){
    margin-top: 10px;
}
.contatos p:nth-child(2){
    line-height: 1.6em;
}
.footer-copy{
    text-align: center;
    padding: 20px 0;
    font-size: 12px;
}

@media screen and (max-width: 1520px){
    body{
        width: 100vw;
    }
    header{
        display: flex;
        justify-content: center;
    }
    main figure{
        display: none;
    }
    .section-logo{
        margin-bottom: 50px;
    }
    .footer-section{
        display: flex;
        flex-wrap: wrap;     
        margin: auto;
        max-width: 90vw;
    }
    
}

@media screen and (max-width: 536px){
    main .container-main{
        margin: auto;
        width: 90%;
    }
}