.whatsapp-floating-map {
    position: fixed;
    right: 22px;
    bottom: 120px;
    z-index: 99999;

    display: flex;
    align-items: center;
    gap: 10px;

    background: #0f3d4e;
    color: #ffffff;
    text-decoration: none;

    padding: 9px 14px 9px 9px;
    border-radius: 15px;

    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
    transition: all 0.25s ease;
    animation: bbBreathe 1.6s ease-in-out infinite;
}

.whatsapp-floating-map:hover {
    transform: translateY(-2px);
    background: #123f53;
    color: #ffffff;
    text-decoration: none;
}

.whatsapp-floating-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;

    background: #075e54;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.whatsapp-floating-icon i {
    font-size: 23px;
    color: #ffffff;
}

.whatsapp-floating-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.whatsapp-floating-text span {
    font-size: 10px;
    letter-spacing: 1.4px;
    font-weight: 600;
    opacity: 0.9;
}

.whatsapp-floating-text strong {
    font-size: 13px;
    font-weight: 700;
    margin-top: 2px;
    white-space: nowrap;
}

/* Tablets y pantallas medianas */
@media (max-width: 1350px) {
    .whatsapp-floating-map {
        right: 18px;
        bottom: 110px;
        padding: 8px 12px 8px 8px;
        left: 16px;
        right: auto;
        animation: bbBreathe 1.6s ease-in-out infinite;
    }

    .whatsapp-floating-icon {
        width: 38px;
        height: 38px;
        border-radius: 11px;
    }

    .whatsapp-floating-icon i {
        font-size: 21px;
    }

    .whatsapp-floating-text span {
        font-size: 9px;
    }

    .whatsapp-floating-text strong {
        font-size: 12px;
    }
}

/* Móvil: botón circular a la izquierda */
@media (max-width: 768px) {
    .whatsapp-floating-map {
        left: 16px;
        right: auto;
        bottom: 100px;

        width: 56px;
        height: 56px;
        padding: 0;
        border-radius: 50%;

        justify-content: center;
        gap: 0;
        animation: bbBreathe 1.6s ease-in-out infinite;
    }

    .whatsapp-floating-icon {
        width: 48px;
        height: 48px;
        border-radius: 50%;
    }

    .whatsapp-floating-icon i {
        font-size: 27px;
    }

    .whatsapp-floating-text {
        display: none;
    }
}

/* Móvil muy pequeño */
@media (max-width: 480px) {
    .whatsapp-floating-map {
        left: 14px;
        bottom: 99px;
        width: 58px;
        height: 58px;
        animation: bbBreathe 1.6s ease-in-out infinite;
    }

    .whatsapp-floating-icon {
        width: 44px;
        height: 44px;
    }

    .whatsapp-floating-icon i {
        font-size: 25px;
    }
}