
/* Whatsapp*/

/* Pega esto al final de tu archivo css/style.css */

.whatsapp-widget {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 999999 !important; /* Muy alto para que nada lo tape */
    font-family: Arial, sans-serif !important;
}

.wa-float-btn {
    width: 60px !important;
    height: 60px !important;
    background-color: #25d366 !important;
    border-radius: 50% !important;
    border: none !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3) !important;
}

.wa-float-btn img {
    width: 35px !important;
    height: 35px !important;
}

.chat-window {
    display: none; /* Se activa con el JS */
    width: 300px !important;
    background: white !important;
    border-radius: 10px !important;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2) !important;
    margin-bottom: 15px !important;
    overflow: hidden !important;
}

/* El resto del código que ya tenías... */
.chat-header { background: #075e54; color: white; padding: 15px; display: flex; align-items: center; gap: 10px; }
.chat-body { padding: 20px; background: #e5ddd5; height: 150px; overflow-y: auto; }
.bot-msg { background: white; padding: 10px; border-radius: 8px; font-size: 14px; }
.chat-footer { display: flex; padding: 10px; border-top: 1px solid #eee; }
.chat-footer input { flex: 1; border: 1px solid #ddd; border-radius: 20px; padding: 8px 15px; }