* {
    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 HEADER ================= */

/* --------- 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;
}
.contato_wrap {
    width: 80%;
    margin: 80px auto 0;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}


#imagens_contato {
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

#imagens_contato img {
    width: 100%;
    border-radius: 10px;
    display: block;
}


.form_contato {
    flex: 1 1 320px;
}




#secao_contato {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    position: relative;
}

.titulo_contato {
    position: absolute;
    top: 20px;
    font-size: 22px;
    color: white;
    background-color: #42476E;
    padding: 10px 40px;
    border-radius: 20px;
}

.form_contato {
    background-color: #22253D;
    padding: 40px;
    border-radius: 10px;
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 60px;
}

.form_contato input,
.form_contato textarea {
    width: 100%;
    padding: 10px;
    border: none;
    outline: none;
    font-size: 14px;
}

.form_contato textarea {
    resize: none;
    height: 100px;
}

.btn_enviar {
    background: linear-gradient(to right, orange, darkorange);
    border: none;
    padding: 12px;
    font-size: 16px;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.btn_enviar:hover {
    opacity: 0.9;
}

/* ====================================================== */
/*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 RODAPÉ ================= */

/* --------- 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;
    }
}