*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: "Poppins", serif;
    font-weight: 300;
    font-style: normal;
    background-color: rgb(227, 242, 255);
}
header{
    width: 100%;
    background-color: rgb(26, 44, 110);
    height: 80px;
    color: white;
    display: flex;
    justify-content: space-around;
}
.titulo__header{
    margin-top: auto;
    margin-bottom: auto;
}
.sobre{
    margin-top: 50px;
    width: 100%;
    height: 500px;
    background-image: url(imgs/fundo.png);
    display: flex;
    justify-content: center;
}
.lado__foto{
    width: 600px;
    height: 100%;
}
.texto__sobre{
    width: 600px;
    height: 100%;
    color: white;
}
img{
    height: 500px;

}
form{
    height: 770px;
    background-color: rgb(26, 44, 110);
    width: 1000px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50px;
    padding: 60px;
}
input, textarea{
    display: block;
    width: 100%;
    height: 50px;
    padding: 10px;
    font-size: 12pt;
    border-radius: 10px;
    border: 0px solid transparent;
    margin-bottom: 20px;
}
textarea{
    height: 400px;
}
.forma__separacao{
    height: 2px;
    width: 80%;
    background-color: white;
}
p{
    font-size: 1.1rem;
}
button{
    background-color: rgb(73, 84, 123);;
    width: 100%;
    height: 100px;
    border-radius: 20px;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s eas
}
button:hover {
    background-color: rgb(0, 15, 71);;
    resize: none;
}
footer{
    background-color: rgb(26, 44, 110);
    width: 100%;
    height: 200px;
    margin-top: 100px;
    padding: 100px;
}
.copy{
    color: white;
    text-align: right;
}
/* PARA TELAS MENORES QUE 1300PX */
@media (max-width: 1300px) {
    .lado__foto, .texto__sobre {
        width: 45%;
    }
    .sobre{
        font-size: 0.8rem;
    }
    form {
        width: 90%;
        padding: 30px;
        height: auto;
        border-radius: 1rem;
    }
}
@media (max-width: 1000px) {
    img{
        width: 400px;
        height: auto;
        mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 20%);
        -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 20%);
    }
}
/* PARA TELAS MENORES QUE 768PX (CELULARES) */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        height: auto;
        padding: 20px;
        text-align: center;
        font-size: 8pt;
    }

    .sobre {
        flex-direction: column;
        align-items: center;
        height: auto;
        padding: 20px;
        font-size: 0.8rem;
    }
    p{
        font-size: 1rem;
    }
    .lado__foto, .texto__sobre {
        width: 100%;
        text-align: center;
    }

    img {
        height: auto;
        width: 80%;
        mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 20%);
        -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 20%);
    }

    form {
        width: 95%;
        padding: 20px;
        border-radius: 1rem;
        height: auto;
    }

    button {
        height: 50px;
        font-size: 14px;
        border-radius: 0.8rem;
    }

    footer {
        padding: 30px;
        text-align: center;
    }
    .forma__separacao{
        margin-left: auto;
        margin-right: auto;
    }
}
