        /* Logo flotante de whatsapp*/

        .float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: #fff;
            border-radius: 60px;
            text-align: center;
            font-size: 30px;
            box-shadow: 3px 3px 3px #999;
            z-index: 100;
        }

        .my-float {
            margin-top: 16px;
        }

        .hop :hover {
            -webkit-filter: opacity(.5) drop-shadow(0 0 0 green);
            filter: opacity(.5) drop-shadow(0 0 0 green);
        }


        /* === Estilos para el Modal de Consulta de Puntos === */
        #resultadoPuntos .puntos-display {
            font-weight: bold;
            color: #FFC107;
            /* Un ámbar que combina con W3.CSS */
            font-size: 1.5em;
        }

        #resultadoPuntos .mensaje-error {
            color: #f44336;
            /* Rojo de W3.CSS */
        }

        #btnConsultarPuntos i {
            margin-right: 8px;
        }