﻿html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Estilo para PC (min-width: 768px) */
@media (min-width: 768px) {
    /* body {
                background-image: url('/img/WEB-final_01.jpg');
                background-size: cover;
                background-repeat: no-repeat;
                background-attachment: fixed;
                background-position: center;
            }*/
    .formbold-main-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0px;
        margin-left: 500px;
        margin-top: 200px;
    }

    .fondo {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        transition: transform 1.5s ease-in-out;
        transform: translateX(100%);
        background-image: url('/img/WEB-final_01.jpg');
        z-index: -2
    }

        .fondo.activo {
            transform: translateX(0%);
            z-index: 0;
        }

        .fondo.saliente {
            transform: translateX(-100%);
            z-index: 0;
        }

    #panelPrincipalMENU {
        position: relative;
        width: 100%;
        height: 100vh;
        z-index: 10;
    }

    .boton-img {
        width: 13vw !important;
        cursor: pointer !important;
        border: none !important;
        transition: transform 0.3s ease !important;
        position: absolute !important;
        animation: flotar 3s ease-in-out infinite;
        z-index: 10;
    }

    @keyframes flotar {
        0% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-8px);
        }

        100% {
            transform: translateY(0px);
        }
    }


    #btnNuevaSolicitud {
        top: 60%;
        left: 6%;
    }

        #btnNuevaSolicitud:hover {
            content: url('/img/Nueva solicitud 1.png');
        }

    #btnConsultar {
        top: 60%;
        left: 23%;
    }

        #btnConsultar:hover {
            content: url('/img/Consultar 1.png');
        }

    #btnActualizar {
        top: 60%;
        left: 40%;
    }

        #btnActualizar:hover {
            content: url('/img/Actualizar 1.png');
        }

    #fondo-dinamico {
        position: fixed;
        top: 0;
        left: 0;
        z-index: -1;
        width: 100%;
        height: 100%;
        background-image: url('/img/WEB-Recuperado1_01.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        transition: background-image 0.5s ease-in-out, opacity 0.5s ease-in-out;
    }
}

/* Estilo para Móvil (max-width: 767px) */
@media (max-width: 768px) {


    .fondo {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-size: contain;
        background-position: top center;
        background-repeat: no-repeat;
        transition: transform 1.5s ease-in-out;
        transform: translateX(100%);
        background-image: url('/img/Movil/MOVIL_final.png');
        z-index: -2;
    }

        .fondo.activo {
            transform: translateX(0%);
            z-index: 0;
        }

        .fondo.saliente {
            transform: translateX(-100%);
            z-index: 0;
        }

    #panelPrincipalMENU {
        position: relative;
        width: 100%;
        height: 100vh;
        z-index: 10;
    }

    .boton-img {
        width: 25vw !important;
        cursor: pointer !important;
        border: none !important;
        transition: transform 0.3s ease !important;
        position: absolute !important;
        animation: flotar 3s ease-in-out infinite;
        z-index: 10;
    }

    @keyframes flotar {
        0% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-8px);
        }

        100% {
            transform: translateY(0px);
        }
    }

    #btnNuevaSolicitud {
        top: 45%;
        left: 5%;
    }

        #btnNuevaSolicitud:hover {
            content: url('/img/Nueva solicitud 1.png');
        }

    #btnConsultar {
        top: 45%;
        left: 35%;
    }

        #btnConsultar:hover {
            content: url('/img/Consultar 1.png');
        }

    #btnActualizar {
        top: 45%;
        left: 65%;
    }

        #btnActualizar:hover {
            content: url('/img/Actualizar 1.png');
        }

    #logoPrincipal {
        display: none !important;
        pointer-events: none;
    }
}
