/* Botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    padding: 15px 20px;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    background: #1faa52;
    color: white;
    text-decoration: none;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-text {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

/* Animación de pulso */
@keyframes whatsappPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive - En móviles solo mostrar el icono */
@media (max-width: 768px) {
    .whatsapp-float {
        padding: 15px;
        border-radius: 50%;
    }
    
    .whatsapp-text {
        display: none;
    }
}

/* Estilos para botones de WhatsApp en secciones */
.btn-whatsapp {
    background: #25D366 !important;
    border-color: #25D366 !important;
    color: white !important;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #1faa52 !important;
    border-color: #1faa52 !important;
    color: white !important;
    transform: translateY(-2px);
}

.btn-whatsapp i {
    margin-right: 8px;
}

.btn-whatsapp-small {
    background: #25D366 !important;
    border-color: #25D366 !important;
    color: white !important;
    padding: 10px 12px !important;
    margin-left: 10px;
    border-radius: 50% !important;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-whatsapp-small:hover {
    background: #1faa52 !important;
    border-color: #1faa52 !important;
    color: white !important;
    transform: translateY(-2px) scale(1.1);
}

/* Posicionamiento del botón scroll-top más arriba */
.scroll-top {
    bottom: 100px !important;
}
