* {
    border: none;
    padding: 0;
    margin: 0;
    left: 0;
    box-shadow: none;
}

.hero {
    width: 100%;
    display: grid;
    padding: 70px 0 0 0;

    * {
        grid-row: 1;
        grid-column: 1;
    }

    img {
        width: 100%;
    }

    h1 {
        align-self: center;
        justify-self: center;
        margin: 0;
        color: #fff;
        font-weight: 800;
        font-size: 32px;
    }
}

.section-blogs {
    margin-top: 40px;
    margin-bottom: 20px;

    article:nth-of-type(1) {
        display: flex;
        flex-direction: column;
        align-items: center;

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

        p {
            color: #052630;
            font-weight: 400;
            font-size: 16px;
            text-align: center;
        }

        #subtext {
            color: #052630;
            font-weight: 800;
            font-size: 32px;
            line-height: 32px;
            padding-top: 20px;
        }
    }

    article:nth-of-type(2) {
        display: flex;
        flex-direction: row;
        justify-content: end;
        margin-bottom: 30px;
        margin-top: 10px;

        form {
            display: flex;
            flex-direction: column;
            padding-left: 40px;

            label {
                color: #052630;
                font-weight: 600;
                font-size: 16px;
                margin-bottom: 8px;
            }

            select {
                color: #052630;
                border: 1px solid #D9D8D6;
                border-radius: 6px;
                background-color: #F5F5F5;
                padding: 7px 20px 7px 0px;

                option {
                    background-color: #FFF;
                }
            }
        }
    }

    article:nth-of-type(3) {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;

        .blog-card {
            display: flex;
            flex-direction: column;
            align-items: start;

            img {
                width: 100%;
                max-height: 333px;
            }

            p:nth-of-type(1) {
                background-color: #8AC440;
                font-weight: 700;
                font-size: 15px;
                border-radius: 40px;
                color: #FFF;
                padding: 3px 15px;
                margin: 20px 0;
                width: max-content;
            }

            h2 {
                color: #052630;
                font-weight: 400;
                font-size: 20px;
            }

            p:nth-of-type(2) {
                color: #052630;
                font-weight: 400;
                font-size: 16px;
            }

            a {
                font-size: 16px;
                font-weight: 700;
                color: #8AC440;
                margin-top: auto !important;
            }
        }
    }
}

.btn-limpar {
    color: #052630;
    font-size: 14px;
    margin-bottom: 10px;
}

@media (min-width: 1200px) {
    article:nth-of-type(3) {
        grid-template-columns: repeat(3, minmax(250px, 1fr)) !important;
    }
}

@media (max-width: 722px) {
    .hero {
        overflow: hidden;
        height: 300px;

        img {
            height: 100%;
        }
    }
}