 /* Contenedor principal del botón flotante */
 .social-float-container {
     position: fixed;
     bottom: 25px;
     right: 25px;
     z-index: 999999;
 }

 /* Estilos del botón */
 .social-btn {
     width: 65px;
     height: 65px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     text-decoration: none;
     position: relative;
     overflow: visible;
     border: 3px solid rgba(255, 255, 255, 0.3);
 }

 /* Anillo brillante rotativo */
 .social-btn::before {
     content: '';
     position: absolute;
     top: -8px;
     left: -8px;
     right: -8px;
     bottom: -8px;
     border-radius: 50%;
     background: conic-gradient(from 0deg,
             transparent 0deg,
             currentColor 90deg,
             transparent 180deg,
             currentColor 270deg,
             transparent 360deg);
     opacity: 0;
     animation: rotate 3s linear infinite;
     transition: opacity 0.4s ease;
 }

 .social-btn:hover::before {
     opacity: 0.6;
 }

 @keyframes rotate {
     from {
         transform: rotate(0deg);
     }

     to {
         transform: rotate(360deg);
     }
 }

 /* Efecto de partículas al hover */
 .social-btn::after {
     content: '';
     position: absolute;
     top: 50%;
     left: 50%;
     width: 100%;
     height: 100%;
     background: radial-gradient(circle, currentColor 0%, transparent 70%);
     border-radius: 50%;
     transform: translate(-50%, -50%) scale(0);
     opacity: 0;
     transition: all 0.6s ease;
 }

 .social-btn:hover::after {
     transform: translate(-50%, -50%) scale(2.5);
     opacity: 0.3;
 }

 .social-btn:hover {
     transform: scale(1.25) rotate(360deg);
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4),
         0 0 30px currentColor;
 }

 .social-btn:active {
     transform: scale(1.1) rotate(360deg);
 }

 /* WhatsApp - Colores vibrantes */
 .whatsapp-btn {
     background: linear-gradient(135deg, #00E676 0%, #00C853 50%, #00E676 100%);
     background-size: 200% 200%;
     color: #00E676;
     animation: slideIn 0.6s ease-out forwards,
         gradientShift 3s ease infinite,
         float 3s ease-in-out infinite;
 }

 .whatsapp-btn:hover {
     background: linear-gradient(135deg, #69F0AE 0%, #00E676 50%, #00C853 100%);
     animation: gradientShift 1s ease infinite,
         bounce 0.6s ease;
 }

 /* Animación de gradiente */
 @keyframes gradientShift {

     0%,
     100% {
         background-position: 0% 50%;
     }

     50% {
         background-position: 100% 50%;
     }
 }

 /* Animación de flotación */
 @keyframes float {

     0%,
     100% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-10px);
     }
 }

 /* Animación de rebote al hover */
 @keyframes bounce {

     0%,
     100% {
         transform: scale(1.25) rotate(360deg);
     }

     25% {
         transform: scale(1.35) rotate(360deg);
     }

     50% {
         transform: scale(1.2) rotate(360deg);
     }

     75% {
         transform: scale(1.3) rotate(360deg);
     }
 }

 /* Icono SVG con animación */
 .social-btn svg {
     width: 35px;
     height: 35px;
     fill: white;
     position: relative;
     z-index: 1;
     filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
     transition: all 0.4s ease;
 }

 .social-btn:hover svg {
     transform: scale(1.2) rotateY(180deg);
     filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
 }

 /* Tooltip mejorado */
 .social-btn .tooltip {
     position: absolute;
     right: 85px;
     background: #0080FF;
     color: white;
     padding: 10px 18px;
     border-radius: 12px;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     font-size: 14px;
     font-weight: 600;
     white-space: nowrap;
     opacity: 0;
     pointer-events: none;
     transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
     transform: translateX(20px) scale(0.8);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
 }

 .social-btn .tooltip::after {
     content: '';
     position: absolute;
     right: -8px;
     top: 50%;
     transform: translateY(-50%) rotate(45deg);
     width: 16px;
     height: 16px;
     background: #0080FF;
 }

 .social-btn:hover .tooltip {
     opacity: 1;
     transform: translateX(0) scale(1);
 }

 /* Animación de entrada explosiva */
 @keyframes slideIn {
     0% {
         transform: translateX(200px) rotate(-180deg) scale(0);
         opacity: 0;
     }

     60% {
         transform: translateX(-10px) rotate(20deg) scale(1.1);
         opacity: 1;
     }

     100% {
         transform: translateX(0) rotate(0deg) scale(1);
         opacity: 1;
     }
 }

 /* Efecto de brillo continuo */
 @keyframes shine {
     0% {
         box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
     }

     50% {
         box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3), 0 0 40px currentColor;
     }

     100% {
         box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
     }
 }

 /* Círculos de ondas expandiéndose */
 .pulse-ring {
     position: absolute;
     width: 100%;
     height: 100%;
     border-radius: 50%;
     border: 3px solid currentColor;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     opacity: 0;
     animation: pulseRing 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
 }

 .pulse-ring:nth-child(2) {
     animation-delay: 0.5s;
 }

 .pulse-ring:nth-child(3) {
     animation-delay: 1s;
 }

 @keyframes pulseRing {
     0% {
         transform: translate(-50%, -50%) scale(0.8);
         opacity: 0.6;
     }

     100% {
         transform: translate(-50%, -50%) scale(2);
         opacity: 0;
     }
 }

 .social-btn .pulse-container {
     position: absolute;
     width: 100%;
     height: 100%;
     pointer-events: none;
 }

 /* Responsive */
 @media (max-width: 768px) {
     .social-float-container {
         bottom: 20px;
         right: 20px;
     }

     .social-btn {
         width: 60px;
         height: 60px;
     }

     .social-btn svg {
         width: 32px;
         height: 32px;
     }

     .social-btn .tooltip {
         display: none;
     }
 }