p {
    color: #052630;
    font-size: 16px;
}

.hero {
    width: 100%;
    padding-top: 86px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;

    img {
        width: 100%;
        height: 300px;
    }

    article {
        position: absolute;

        h1 {
            color: #FFF;
            font-weight: 800;
            font-size: 32px;
        }
    }
}

.section-conteudo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    hr {
        background-color: #8AC440;
        height: 3px;
        width: 40%;
        opacity: 1;
        border: none;
        margin-bottom: 40px;
    }

    p {
        text-align: center;
    }

    p:nth-of-type(2) {
        margin-top: 20px;
    }

    form {
        max-width: 860px;
        padding: 0 20px;

        input {
            width: 100% !important;
            color: #052630;
            border: 1px solid #D9D8D6;
            border-radius: 10px;
            background-color: transparent;
        }

        textarea {
            color: #052630;
            border: 1px solid #D9D8D6;
            border-radius: 10px;
            background-color: transparent;
        }

        button {
            color: #FFF;
            background-color: #8AC440;
            font-size: 16px;
            font-weight: 600;
            width: 100%;
            height: 33px;
            border-radius: 10px;
            border: none;
        }

        label {
            color: #9C9B9B;
            font-weight: 400;
            margin-bottom: 10px;
        }

        .col-12,
        .col-6 input {
            margin-bottom: 10px;
        }

        strong {
            color: #052630;
        }
    }
}



@media (max-width: 868px) {
    .hero {

        article {
            left: 20px;

            h1 {
                font-size: 25px;
            }
        }
    }
}