.ofertas-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 20px;
    justify-content: center;
    padding: 20px;
}

.oferta-box {
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 12px;
    max-width: 300px;
    overflow: hidden;
    transition: transform 0.3s;
}

.oferta-box:hover {
    transform: translateY(-5px);
}

.oferta-box img {
    width: 100%;
    height: auto;
}

.oferta-content {
    padding: 15px;
}

.oferta-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.oferta-desc {
    font-size: 0.95rem;
    color: #444;
}
