html, body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    position: relative;
}

body {
    display: flex;
    flex-direction: column;
}

h1 {
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 600;
}

p {
    font-size: 14px;
    font-weight: 400;
}

input {
    outline: none;
}

#conteudo {
    width: 100%;
    text-align: center;
    margin: auto;
    padding-top: 100px;
    background-image: linear-gradient(to bottom, #ffffff00, #2c2c2ceb) ,url("../img/trucks.jpg");
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: space-around;
    align-items: start;
    margin-bottom: 0px;
}

#form {
    width: 20%;
    margin-top: 0px;
    margin-right: 100px;
    background-color: #ffffffe4;
    border: 1px solid #2c2c2c;
    padding: 50px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 100px;
}

#form input {
    width: 90%;
    background-color: #FFFFFF;
    border: 1px solid #2c2c2c81;
    padding: 12px 16px 12px 16px;
    border-radius: 8px;
    margin-bottom: 10px;
    margin-top: 10px;
}

div#midias_contato {
    background-color: #2c2c2cd5;
    border: 1px solid #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: fit-content;
    padding: 20px 40px;
    border-radius: 8px;
    max-width: 500px;
    margin-left: 100px;
    margin-top: 30px;
    color: #fff;
    margin-bottom: 50px;
}

div#midias_contato p {
    max-width: 350px;
    text-align: start;
    font-size: 16px;
}

div#midias_contato ul{
    background-image: linear-gradient(to right, #c93136, #cb2026);
    padding: 5px;
    padding-top: 15px;
    border-radius: 8px;
    width: 90%;
    display: flex;
    justify-content: space-around;
}

div#midias_contato ul li {
    list-style: none;
}

div#midias_contato img {
    cursor: pointer;
    width: 30px;
}

#form textarea {
    width: 90%;
    background-color: #FFFFFF;
    border: 1px solid #2c2c2c81;
    padding: 12px 16px 12px 16px;
    border-radius: 8px;
    margin-bottom: 10px;
    margin-top: 10px;
    outline: none;
}

#form textarea:focus {
    border-color: #cb2026;
}

#form input:focus{
    border-color: #cb2026;
}

#form button {
    font-size: 20px;
    color: #FFFFFF;
    font-weight: 500;
    border: none;
    background-color: #2c2c2c;
    padding: 12px 16px 12px 16px;
    border-radius: 8px;
    margin-bottom: 10px;
    margin-top: 10px;
}

#form button:hover {
    background-color: #cb2026;
    transition: 0.4s;
    color: #DADADA;
}

div.campos {
    display: flex;
    flex-direction: column;
    text-align: start;
}

button#google {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #dadada;
    font-size: 14px;
    font-weight: 500;
    background-color: #2c2c2c;
}

button#google img {
    margin-right: 10px;
}

p.aviso {
    color: #2c2c2ce0;
    font-size: 12px;
    font-weight: 400;
} 

p#baixo {
    color: #2c2c2c;
}

p#baixo:hover {
    color: #cb2026;
    transition: 0.2s;
} 

.line-container {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 0px 0px 10px 0px;
    font-size: 14px;
}

.line-container::before,
.line-container::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #2c2c2cad;
    margin: 0 10px;
}


button#button_baixo {
    margin-top: 0px;
}

#form_baixo {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1200px) {
    #form {
        margin-left: 50px;
        margin-top: 30px;
        width: 30%;
    }
}

 
@media (max-width: 900px) {
    body {

        min-height: 130vh;
    }

    #conteudo {
        display: block;
        min-height: 130vh;
    }

    div#midias_contato {
        margin: auto;
    }

    #form {
        width: 50%;
        margin-right: 0px;
        margin: 50px auto;
        margin-top: 100px;
        margin-bottom: 100px;
    }
}

@media (max-width: 500px) {
    body {
        min-height: 225vh;
    }

    div#midias_contato {
        width: 70%;
    }

    #form {
        width: 70%;
        margin-right: 0px;
        margin: 50px auto;
        margin-top: 100px;
        margin-bottom: 100px;
    }

    #conteudo {
        display: block;
        margin-bottom: 00px;
        /* height: 210vh; */
    }
}
