body, html{
    margin: 0;
    padding: 0;
    font-family: "Lato", sans-serif;
}

.box-header{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1vh;
}

.box-header img{
    width: 5%;
}

.line{
    max-width: 1280px;
    background-color: black;
    height: 1px;
    margin: 0 auto;
    margin-top: 1vh;
}

.box-instalation{
    max-width: 1280px;
    margin: 0 auto;
}

.box-steps{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.step{
    width: 30%;
    border: 1px solid #000;
    border-radius: 1vh;
    padding: 2vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.step p{
    width: 100%;
    text-align: center;
}

.download-btn{
    background-color: #38b6ff;
    text-decoration: none;
    padding: 1.5vh;
    border-radius: 1vh;
    color: white;
    font-weight: 700;
    max-height: 4vh;
    display: flex;
    align-items: center;
}

.box-cadastro{
    max-width: 1280px;
    margin: 0 auto;
}

.box-version{
    max-width: 1280px;
    border: 1px solid #000;
    border-radius: 1vh;
    padding: 2vh;
    margin-bottom: 2vh;
}

.box-celulares{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.celular{
    width: 250px;
    height: 500px;
    background-repeat: no-repeat;
    background-size: 500px auto;  /* ajusta ao tamanho original */
    background-position: -120px 0; /* desloca a imagem p/ esquerda */
    border-radius: 20px;
}

.bg-1{
    background-image: url('/assets/manutencao\ click.png');
}

.bg-2{
    background-image: url('/assets/versaoclick.png');
}

.bg-3{
    background-image: url('/assets/serie.png');
}
.bg-4{
    background-image: url('/assets/inicializacao.png');
}
.bg-5{
    background-image: url('/assets/android\ 14.png');
}
.bg-6{
    background-image: url('/assets/intialcode.png');
}
.bg-7{
    background-image: url('/assets/password.png');
}
.box-web{
    max-width: 1280px;
    border: 1px solid #000;
    border-radius: 1vh;
    padding: 2vh;
    margin-bottom: 2vh;
}

.box-nootebooks{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.nootebook{
    width: 500px;
    height: 300px;
    background-repeat: no-repeat;
    background-size: auto 500px;  /* ajusta ao tamanho original */
    background-position: 0 -100px;
    border-radius: 20px;
    margin-bottom: 2vh;
}

.nb-1{
    background-image: url('/assets/click\ equip.png');
}
.nb-2{
    background-image: url('/assets/add\ equip.png');
}

.box-associete{
    max-width: 1280px;
    margin: 0 auto;
}

.nb-3{
    background-image: url('/assets/click\ vendedores.png');
}
.nb-4{
    background-image: url('/assets/buscar\ vendedor.png');
    background-position: 0 -115px;
}
.nb-5{
    background-image: url('/assets/open\ assoc.png');
    background-position: 0 -115px;
}
.nb-6{
    background-image: url('/assets/salvar\ associ.png');
    background-position: -33px -115px;
    background-size: auto 500px;
}

.box-initialize{
    max-width: 1280px;
    margin: 0 auto;
}


ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    width: 320px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
}

ul li {
    border-bottom: 1px solid #eee;
}

ul li:last-child {
    border-bottom: none;
}

ul li a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s;
}

ul li a:hover {
    background: #f0f8ff;
    color: #1976d2;
    padding-left: 25px; /* efeito de deslocamento */
}

@media (max-width: 1024px) {
    h3{
        font-size: 2vh;
        width: 100%;
    }
    p{
        font-size: 1.3vh;
    }
    .box-steps{
        justify-content: center;
        flex-wrap: wrap;
    }
    .step{
        width: 80%;
        margin-bottom: 2vh;
    }
    .box-cadastro{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .box-version{
        width: 80%;
    }
    .box-web{
        width: 80%;
    }
    .box-associete, .box-initialize{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    ul{
        width: 80%;
    }
    ul li a{
        font-size: 1.5vh;
        padding: 2vh;
    }
    .box-celulares{
        flex-wrap: wrap;
    }
    .nootebook{
        width: 100%;
        max-width: 500px;
        background-size: contain;
        background-position: center;
    }
    .box-header img{
        width: 25%;
    }
}