* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-color: #ffffff;
    color: #000;
    min-height: 100vh;
    margin: 0;
}


/* HEADER -------------------------------------*/
.header {
    height: 100px;
    width: 100%;
    display: flex;
    justify-content:center;
    align-items: center;
    background-color: #0059A3;
    padding-top: 2%;
    padding-bottom: 2%;
}

.header-logo {
    height: 70px;
    width: 140px;
    padding-left: 20px;
}

/* MAIN 80% -----------------------------------------*/

.main-content-window{
    height: 80%;
    display: flex;
    justify-content: flex-start;
    align-items: center;

}

.img-movil-window{
    width: 300px;
    height: 600px;
}

.main-bloque-window{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 450px;
    padding-top: 0px;
}


.main-text-window{
    padding-top: 65px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-text-window h1{
    padding-bottom: 15px;

}


.main-text-window p{
    padding-bottom: 35px;
    color: #666;
}

.store-buttons-window{
    display: flex;
    gap:2px
}

.store-buttons-window img{
    width: 200px;
    height: 58px;
}

.main-content {
        height: 0%;
        width: 0%;
        margin-top: 0%;
        flex: 1;
        text-align: center;
        display: none;
        justify-content:flex-start;
        flex-direction: column;
        align-items: center;
    }


@media (max-width: 800px) {

    body {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: #ffffff;
        color: #000;
        min-height: 100vh;
        margin: 0;
    }

    /* HEADER 22% -------------------------------------*/
    .header {
        height: 22%;
        width: 100%;
        display: flex;
        justify-content:center;
        align-items: center;
        background-color: #0059A3;
        padding-top: 2%;
        padding-bottom: 2%;
    }

    .header-logo {
        width: 100px;
        height: 60px;
        padding-left: 0px;
    }

    /* MAIN 78% -----------------------------------------*/

    .main-content-window{
        height: 0%;
        width: 0%;
        display: none;
    }

    .main-content {
        height: 75%;
        width: 85%;
        margin-top: 5%;
        flex: 1;
        text-align: center;
        display: flex;
        justify-content:flex-start;
        flex-direction: column;
        align-items: center;
    }

    .main-imagenes{
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 50%;
        width: 85%;
    }

        .main-img-logo {
            height: 12%;
            width: 80%;
        }

        .img-movil{
            margin-top: -12%;
            width: 75%;
            height: 380px;
        }

    .main-text{
        margin-top: -18%;
    }

    .main-text h1 {
        font-size: 26px;
        font-weight: bold;
        margin-top:20px;
        margin-bottom: 10px;

    }

    .main-text p {
        font-size: 18px;
        color: #666;
        margin-bottom: 10px;
    }

    .store-buttons {
        display: flex;
        gap: 1px;
    }
    
    .store-buttons img{
        width: 150px !important;
        height: 44px !important;
    }

}
