* {
    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;
    }
}


/*TELA INICIAL*/
#tela_inicial {
    width: 100%;    
    background-color: #9F9D9D;    
}
/* SEÇÃO PRODUTOS */
#produtos {
    width: 100%;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.titulo-produtos {
    background-color: #42476E;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 22px;
    margin-bottom: 20px;
}

.lista-produtos {
    background-color: #22253D;
    width: 85%;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card-produto {
    background-color: #33385E;
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 8px;
    gap: 15px;
    position: relative;
}

.img-produto {
    width: 90px;
    border-radius: 6px;
}

.info-produto {
    flex: 1;
    color: white;
    font-size: 14px;
}

.preco {
    color: #00C853;
    font-weight: bold;
    font-size: 16px;
    display: block;
    margin-top: 5px;
}

.checkbox-produto {
    width: 22px;
    height: 22px;
    accent-color: #33A5C0;
}

/* BOTÃO COMPRAR */
.div-comprar {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.btn-comprar {
    background-color: #FF6600;
    color: white;
    font-size: 18px;
    padding: 12px 40px;
    border: 2px solid white;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.btn-comprar:hover {
    background-color: #e65c00;
}



/*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; 
    }
}