/* ============================================================
   WIDGET WHATSAPP FLOTANTE - FIX HOVER ÍCONO
============================================================ */

/* 1. Contenedor Flotante Principal */
#btnWhatsappConte,
.btnWhatsappConte {
    position: fixed !important;
    right: 20px !important;
    bottom: 20px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;

    width: auto !important;
    min-width: 230px !important;
    height: 60px !important;

    padding: 0 18px 0 14px !important;

    background: #1f1f1f !important;
    border-radius: 40px !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35) !important;

    z-index: 99999 !important;
    overflow: visible !important;
    transition: transform 0.25s ease !important;

    text-decoration: none !important;
    outline: none !important;
}

/* Solo se eleva el widget completo suavemente */
#btnWhatsappConte:hover,
.btnWhatsappConte:hover {
    transform: translateY(-3px) !important;
    text-decoration: none !important;
}

/* 2. Colita de Chat */
#btnWhatsappConte::after,
.btnWhatsappConte::after {
    content: "" !important;
    position: absolute !important;

    left: 26px !important;
    bottom: -7px !important;

    width: 18px !important;
    height: 18px !important;

    background: #1f1f1f !important;
    border-radius: 0 0 0 100% !important;

    transform: rotate(35deg) !important;
    z-index: -1 !important;
}

/* 3. ÍCONO DE WHATSAPP Y BLOQUEO TOTAL DE HOVER EN EL ÍCONO */
#btnWhatsappIcon,
i#btnWhatsappIcon,
.btnWhatsappIcon,
#btnWhatsappConte:hover #btnWhatsappIcon,
#btnWhatsappConte:hover i#btnWhatsappIcon,
#btnWhatsappIcon:hover,
#btnWhatsappIcon:focus,
#btnWhatsappIcon:active {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;

    background: #95C11F !important; /* Mantiene siempre el verde */
    background-color: #95C11F !important;
    border-radius: 50% !important;

    color: #ffffff !important;
    font-size: 22px !important;
    line-height: 1 !important;

    flex-shrink: 0 !important;
    text-decoration: none !important;
    transform: none !important; /* Evita que gire o se deforme */
    opacity: 1 !important;
    filter: none !important;
}

/* Forzar que el dibujo de FontAwesome siga blanco y fijo en el hover */
#btnWhatsappIcon::before,
i#btnWhatsappIcon::before,
#btnWhatsappConte:hover #btnWhatsappIcon::before,
#btnWhatsappIcon:hover::before {
    content: "\f232" !important;
    font-family: "Font Awesome 6 Brands", "Font Awesome 5 Brands" !important;
    font-weight: 400 !important;
    font-style: normal !important;
    color: #1f1f1f !important;
    background: transparent !important;
    display: inline-block !important;
    transform: none !important;
}

/* 4. Texto del Botón (Sin subrayado en hover) */
#btnWhatsappConte *,
#btnWhatsappConte *:hover,
#btnWhatsappConte *:focus,
.btnWhatsappConte *,
.btnWhatsappConte *:hover {
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    line-height: 1.2 !important;
}

#centro {
  margin-left: auto !important;
  margin-right: auto !important;
}