/* =========================================
BOTÕES
========================================= */

.btn_defaultM02 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 15px;
    transition: .3s;
}

.btn_whatsapp_v2 {
    color: #FFFFFF;
    background-color: #4fcc5d;

    display: inline-block;
    padding: 10px 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* .btn_whatsapp_v2 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 15px;
    color: #25d366;
    transition: .3s;
} */

/* .btn_whatsapp_v2:hover {
    opacity: .8;
} */

/* =========================================
MODELO LISTA
========================================= */

.mobile_list {
    width: 100%;
}

.box_list {
    display: flex;
    align-items: flex-start; /* ALTERADO */
    gap: 24px;

    width: 100%;
    padding: 20px;

    background: var(--color-background-light-secondary);
    border: 1px solid var(--color-border);

    border-radius: 16px;

    transition: .3s;

    margin-bottom: 20px;
}

/* =========================================
IMAGEM
========================================= */

.box_list .cover {
    width: 140px;
    min-width: 140px;

    /* ALTERADO */
    height: 140px;

    border-radius: 14px;
    overflow: hidden;

    /* IMPORTANTE */
    align-self: flex-start;
}

.box_list .cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: .4s;
}

/* =========================================
TEXTO
========================================= */

.box_list .text {
    flex: 1;
}

.box_list .text h3 {
    margin-bottom: 10px;
    line-height: 1.3;
    transition: .3s;
}

/* NOVO */
.box_list .description {
    display: block;
    margin-bottom: 22px;

    font-size: 15px;
    line-height: 1.7;

    color: var(--color-text-secondary);
}

/* =========================================
MODELO CARD
========================================= */

.mobile_cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card_item {
    background: var(--color-background-light-secondary);
    border: 1px solid var(--color-border);

    border-radius: 18px;
    overflow: hidden;

    transition: .3s;
}

.card_item:hover {
    transform: translateY(-3px);
}

.card_item .cover {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 0.75;
    overflow: hidden;
}

.card_item .cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: .4s;
}

.card_item:hover .cover img {
    transform: scale(1.05);
}

.card_content {
    padding: 20px;
}

.card_content h3 {
    margin-bottom: 18px;
    line-height: 1.3;
    transition: .3s;
}

.card_item:hover h3 {
    color: var(--color-primary);
}

/* NOVO */
.card_item .description {
    display: block;
    margin-bottom: 22px;

    font-size: 15px;
    line-height: 1.7;

    color: var(--color-text-secondary);
}

.card_content .actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* =========================================
RESPONSIVO
========================================= */

@media (max-width: 900px) {

    .mobile_cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .box_list {
        align-items: flex-start;
    }

    .btn_whatsapp_v2 {
        margin-top: 10px;
    }

}

@media (max-width: 640px) {

    .mobile_cards {
        grid-template-columns: 1fr;
    }

    .box_list {
        flex-direction: column;
        gap: 18px;
    }

    .box_list .cover {
        width: 100%;
        min-width: 100%;
        height: 220px;
    }

    .box_list .text {
        width: 100%;
    }

    .box_list .actions,
    .card_content .actions {
        width: 100%;
    }

    .btn_defaultM02,
    .btn_whatsapp_v2 {
        width: 100%;
    }

    .btn_whatsapp_v2 {
        margin-top: 10px;
    }

}

@media (max-width: 460px) {

    .box_list,
    .card_content {
        padding: 16px;
    }

    .btn_defaultM02 {
        font-size: 14px;
        padding: 11px 18px;
    }

    .btn_whatsapp_v2 {
        font-size: 14px;
    }

}