/* =====================================================
   STICKY CTA MOBILE — Taxi Transfers Aeropuertos
   ===================================================== */

.tt-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    padding: 12px 16px;
    background: rgba(5, 5, 5, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: none;
}

/* Solo mostramos en pantallas chicas */
@media (max-width: 840px) {
    .tt-sticky-cta {
        display: block;
    }
}

.tt-sticky-cta.is-visible {
    transform: translateY(0);
}

.tt-sticky-cta .tt-btn {
    width: 100%;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
