/* ============================
   FONDO OTOÑO – PANTALLA COMPLETA
   ============================ */

body.visitante-body,
body.cliente-body {
    background-image: url('../img/fondos/otono.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;

    /* Reset */
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}


/* ============================
   TARJETAS OTOÑO
   ============================ */

.card,
.producto-card {
    background: rgba(255, 245, 230, 0.90);
    border-radius: 15px;
    border: 2px solid #e67e22;
    backdrop-filter: blur(4px);
}


/* ============================
   BOTONES OTOÑO
   ============================ */

.btn,
.card button {
    background: #d35400;
    border: none;
    color: white;
    font-weight: bold;
}


/* ============================
   ANIMACIÓN DE HOJAS (opcional)
   ============================ */

@keyframes hojas {
    from {
        transform: translateY(-20px) rotate(0deg);
        opacity: 1;
    }
    to {
        transform: translateY(200px) rotate(180deg);
        opacity: 0;
    }
}
