body {
    background-image: linear-gradient(to right, #00AA57, #00793D);
    margin: 0px;
    margin-bottom: 100px;
}

#container-banner {
    background-image: linear-gradient(to right, #F5F5F5, #DDDDDD);
    height: 400px;
    width: 100%;
    margin-top: 60px;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

#banner-topo {
    height: 503px;
    width: 645px;
    background: url("assets/images/banner-topo.png");
    background-repeat: no-repeat;
}

#content-banner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    margin-top: -40px;
    width: 100%;
    max-width: 1440px;
}

#banner-right-text {
    border-bottom: 5px solid #D9D9D9;
    padding-left: 40px;
    padding-right: 40px;
    border-radius: 20px;
    color: #006F38;
    font-size: 26px;
    font-family: 'Imprima';
    font-style: normal;
    font-weight: 400;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    text-align: center;
    width: 290px;
}

#content-banner-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#banner-left-text {
    color: #006F38;
    font-size: 20px;
    font-family: 'Imprima';
    font-style: normal;
    font-weight: 400;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    text-align: left;
    width: 400px;
    position: absolute;
    margin-top: 385px;
    margin-left: 55px;
}

#text-title-data {
    text-align: center;
    color: #FF8311;
    font-size: 20px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.bg-data {
    width: 100%;
    height: 340px;
}

.bg-data-color {
    background: #008040;
}

.content-data {
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin-top: -30px;
    position: absolute;
    width: 100%;
    max-width: 1440px;
}

.content-data-text {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    color: #FFFFFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-title {
    background: #F5F5F5;
    box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 0px;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#content-form {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 19px;
    color: #FFFFFF;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}

#bg-form {
    background: #007D3F;
    border-radius: 20px;
    width: 685px;
    height: 326px;
}

.inputText {
    height: 50px;
    width: 100%;
    background: #F5F5F5;
    border-radius: 10px;
    border: 0;
    text-indent: 10px;
    font-size: 19px;
    font-family: 'Inter';
}

.inputText::placeholder {
    font-size: 19px;
    font-family: 'Inter';
    font-style: normal;
}

.content-input {
    margin: 20px;
}

.btn {
    background: #FF8311;
    width: 100%;
    border-radius: 10px;
    height: 55px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    color: #864000;
    border: 0;
    cursor: pointer;
    transition: background 1s;
}

.btn:hover {
    background: #ffc831;
    transition: background 1s;
}

.content-desktop-data {
    margin-top: 100px;
}

#logo {
    background: url("assets/images/logo.png");
    background-repeat: no-repeat;
    width: 470px;
    height: 168px;
}

.illustration-spacing {
    margin-top: 60px;
}

.illustration {
    width: 457px;
    height: 348px;
}

.illustration-1 {
    background: url("assets/images/illustration-1.png");
    background-repeat: no-repeat;
}

.illustration-2 {
    background: url("assets/images/illustration-2.png");
    background-repeat: no-repeat;
}

.illustration-3 {
    background: url("assets/images/illustration-3.png");
    background-repeat: no-repeat;
}

.content-desktop-form {
    margin-top: 20px;
}

.illustration-reverse {
    text-align: right;
}

@media (max-width: 1230px) {
    .container, .bg-data, .content-data, #content-banner, #content-form {
        width: 100%;
    }

    #content-banner, .content-data {
        flex-direction: column;
    }

    .content-desktop-data {
        margin-top: 230px;
    }

    #banner-right-text {
        color: #fff;
    }

    #banner-topo {
        width: 100%;
        height: 320px;
        background-size: contain;
    }

    #logo {
        width: 100%;
        background-size: contain;
    }

    .illustration {
        width: 100%;
        height: 300px;
        background-size: contain;
    }

    .content-desktop-form {
        margin-top: 120px;
    }

    .illustration-reverse {
        flex-direction: column-reverse !important;
        text-align: left;
    }

    .illustration-spacing {
        margin-top: 120px;
    }

    #bg-form {
        width: 100%;
    }

    body {
        margin-bottom: 10px;
    }

    .bg-data-color {
        background: transparent;
    }

    .content-data-text {
        margin: 10px;
    }

    .content-data {
        position: initial;
        margin-top: 10px;
        gap: 5px;
    }

    .first-child {
        margin-top: 20px !important;
    }

    #content-form {
        margin: 10px;
        width: calc(100% - 10px);
    }
}