.oferta-animada {
    animation: fadeSlideIn 0.8s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-wpp {
    background-color: white;
    color: #25D366;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .btn-wpp:hover {
        background-color: #25D366;
        transform: translateY(-2px);
        text-decoration: none;
    }
