.card-style-tree {
    margin-bottom: 45px;
    margin-top: 05px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 10px;
    border-radius: 15px !important;
    width: 85%; /* Responsivo */
}

.insta-media {
    width: 260px;
    height: 230px;
    display: block;            /* força ocupar a caixa toda sem espaço extra */
    object-fit: cover;         /* corta para caber certinho */
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    margin-bottom: 5px;
}

.insta-media:hover {
    transform: scale(1.05);
    box-shadow: rgba(0, 0, 0, 0.5) 0px 8px 16px;
}