/* ============================================
   VELO OVERLAY & FLOATING BUTTONS STYLES
   Prefix: velo-
   Organization: Base → Medium → Small screens
   ============================================ */


/* ============================================
   BASE STYLES (All screens - Default state)
   ============================================ */

.velo-overlay {
    z-index: 1;
    width: 100%;
    height: 100%;
    position: fixed;
    margin: 0;
    background-color: transparent;
    pointer-events: none;
}

/* Velo overlay VISIBLE state - applies to ALL screens */
.velo-overlay.velo-visible {
    z-index: 11;
    background-color: rgba(237, 237, 237, 0.92);
    pointer-events: auto;
}

.velo-btn-container {
    display: flex;
    width: 20vw;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    position: fixed;
    left: 0;
    bottom: -30vw;
    z-index: 12;
    transform: translate(0vw, 30vw);
    transition: transform 2000ms cubic-bezier(0, 0, 0, 1) 0ms, box-shadow .3s ease;
}

.velo-btn-container.velo-active {
    transform: translate(0vw, -30vw);
    transition: transform 1000ms cubic-bezier(.73, .12, .21, .93) 0ms, box-shadow .3s ease;
}

.velo-btn-container .velo-btn {
    display: flex;
    width: 13vw;
    height: 13vw;
    margin-bottom: 2vw;
    background-image: url(../imagenes/icono-call.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 100%;
    font-size: 12px;
}

.velo-btn-container .velo-btn.velo-btn-whatsapp {
    background-image: url(../imagenes/icono-ws.webp);
}


/* ============================================
   MEDIUM SCREENS (max-width: 900px)
   ============================================ */

@media (max-width: 900px) {

    .velo-btn-container {
        display: flex;
        width: 20vw;
        justify-content: flex-end;
        align-items: center;
        flex-direction: column;
        position: fixed;
        left: 0;
        bottom: -30vw;
        z-index: 12;
        transform: translate(0vw, 30vw);
        transition: transform 2000ms cubic-bezier(0, 0, 0, 1) 0ms, box-shadow .3s ease;
    }

    .velo-btn-container.velo-active {
        transform: translate(0vw, -30vw);
        transition: transform 1000ms cubic-bezier(.73, .12, .21, .93) 0ms, box-shadow .3s ease;
    }

    .velo-btn-container .velo-btn {
        display: flex;
        width: 13vw;
        height: 13vw;
        margin-bottom: 5vw;
        background-image: url(../imagenes/icono-call.webp);
        background-position: center;
        background-repeat: no-repeat;
        background-size: auto 100%;
        font-size: 12px;
        transform: scale(1.2);
    }

    .velo-btn-container .velo-btn.velo-btn-whatsapp {
        background-image: url(../imagenes/icono-ws.webp);
        transform: scale(1.2);
    }
}


/* ============================================
   SMALL SCREENS (max-width: 576px)
   ============================================ */

@media (max-width: 576px) {
    .velo-btn-container {
        display: flex;
    }

    .velo-btn-container .velo-btn {
        display: flex;
    }
}
