* {
    font-family: 'Inter', sans-serif;
}

body {
    margin: 0;
}

/*CABEÇALHO*/
header {
    height: 130px;
    width: 100%;
    background-color: #22253D;
    display: flex;
    align-items: center;
}

.img_logo {
    width: 15%;
    height: 100%;
    display: flex;
    align-items: center;
    margin-left: 1.5%;
}

.img_logo > img {
    width: 100%;
}

#div_menu {
    width: 38%;
    height: 100%;
    margin-left: 17.5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.itens_menu {
    color: white;
    font-size: 24px;
    text-align: center;
    text-decoration: none;
}

.pagina_atual {
    color: #33A5C0;
}

.itens_menu_hvr:hover {
    color: #33A5C0;
}

#img_lupa {
    width: 3%;
    height: 100%;
    margin-left: 15%;
    display: flex;
    align-items: center;
}

#img_lupa > img {
    width: 100%;
}

#img_carrinho {
    width: 3%;
    height: 100%;
    margin-left: 2%;
    display: flex;
    align-items: center;
}

#img_carrinho > img {
    width: 100%;
}

/* ================= RESPONSIVIDADE ================= */

/* --------- MOBILE (até 550px) --------- */
@media (max-width: 550px) {
    header {
        height: auto;
        flex-direction: column;  
        justify-content: center;
        padding: 10px 0;
    }

    .img_logo {
        width: 50%;
        height: auto;
        margin: 0 auto 10px auto;
    }

    #div_menu {
        width: 100%;
        margin: 0;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .itens_menu {
        font-size: 18px; 
    }

    #img_lupa, #img_carrinho {
        width: 8%;
        margin: 10px;
        justify-content: center;
    }
}

/* --------- TABLET (entre 551px e 1100px) --------- */
@media (min-width: 551px) and (max-width: 1100px) {
    header {
        height: 100px;
    }

    .img_logo {
        width: 20%;
    }

    #div_menu {
        width: 55%;
        margin-left: 5%;
    }

    .itens_menu {
        font-size: 20px;
    }

    #img_lupa {
        width: 5%;
        margin-left: auto;
    }

    #img_carrinho {
        width: 5%;
    }
}

/* --------- DESKTOP (acima de 1100px) --------- */
@media (min-width: 1101px) {
    header {
        height: 130px; 
    }

    .itens_menu {
        font-size: 24px;
    }
}

/*BANNER*/

#img_banner_mouse {
    width: 100%;
    margin-bottom: 0%;
}

/*TELA INICIAL*/
#tela_inicial {
    width: 100%;
    height: auto;
    background-color: #9F9D9D;
}

#div_Pincipais_produtos{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
#Pincipais_produtos {
    background-color: #22253D;
    width: 550px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    margin-top: 3%;
    margin-left: 4%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
}

#Pincipais_produtos>h1 {
    font-size: 32px;
    color: white;
}



#titulo_mouses {
    background-color: #22253D;
    width: 280px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    margin-top: 60px;
    margin-left: 4%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
}
#titulo_mouses>h1 {
    color: white;
}

#titulo_teclado {
    background-color: #22253D;
    width: 280px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    margin-top: 60px;
    margin-left: 4%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
}
#titulo_teclado>h1 {
    color: white;
}


.flex_produtos {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 60px;
}

.produto {  
    width: 400px;
    height: 25%;
    background-color: #22253D;
    border-radius: 20px;
    padding-bottom: 1.5%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
}

.teclado_produto {
    width: 90%;
    margin-left: 4.5%;
    margin-top: 7%;
}

.produto>p {
    width: 80%;
    font-size: 21px;
    color: white;
    margin-left: 8.5%;
    margin-top: 1.5%;
    margin-bottom: 0%;
    text-align: justify;
}

.produto>h6 {
    color: #FF0000;
    font-size: 18px;
    margin-left: 4%;
    margin-top: 4%;
    margin-bottom: 0%;
    text-decoration: line-through;
}

