/* ================= BOTONES FLOTANTES MEJORADOS ================= */
.video-help-button {
    position: fixed;
    right: 30px;
    top: 300px;
    transform: translateY(-50%);
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

/* Para PC - Botones alineados verticalmente */
@media (min-width: 769px) {
    .video-help-button {
        right: 30px;
        top: 300px;
        transform: translateY(-50%);
    }

    .btn-video-tutorial {
        width: 65px;
        height: 65px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        font-size: 1.4rem;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .btn-video-tutorial::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.1);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .btn-video-tutorial:hover {
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    }

    .btn-video-tutorial:hover::after {
        opacity: 1;
    }

    /* Tooltips para PC */
    .btn-video-tutorial::before {
        content: attr(data-tooltip);
        position: absolute;
        right: 75px;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.85);
        color: white;
        padding: 8px 15px;
        border-radius: 8px;
        font-size: 0.85rem;
        font-weight: 500;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .btn-video-tutorial:hover::before {
        opacity: 1;
        right: 85px;
    }
}

/* Para móvil - Botones en columna bien espaciados */
@media (max-width: 768px) {
    .video-help-button {
        position: fixed;
        right: 15px;
        top: auto;
        bottom: 100px;
        transform: none;
        z-index: 998;
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .btn-video-tutorial {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        font-size: 1.2rem;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        transition: all 0.3s ease;
        margin-bottom: 0;
    }

    .btn-video-tutorial:hover {
        transform: scale(1.15);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
    }

    /* Asegurar que no se superpongan con WhatsApp */
    .wa_support_standalone.wcs_fixed_right {
        bottom: 24px !important;
        right: 15px;
        z-index: 10001;
    }

    .video-help-button {
        bottom: 100px;
        z-index: 999;
    }
}

/* Colores específicos para los botones flotantes */
.btn-video-tutorial.btn-video {
    background: linear-gradient(135deg, #dc3545 0%, #ff5b5b 100%);
    color: white;
    text-decoration: none;
}

.btn-video-tutorial.btn-booking {
    background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
    color: white;
    text-decoration: none;
}

.btn-video-tutorial.btn-tracking {
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    color: white;
    text-decoration: none;
}

.btn-video-tutorial.btn-login {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    text-decoration: none;
}

.btn-video-tutorial i {
    font-size: 1.4rem;
    margin: 0;
}

/* ================= MOBILE DOCK MENU ================= */
.mobile-dock-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background: rgba(10, 31, 61, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 0;
    border-radius: 25px 25px 0 0;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.btn-dock {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white !important;
    font-size: 1.4rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4), inset 0 2px 5px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-dock.btn-video {
    background: linear-gradient(135deg, #ff4d4d 0%, #cc0000 100%);
}

.btn-dock.btn-booking {
    background: linear-gradient(135deg, #007bff 0%, #004494 100%);
}

.btn-dock.btn-tracking {
    background: linear-gradient(135deg, #ff9933 0%, #cc5200 100%);
}

.btn-dock.btn-login {
    background: linear-gradient(135deg, #2ecc71 0%, #218838 100%);
}

.btn-dock:active {
    transform: scale(0.85);
}

/* ================= GTRANSLATE ALINEADO SOBRE LOS BOTONES ================= */
.gtranslate_wrapper {
    position: fixed !important;
    left: 24px !important;
    bottom: 24px !important;
    z-index: 10000 !important;
    display: block !important;
}

@media (max-width: 768px) {
    .gtranslate_wrapper {
        left: 15px !important;
        bottom: 100px !important;
        z-index: 10000 !important;
    }

    .wa_support_standalone.wcs_fixed_right {
        bottom: 24px !important;
    }

    .video-help-button {
        bottom: 100px !important;
    }
}

@media (max-width: 768px) {

    .gtranslate_wrapper {
        bottom: 100px !important;
    }

    .wa_support_standalone,
    .wcs_fixed_right {
        bottom: 100px !important;
    }
}

/* ===== BOTÓN CHECKOUT (MISMO FORMATO QUE EL DOCK) ===== */
/* ===== BOTÓN CHECKOUT (MISMO FORMATO QUE EL DOCK) ===== */
.btn-dock.btn-checkout-cel {
    background: linear-gradient(135deg, #6f42c1 0%, #845ef7 100%);
    color: white !important;
}

/* efecto activo igual que los otros */
.btn-dock.btn-checkout-cel:active {
    transform: scale(0.85);
}