.card {
    position: relative;
    width: 324px;
    height: 370px;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    object-position: center !important;
    border: none !important;
    margin-bottom: 60px;
}

.owl-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border: none !important;
    transition: transform 0.6s ease, filter 0.6s ease !important;
    /* Aumenta a duração da transição para suavidade */
}

/* Minha Conta badges (pendente) */
.tipo-badge.tipo-pendente {
    background: #f5f5f5;
    color: #F15F56;
}

.pendente-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 12px;
    height: 12px;
    margin-right: 4px;
    font-size: 12px;
    line-height: 12px;
    color: #F15F56;
}

.pendente-icon i {
    font-size: 12px;
    line-height: 12px;
    color: inherit;
}

.row-pendente {
    background: #fafafa;
}

/* Excedente icon */
.excedente-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 12px;
    height: 12px;
    margin-right: 4px;
    font-size: 12px;
    line-height: 12px;
    color: #FF9800;
}

.excedente-icon i {
    font-size: 12px;
    line-height: 12px;
    color: inherit;
}

.tipo-badge.tipo-excedente {
    border-left: 3px solid #FF9800;
}

.card:hover img {
    transform: scale(1.05) !important;
}

.button-link {
    text-decoration: none;
    display: inline-block;
    z-index: 10;
}

.button-link button {
    position: absolute;
    bottom: 20px;
    /* Altera para alinhar na parte inferior */
    right: 20px;
    /* Altera para alinhar à direita */
    background-color: #F15F56;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    appearance: none;
    outline: none;
    transition: background-color 0.3s;
}

.button-link button:hover {
    background-color: #E04E47;
}

.button-link button:active {
    background-color: #D03B36;
}

.button-link button i {
    margin: 0;
    /* Remove qualquer espaço extra */
}

.card-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 15%, rgba(0, 0, 0, 0.7) 80%, rgb(0, 0, 0) 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    padding-right: 70px;
    /* Adiciona espaço extra para o botão */
    text-align: left;
}

.card-info .date {
    font-size: 14px;
    font-weight: 500;
    color: #ccc;
    margin-top: 8px;
}

.card-info p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Limita a 3 linhas */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /* Reticências no final */
}

.owl-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.owl-item.active {
    transform: scale(1.05);
    transition: transform 0.3s ease, border 0.3s ease;
}

.owl-item.active img {
    opacity: 0.9;
    filter: brightness(1.1);
}