/* ============================
   FONDO INVIERNO – PANTALLA COMPLETA
   ============================ */

body.visitante-body,
body.cliente-body {
    background-image: url('../img/fondos/invierno.jpg') !important;
    background-size: cover !important;          /* Ocupa toda la pantalla */
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;    /* Fondo estático */

    /* Asegura pantalla completa */
    width: 100%;
    min-height: 100vh;

    /* Reseteo recomendado */
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}


/* ============================
   TARJETAS
   ============================ */

.card,
.producto-card {
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(4px);
    border-radius: 15px;
}


/* ============================
   BOTONES
   ============================ */

.btn,
.card button {
    background: #2f80ed;
    border: none;
    color: white;
    font-weight: bold;
}


/* ============================
   ANIMACIÓN DE NIEVE
   ============================ */

@keyframes nieve {
    from {
        transform: translateY(-10px);
        opacity: 1;
    }
    to {
        transform: translateY(300px);
        opacity: 0;
    }
}
