/* =====================================================
   WA FLOAT — Botón WhatsApp flotante derecho
   Taxi Transfers Aeropuertos
   ===================================================== */

.tt-wa-float {
    position: fixed;
    right: 20px;
    bottom: 45vh;
    z-index: 200;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--tt-green);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--tt-font-body);
    font-size: 0.92rem;
    font-weight: 700;
    box-shadow: 0 6px 32px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0,0,0,0.3);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.3s ease,
                background 0.2s ease;
    animation: pulse-green 2.8s ease-in-out infinite;
    /* Aseguramos que el label quede visible */
    overflow: hidden;
    white-space: nowrap;
}

.tt-wa-float svg {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
}

.tt-wa-float__label {
    display: inline-block;
}

.tt-wa-float:hover {
    transform: translateY(-3px) scale(1.04);
    background: var(--tt-green-dark);
    box-shadow: 0 12px 48px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0,0,0,0.3);
    animation: none;
}

/* En mobile, el botón queda solo como círculo/pastilla compacta */
@media (max-width: 768px) {
    .tt-wa-float {
        right: 14px;
        bottom: 20px;
        padding: 14px;
        border-radius: 50%;
        width: 54px;
        height: 54px;
    }

    .tt-wa-float__label {
        display: none;
    }
}
