  /* Animación de salto */
  @keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Botón de WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 80px; /* Tamaño más grande */
    height: 80px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    animation: bounce 1s infinite 3s; /* Efecto de salto */
    z-index: 9999;
    overflow: hidden; /* Asegura que el ícono ocupe todo el círculo */
    transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #1da851;
}

.whatsapp-button img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* El ícono cubre todo el círculo */
}

/* Mensaje emergente en hover */
.whatsapp-button span {
    position: absolute;
    left: 90px;
    bottom: 20px;
    background-color: #25D366;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
    font-family: Arial, sans-serif;
    font-size: 14px;
    opacity: 0;
    transform: translateX(-10px);
    visibility: hidden; /* Asegura que no se vea inicialmente */
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.whatsapp-button:hover span {
    opacity: 1;
    transform: translateX(0);
    visibility: visible; /* Se hace visible al pasar el mouse */
}

/* Barra vertical de iconos */
.social-icons {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.social-icons a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden; /* Hace que los íconos cubran todo el círculo */
}

.social-icons a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.social-icons img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* El ícono cubre todo el círculo */
}