*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    background:#181818;

    color:#fff;

    font-family:Arial,Helvetica,sans-serif;

}

.layout{

    display:grid;

    grid-template-columns:220px minmax(0,900px) 220px;

    gap:25px;

    max-width:1400px;

    margin:auto;

    padding:25px;

}

.container{

    width:100%;

}

.logo{

    width:75px;

    display:block;

    margin:auto;

    margin-bottom:15px;

}

header{

    text-align:center;

    margin-bottom:35px;

}

header h1{

    font-size:40px;

    margin-bottom:10px;

}

header p{

    color:#aaa;

}

.search{

    display:flex;

    gap:10px;

    margin-bottom:30px;

}

.search input{

    flex:1;

    height:56px;

    padding:15px;

    border:none;

    outline:none;

    border-radius:12px;

    background:#282828;

    color:white;

    font-size:16px;

}

.search button{

    width:170px;

    border:none;

    border-radius:12px;

    background:#ff7b00;

    color:white;

    font-weight:bold;

    cursor:pointer;

}

.search button:hover{

    background:#ff9433;

}

.banner{

    margin:20px 0;

}

.banner img{

    width:100%;

    border-radius:10px;

}

#resultado{

    background:#222;

    border-radius:15px;

    padding:20px;

    display:flex;

    gap:20px;

    margin-bottom:20px;

}

.thumb{

    width:320px;

}

.thumb img{

    width:100%;

    border-radius:10px;

}

.infos{

    flex:1;

}

.infos h2{

    margin-bottom:15px;

}

.infos p{

    margin-bottom:8px;

    color:#bbb;

}

.opcoes{

    width:220px;

    display:flex;

    flex-direction:column;

}

.opcoes label{

    margin-top:15px;

    margin-bottom:5px;

}

.opcoes select{

    height:45px;

    background:#333;

    color:white;

    border:none;

    border-radius:8px;

    padding:10px;

}

.download{

    margin-top:25px;

    height:50px;

    border:none;

    border-radius:10px;

    background:#ff7b00;

    color:white;

    font-size:17px;

    cursor:pointer;

}

.download:hover{

    background:#ff9433;

}

.ads{

    position:sticky;

    top:20px;

    height:fit-content;

}

.ads img{

    width:100%;

    border-radius:12px;

}

.mobile-banner{

    display:none;

}

.mobile-banner img{

    width:100%;

}

.hidden{

    display:none;

}

@media(max-width:1200px){

    .layout{

        grid-template-columns:1fr;

    }

    .ads{

        display:none;

    }

}

@media(max-width:768px){

    .search{

        flex-direction:column;

    }

    .search button{

        width:100%;

        height:55px;

    }

    #resultado{

        flex-direction:column;

    }

    .thumb{

        width:100%;

    }

    .opcoes{

        width:100%;

    }

    .mobile-banner{

        display:block;

        margin:20px;

    }

}