/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 08 2026 | 16:23:02 */
/* Estructura del botón */
.whatsapp-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px; /* Distancia desde abajo */
    right: 20px;  /* Distancia desde la derecha */
    background-color: #25d366; /* Verde oficial de WhatsApp */
    color: #FFF !important;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
    z-index: 9999; /* Asegura que siempre esté al frente */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

/* Efecto Hover (al pasar el mouse) */
.whatsapp-btn:hover {
    background-color: #128c7e;
    transform: translateY(-5px); /* Pequeño salto hacia arriba */
}

/* Tooltip (El globito de texto) */
.tooltip-text {
    position: absolute;
    right: 75px;
    background-color: #333;
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s;
}

.whatsapp-btn:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Animación de pulso para llamar la atención */
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-btn {
    animation: pulse-green 2s infinite;
}



.grecaptcha-badge {
	display: none !important; 
}