body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: linear-gradient(90deg, #f6d365, #fda085);

}

.tarjeta-descuento {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 400px; /* Ajusta el tamaño de la tarjeta si es necesario */
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.tarjeta-descuento img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}
/* Botón con efecto 3D */
.btn-descuento {
    background-color: #d94847;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 5px 0 #b03636, 0 10px 15px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

/* Efecto hover para hacer que el botón "flote" */
.btn-descuento:hover {
    background-color: #b03636;
    box-shadow: 0 10px 0 #b03636, 0 15px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

/* Efecto al hacer clic en el botón */
.btn-descuento:active {
    background-color: #a03030;
    box-shadow: 0 2px 0 #b03636, 0 4px 6px rgba(0, 0, 0, 0.2);
    transform: translateY(2px);
}