/* Contenedor del icono de WhatsApp */
        .whatsapp-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
        }

        /* Icono de WhatsApp */
        .whatsapp-icon {
            width: 50px;
            height: 50px;
            background-color: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
            animation: bounce-in 0.5s ease forwards;
        }

        /* Animación de rebote para el icono de WhatsApp */
        @keyframes bounce-in {
            0% {
                transform: scale(0);
            }
            60% {
                transform: scale(1.2);
            }
            100% {
                transform: scale(1);
            }
        }

        /* Cuadro de chat */
        .chat-box {
            position: absolute;
            bottom: calc(50px + 10px); /* 60px sería una distancia más lógica */
            right: 0;
            width: 320px;
            padding: 20px;
            background-color: #ffffff;
            border: 1px solid #ddd;
            border-radius: 12px;
            box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease-in-out;
            pointer-events: none; /* Evita interacciones cuando está oculto */
        }

        /* Mostrar cuadro de chat con animación */
        .chat-box.show {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto; /* Reactiva interacciones cuando está visible */
        }

        /* Estilo mejorado para el área de texto */
        .chat-box textarea {
            width: 100%;
            height: 120px; /* Más altura */
            resize: none;
            padding: 12px;
            border-radius: 10px;
            border: 1px solid #ccc;
            background-color: #f9f9f9;
            box-shadow: inset 0px 4px 8px rgba(0, 0, 0, 0.1); /* Sombra interna */
            font-family: Arial, sans-serif;
            font-size: 14px;
            color: #333;
            outline: none; /* Elimina el borde azul en foco */
            transition: box-shadow 0.3s ease;
        }

        /* Efecto en foco para el área de texto */
        .chat-box textarea:focus {
            box-shadow: inset 0px 4px 12px rgba(0, 0, 0, 0.15);
            border-color: #25D366;
        }

        /* Botón de envío */
        .chat-box button {
            width: 100%;
            padding: 12px;
            margin-top: 12px;
            background-color: #25D366;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease;
            font-size: 16px;
        }

        .chat-box button:hover {
            background-color: #20b058;
        }

        .chat-box button img {
            margin-left: 8px;
            width: 18px;
            height: 18px;
        }
