/* criado para */
.created-for {
    background-color: var(--color-yelow-dark);
    background-image: url(../imgs/backgrounds/capsulas-lg.webp);
    background-attachment: fixed;
    background-size: cover;
    background-position: unset;
    background-repeat: no-repeat;
}

.created-for .wrapper-article {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
}

.created-for .wrapper-article aside img {
    height: auto;
    width: 360px;
}

.created-for .wrapper-article article {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 16px;
    border-radius: 16px;
    border: 1px solid var(--color-yelow-light);
    padding: 32px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: Montserrat(45px);
}

.created-for h2 {
    font-size: 32px;
}

.created-for .text {
    font-size: 18px;
}



@media (max-width: 992px) {
    .created-for {
        /*background-image: url("../imgs/backgrounds/capsulas-md.webp"); */
        background-image: none;
        background-color: #F5F2EC;
        background-position: center;
    }
}

@media (max-width: 428px) {
    .created-for {
        /* background-image: url("../imgs/backgrounds/capsulas-sm.webp"); */
        background-image: none;
        background-color: #F5F2EC;
        background-position: center;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .created-for h2 {
        font-size: 26px;
    }
}

/* criado para */