.bi {
    color: #f15608;
}

/* ========================================================
           ESTILOS CTA FLOTANTE (Animación Zoom y Ola)
           ======================================================== */
.floating-cta {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.cta-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 1.6rem;
    text-decoration: none;
    animation: zoomPulse 2s infinite ease-in-out;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: scale(1.15) !important;
    animation-play-state: paused;
}

.cta-btn .bi {
    color: white !important;
}

/* Colores corporativos de las redes */
.cta-phone {
    background-color: #0d6efd;
    animation-delay: 0s;
}

.cta-wa {
    background-color: #25D366;
    animation-delay: 0.2s;
}

.cta-fb {
    background-color: #1877F2;
    animation-delay: 0.4s;
}

.cta-google {
    background-color: #DB4437;
    animation-delay: 0.6s;
}

@keyframes zoomPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.3);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.1);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

/* Extra Minimal CSS Effects*/
.object-fit-cover {
    object-fit: cover;
}

.hover-zoom:hover {
    transform: scale(1.06);
}

#welcomePromoModal .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

#welcomePromoModal .btn-outline-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}