.offer {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.offer2:nth-child(2)::after {
    content: "NUEVO";
    position: absolute;
    top: -18px;
    right: -10px;
    background-color: #ff6600;
    color: black;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.contenedor-central2 {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 20px;
    width: 100%;
    margin: 0 auto;
}

.contenedor-columnas2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
}

.offer2 img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.card-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.btn-danger.bsb-btn-2xl {
    width: 100%;
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .btn-danger.bsb-btn-2xl {
        max-width: 250px;
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
}

@media screen and (max-width: 480px) {
    .btn-danger.bsb-btn-2xl {
        max-width: 200px;
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
}