/* geral */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}
body{
    background-color: white;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
.content{
    width: 100%;
    height: 90%;
    max-width: 1100px;
    overflow: hidden;
    background-color: rgb(214, 213, 213);
    padding: 15px;
    display: flex;
    box-shadow: inset 0 0 20px black;
    position: relative;
}

/* informacoes */
.info{
    height: 100%;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    position: relative;
}
.marca{
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    font-style: italic;
    text-shadow: 0 0 2px black;
}
.info h1{
    font-size: 3rem;
    font-style: italic;
    font-weight: 700;
    text-shadow: 0 0 5px black;
}
.paragrafo p{
    margin-top: 10px;
    font-size: 1rem;
    font-weight: 400;
}
.botao{
    padding: 5px 10px;
    color: white;
    background-color: black;
    margin-top: 20px;
    width:200px;
    height: 40px;
    font-size: 1.3rem;
    cursor: pointer;
    transition: .5s;
    border: 3px solid black;
    font-weight: 400;
}
.botao:hover{
    background-color: transparent;
    color: black;
}

/* tenis */

.tenis{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    display: none;

}
.active{
    display: block;  
}

.botoes{
    position: absolute;
    bottom: 25px;
    right: 25px; 
    display: flex;
    gap: 5px;
}
.item{
    width: 60px;
    height: 60px;
    border: 1px solid;
    border-radius: 30%;
    cursor: pointer;
    transition: .3s;
}
.item img{
    width: 100%;
    height: 90%;
    text-align: center;
}
.item:hover{
    transform: scale(1.06);
    box-shadow: 0 0 5px white;
}
.tenis .img{
    width: 80%;
    max-width: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    position: absolute;
    left: 1000px;
    transition: 1s ease-in-out;
    opacity: 0;
}
.tenis .block{
    left: 50%;
    opacity: 1;
}
.tenis .img:hover{
    width: 85%;
}
.tenis1{
    height: 100%;
    position: relative;
    transition: 1s;
    
}
.conteiner{
    height: 100%;
    width: 50%;
    position: relative;
}
#prev{
    position:absolute;
    top: 47.5%;
    left: 5px;
    cursor: pointer;
}
#prev img{
    width: 30px;
    transform: rotate(180deg);
    transition: .3s;
}
#next{
    position: absolute;
    top: 47.5%;
    cursor: pointer;
    right: 5px;
}
#next img{
    width: 30px;
    transition: .3s;
}
#next:hover img{
    width: 32px;
}
#prev:hover img{
    width: 32px;
}


/* responsivo */
@media only screen and (max-width: 630px){
    .marca{
        font-size: 1.2rem;
    }
    .info h1{
        font-size: 2rem;
    }
    .content{
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    .info{
        height: 100%;
        width: 100%;
    }
    .conteiner{
        width: 100%;

    }
    .tenis{
        height: 100%;
        width: 100%;  
    }
    .tenis .img{
        width: 65%;
        max-width: 500px;
        top: 50%;
        left: 1000px;
        transform: translate(-50%, -60%);
        position: absolute;
    }
    .tenis .block{
        left: 50%;
        opacity: 1;
    }
    .item{
        width: 50px;
        height: 50px;
    }
    .tenis .img:hover{
        width: 75%;
    }
    

}