*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#000;
    font-family:Arial, Helvetica, sans-serif;
    color:#fff;
}

/* TOPO */
.topo{
    width:100%;
    min-height:74px;
    background:#050505;
    border-bottom:1px solid rgba(255,180,0,.15);

    display:flex;
    align-items:center;

    position:relative;
    z-index:999;
}

.topo-container{
    max-width:1280px;
    margin:0 auto;
    padding:0 32px;
    display:grid;
    grid-template-columns:300px 430px 1fr;
    align-items:center;
    gap:24px;
}

.logo{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    overflow:hidden;
}

.logo a{
    display:flex;
    align-items:center;
    max-width:100%;
}

.logo img{
    width:280px;
    max-width:280px;
    height:auto;
    display:block;
    object-fit:contain;
}

/* BUSCA */
.busca{
    width:100%;
    max-width:430px;
    height:42px;
    display:flex;
    align-items:center;
    background:#fff;
    border-radius:8px;
    overflow:hidden;
    border:1px solid #ffb400;
}

.busca select{
    width:145px;
    height:100%;
    border:none;
    outline:none;
    padding:0 10px;
    background:#fff;
    color:#111;
    font-size:12px;
}

.busca input{
    flex:1;
    height:100%;
    border:none;
    outline:none;
    padding:0 12px;
    color:#111;
    font-size:12px;
}

.busca button{
    width:48px;
    height:100%;
    border:none;
    background:#ffb400;
    color:#000;
    font-size:17px;
    cursor:pointer;
}

/* MENU */
.menu{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:16px;
    flex-wrap:nowrap;
}

.menu a{
    color:#fff;
    text-decoration:none;
    font-size:13px;
    font-weight:700;
    white-space:nowrap;
}

.menu a:hover{
    color:#ffb400;
}

/* HERO */
.hero{
    max-width:1280px;
    margin:0 auto;
    padding:24px 40px 28px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.texto-hero{
    max-width:560px;
}

.texto-hero h1{
    font-size:50px;
    line-height:1;
    font-weight:900;
    margin-bottom:18px;
}

.texto-hero span{
    color:#ffb400;
}

.texto-hero p{
    font-size:17px;
    color:#ddd;
    margin-bottom:24px;
}

.botao-hero{
    display:inline-block;
    padding:13px 28px;
    border:2px solid #ffb400;
    border-radius:8px;
    color:#ffb400;
    text-decoration:none;
    font-weight:700;
}

.botao-hero:hover{
    background:#ffb400;
    color:#000;
}

.imagem-hero img{
    width:100%;
    max-width:460px;
    display:block;
}

/* CATEGORIAS */
.categorias{
    max-width:1280px;
    margin:0 auto;
    padding:0 40px 30px;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:18px;
}

.categoria-box{
    background:#050505;
    border:1px solid #171717;
    border-radius:12px;
    height:100px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.categoria-box:hover{
    border-color:#ffb400;
}

.categoria-box span{
    font-size:24px;
    margin-bottom:8px;
}

.categoria-box h3{
    font-size:15px;
}

/* PRODUTOS */
.produtos{
    max-width:1280px;
    margin:0 auto;
    padding:10px 40px 60px;
}

.titulo-secao{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:22px;
}

.titulo-secao h2{
    font-size:24px;
}

.titulo-secao a{
    color:#ffb400;
    text-decoration:none;
    font-weight:700;
}

.grade-produtos{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.card-produto{
    background:#050505;
    border:1px solid #171717;
    border-radius:12px;
    padding:16px;
}

.card-produto:hover{
    border-color:#ffb400;
}

.card-produto img{
    width:100%;
    height:150px;
    object-fit:cover;
    border-radius:8px;
    margin-bottom:14px;
}

.card-produto h3{
    font-size:17px;
    margin-bottom:14px;
}

.categoria-produto{
    color:#ccc;
    margin-bottom:14px;
}

.botao-produto{
    display:block;
    width:100%;
    padding:12px;
    border:1px solid #ffb400;
    border-radius:8px;
    color:#ffb400;
    text-decoration:none;
    text-align:center;
    font-weight:700;
}

.botao-produto:hover{
    background:#ffb400;
    color:#000;
}

/* RESPONSIVO */
@media(max-width:1100px){
    .topo-container{
        grid-template-columns:1fr;
        justify-items:center;
        gap:12px;
    }

    .logo img{
        width:260px;
        max-width:260px;
    }

    .busca{
        max-width:560px;
    }

    .menu{
        justify-content:center;
        flex-wrap:wrap;
    }

    .hero{
        flex-direction:column;
        text-align:center;
        padding:28px 24px;
    }

    .categorias{
        grid-template-columns:repeat(2,1fr);
        padding:0 24px 30px;
    }

    .produtos{
        padding:10px 24px 60px;
    }

    .grade-produtos{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .topo-container{
        padding:0 16px;
    }

    .logo img{
        width:220px;
        max-width:220px;
    }

    .busca{
        height:40px;
    }

    .busca select{
        width:120px;
        font-size:11px;
    }

    .busca input{
        font-size:11px;
    }

    .menu{
        gap:12px;
    }

    .menu a{
        font-size:12px;
    }

    .texto-hero h1{
        font-size:38px;
    }

    .texto-hero p{
        font-size:16px;
    }

    .imagem-hero img{
        max-width:340px;
    }

    .categorias{
        grid-template-columns:1fr;
    }

    .grade-produtos{
        grid-template-columns:1fr;
    }
}