/* Estilos de la página de Contato */

@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Noto+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* HEADER INICIO*/
div.header {
    width: 100%;
    height: 477px;
    left: 0px;
    top: 67px;
    border-radius: 4px;
    background-image: url("../img/header_img1.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.title {
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: -260px;
    width: 100%;
    height: 77px;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 64px;
    line-height: 77px;

    text-align: center;

    color: #FFFFFF;
}

/* FIN HEADER INICIO*/


span.podemos-te-ajudar {
    display: flex;
    justify-content: flex-start;
    width: 50%;
    height: 36px;
    margin: 63px 0 0 165px;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 36px;
    color: #000000;

    transform: rotate(0.5deg);
}

.p-text {
    display: flex;
    justify-content: flex-start;
    width: 80%;
    height: 44px;
    margin: 22px 0 0 165px;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    text-align: justify;

    color: #000000;
}

form.form-contact {
   margin: -140px 0 0 0;
   padding: 165px 165px 0 165px;
}

input.form-control,
textarea.form-control {
    /* background: rgba(1, 90, 179, 0.15); */
    background: #cbcbcb30;
    border: 1px solid #B3B3B3;
    border-radius: 4px;
}

.form-floating>label {
    margin: 4px 0 0 12px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 3px;

    color: #2E2E33;
}

.form-floating>.form-control,
.form-floating>.form-control-plaintext,
.form-floating>.form-select {
    height: calc(2.5rem + calc(var(--bs-border-width) * 2));
    line-height: 1.25;
}

div.button {
    display: flex;
    justify-content: flex-end;
}

button.btn-primary {
    width: 125px;
    height: 39px;
    margin: 0px 0 32px 10px;
    background: #0163ba;
    border: 1px solid #0163ba;
    border-radius: 4px;
}

button.btn-primary:hover {
    background: #014785;
    border: 1px solid #014785;
}



/*********************************************** Mobile *******************************************************/

@media screen and (min-width: 320px) and (max-width: 480px) {

    div.header {
        width: 100%;
        height: 499px;
        background-image: url("../img/mobile-4.png");
        background-size: cover;
        background-repeat: no-repeat;
    }

    div.mascara-azul {
        width: 100%;
        height: 499px;
        background: linear-gradient(90deg, rgba(1, 11, 103, 0.35) 6.25%, rgba(1, 90, 179, 0.35) 45.13%, rgba(0, 185, 236, 0.35) 100%);
    }

    .dropdown-menu {
        min-width: 100%;
    }

    .title {
        display: flex;
        justify-content: center;
        position: relative;
        margin: -273px 46px 0px 46px !important;
        width: 279px !important;
        height: 42px;

        font-family: 'Poppins';
        font-style: normal;
        font-weight: 500;
        font-size: 35px;
        line-height: 42px;
        text-align: center;
        color: #FFFFFF;
    }

    span.podemos-te-ajudar {
        display: flex;
        justify-content: center;
        width: 100%;
        height: 36px;
        margin: 30px 0 0 0;
        font-family: 'Poppins';
        font-style: normal;
        font-weight: 600;
        font-size: 24px;
        line-height: 28.8px;
        color: #000000;
        transform: rotate(0.5deg);
    }

    .p-text {
        display: flex;
        justify-content: center;
        width: 100%;
        height: 44px;
        margin: 0 0 0 0;
        padding: 12px;

        font-family: 'Poppins';
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        text-align: justify;

        color: #000000;
    }

    form.form-contact {
        margin: 40px 0 0 0;
        padding: 12px;
    }

    div.button {
        display: flex;
        justify-content: center;
        padding: 0px 10px 0px 10px;
        width: 100%;
    }

    button.btn-primary {
        width: 100%;
        height: 50px;
        margin: 32px 0 32px 0;
        background: #0163ba;
        border: 1px solid #0163ba;
        border-radius: 4px;
        font-size: 18px;
    }

}