p {
    color: #000;
    font-size: 16px;
    font-weight: 400;
}

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

.hero {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 70px;
    overflow: hidden;
    max-height: 300px;

    img {
        width: 100%;
        filter: brightness(0.5);
    }

    article {
        position: absolute;

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

.blog-content {
    padding: 30px 0;
}

.imagem-destaque {
    margin: 0 0 30px 0;
    border-radius: 10px !important;
}

.grid-blog {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    grid-template-areas:
        "main sidebar"
        "cta  cta";
    gap: 40px;
}

.grid-main {
    grid-area: main;

    p {
        a {
            color: #8AC440;
            text-decoration: none;
        }
    }
}

.btn-assessoria {
    font-size: 16px;
    color: #052630;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 40px 0px 30px 0px;
    border: #052630 1px solid;
    width: 262px;
    padding: 7px 0 7px 10px;
    border-radius: 10px;

    transition: all .4s ease-in-out;

    i {
        font-size: 35px;
        padding-right: 15px;
    }
}

.btn-assessoria:hover {
    color: #FFF;
    background-color: #052630;
    transform: scale(1.04);
    transform: translateY(-5px);
}

.btn-duvidas {
    display: grid;
    transition: all 0.3s ease;

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

    img {
        filter: brightness(0.4);
        border-radius: 10px;
    }

    p {
        line-height: 20px;
        z-index: 2;
        justify-self: center;
        align-self: center;
        text-align: center;
        font-size: 16px;
        font-weight: 600;
        color: #FFF;
    }

}

.btn-duvidas:hover {
    transform: scale(1.03);
}

.grid-sidebar {
    grid-area: sidebar;
}

.grid-cta {
    grid-area: cta;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.btn-cta {
    background-color: #8AC440;
    color: #fff;
    padding: 7px 35px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;

    transition: all 0.4s ease;
}

.btn-cta:hover {
    border: #8AC440 1px solid;
    color: #8AC440;
    background-color: transparent;
}

.conteudo-sec {
    margin: 0 0 30px 0;
}

.grid-sidebar form {
    margin-bottom: 30px;
}

.grid-sidebar input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
}

.grid-sidebar ul {
    list-style: none;
    padding: 0;
}

.grid-sidebar li {
    margin-bottom: 8px;
}

.grid-sidebar a {
    color: #052630;
    text-decoration: none;
    font-weight: 500;
}

section li {
    list-style: disc;
}

.grid-sidebar {
    p {
        margin-bottom: 10px;
    }
}

form {
    label {
        font-size: 32px;
        font-weight: 800;
        line-height: 35px;
        margin-bottom: 10px;
    }

    input {
        max-width: 262px;
        height: 56px !important;
        background-color: #F5F5F5;
        border: none !important;
        border-radius: 0px !important;

        transition: transform .3s ease-in-out;
    }

    input:hover {
        transform: scale(1.04);
    }
}

.ul-noticias {
    margin-left: 40px;

    li {
        a {
            font-size: 16px;
            color: #052630;
            font-weight: 400;
            text-decoration: underline;
        }
    }
}

@media (max-width: 768px) {
    .grid-blog {
        grid-template-columns: 1fr;
        grid-template-areas:
            "main"
            "sidebar"
            "cta";
    }
}

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

        img {
            height: 100%;
        }

        article {
            h1 {
                font-size: 20px;
            }
        }
    }
}

@media (max-width: 575px) {
    .blog-content {
        padding: 20px;
    }
}