.produto>h2 {
    color: #00A202;
    font-size: 43px;
    margin-left: 4%;
    margin-top: 1%;
    margin-bottom: 0%;
}

.produto>h5 {
    color: #00A202;
    font-size: 18px;
    margin-left: 4%;
    margin-top: 1%;
    margin-bottom: 0%;
}

.laranja_btn_comprar {
    background-color: #FF6500;
    width: 85%;
    height: 60px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 6%;
    margin-top: 4%;
}

.branco_btn_comprar {
    background-color: white;
    width: 95%;
    height: 50px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.branco_btn_comprar>h1 {
    color: #FF6500;
}

/*hover*/
.laranja_btn_comprar:hover {
    background-color: white;
    width: 85%;
    height: 60px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 6%;
    margin-top: 4%;
}

.branco_btn_comprar:hover {
    background-color: #FF6500;
    width: 93%;
    height: 45px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.branco_btn_comprar>h1:hover {
    color: white;
}





/*RODAPÉ*/

#RodaPe {
    width: 100%;
    margin-top: 10%;
    background-color: #22253D;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: flex-end;
}

#voltar_ao_inicio {
    width: 100%;
    height: 50px;
    background-color: #42476E;
    font-size: 18px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

#voltar_ao_inicio > a {
    font-size: 18px;
    color: white;
    text-decoration: none;
}

#RodaPe_conteudo {
    background-color:#22253D;
    width: 90%;
    height: 230px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#div_caixaTexto_rodaPe {
    background-color: #22253D;
    padding: 20px;
    text-align: center;
    color: white;
    font-family: 'Inter', sans-serif;
}

#div_caixaTexto_rodaPe > h2 {
    font-size: 16px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

#div_input {
    display: flex;
}

.caixa-email {
    padding: 10px 15px;
    font-size: 14px;
    border: none;
    width: 240px;
    max-width: 90%;
    color: #888;
    background-color: #fff;
    text-align: left;
}

.botao-falso {
    background-color: orange;
    padding: 10px 15px;
    font-size: 18px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.botao-falso:hover {
    background-color: darkorange;
}

#nossasMidias_div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#title_nossasMidias {
    color: white;
}

#div_midias {
    width: 220px;
    display: flex;
    justify-content: space-between;
}

#youtube { height: 50px; }
#instagram { height: 50px; }
#facebook { height: 45px; }
#twitter { height: 40px; }

/* ================= RESPONSIVIDADE ================= */

/* --------- MOBILE (até 550px) --------- */
@media (max-width: 550px) {
    #RodaPe_conteudo {
        flex-direction: column; 
        height: auto;
        gap: 20px;
        padding: 20px 0;
    }

    .img_logo {
        width: 50%;
        margin-bottom: 10px;
    }

    #div_caixaTexto_rodaPe > h2 {
        font-size: 14px;
    }

    .caixa-email {
        width: 180px;
        font-size: 13px;
    }

    .botao-falso {
        padding: 8px 12px;
        font-size: 16px;
    }

    #div_midias {
        width: 180px;
    }

    #youtube, #instagram, #facebook, #twitter {
        height: 35px; 
    }
}

/* --------- TABLET (entre 551px e 1100px) --------- */
@media (min-width: 551px) and (max-width: 1100px) {
    #RodaPe_conteudo {
        height: auto;
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 20px;
        padding: 20px 0;
    }

    .img_logo {
        width: 20%;
    }

    #div_caixaTexto_rodaPe > h2 {
        font-size: 15px;
    }

    .caixa-email {
        width: 200px;
    }

    #div_midias {
        width: 200px;
    }

    #youtube, #instagram, #facebook, #twitter {
        height: 40px;
    }
}

/* --------- DESKTOP (acima de 1101px) --------- */
@media (min-width: 1101px) {
    #RodaPe_conteudo {
        height: 230px; 
    }
}