/* ### RESET ### */

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

html {
    scroll-behavior: smooth;
}

/* ### CABEÇALHO ### */

header {
    font-family: "Bungee", sans-serif;
    font-weight: 400;
    font-style: normal;
}

body, input, textarea {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}

header {
    padding: 16px 0;
    background-color: #182C61;
    color:#ecf0f1;
}

header h1 {
    font-weight: normal;
}

header nav li {
    display: inline;
    margin-left: 16px;
    font-size: 18px;
}

header nav li a {
    color: #ecf0f1;
    text-decoration: none;
}

header nav li a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1250px;
    width: 100%;
    margin: 0 auto;
    display: flex;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ### SOBRE A LOJA ### */

section h2 {
    font-family: "Bungee", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-weight: normal;
    color: #182C61;
}

.brands_list img {
    height: 24px;
    /*margin-top: 18px; */
}

.brands_list li {
    display: inline;
    margin-right: 8px;
}

section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section .container {
    align-items:flex-start;
    /* padding: 24px; */
}

section {
    padding: 24px 0;
}

section h2 {
    margin-bottom: 16px;
}

section {
    color: #182C61;
}

section p {
    margin-bottom: 8px;
}

.store_front {
    margin-right: 32px;
}

/* ### CONTATO ### */

section h3 {
    font-family: "Bungee", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-weight: normal;
    color: #182C61;
    margin-bottom: 16px;
}

.social_links img {
    height: 24px;
}

.social_links li {
    display: inline;
    margin-right: 8px;
}

.social_links li a {
    text-decoration: none;
}

#contact .container {
    display: block;
}

.contact_methods {
    display: flex;
    justify-content: space-between;
}

form input,
form textarea,
form button {
    display: block;
    width: 320px;
    margin-bottom: 8px;
    padding: 8px;
}

form textarea {
    resize: none;
    height: 180px;
}

form button {
    background-color: #182C61;
    color: #ecf0f1;
    font-family: "Bungee", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-weight: normal;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #314e9e;
}

input:focus, textarea:focus {
    outline-color:#182C61 ;
}

footer {
    background-color: #182C61;
    color:#ecf0f1;
    padding: 16px 0;
}

@media screen and (max-width: 640px) {
    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    header h1 {
        font-size: x-large;
    }

    header nav li {
        margin: 8px 16px;
        font-size: 16px;
        justify-content: space-between;
    }

    .container {
        flex-direction: column;
        padding: 0 10px;
    }

    section .container {
        flex-direction: column;
    }

    .home {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .home .informacoes {
        max-width: 100%;
        padding: 0 10px;
    }

    .home .container-foto {
        margin-top: 20px;
    }

    .contact_methods {
        flex-direction: column;
    }

    form input,
    form textarea,
    form button {
        width: 100%;
        max-width: 100%;
    }
    
    .social_links li {
        display: block;
        margin: 10px 0;
    }

    .projetos .container-projetos {
        flex-direction: column;
        align-items: center;
    }

    .projetos .projeto {
        max-width: 100%;
    }

    .store_front {
        max-width: 100%;
    }

    .mg_b {
        margin-bottom: 27px;
    }

    .sobre_a_loja {
        margin-top: 8px;
    }

    .nos_acompanhe {
        margin-top: 8px;
    }

    .venha_ate_nos {
        margin-top: 2px;
    }

    footer .container p {
        text-align: center;
        font-size: small;
    }
}
@media screen and (min-width: 641px) and (max-width: 1023px) {
    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    header h1 {
        font-size: x-large;
    }

    header nav li {
        margin: 8px 16px;
        font-size: 16px;
    }

    .container {
        flex-direction: column;
        padding: 0 10px;
        max-width: 600px;
    }

    section .container {
        flex-direction: column;
    }

    .home {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .home .informacoes {
        max-width: 100%;
        padding: 0 10px;
    }

    .home .container-foto {
        margin-top: 20px;
    }

    .contact_methods {
        flex-direction: column;
    }

    form input,
    form textarea,
    form button {
        width: 100%;
        max-width: 100%;
    }
    
    .social_links li {
        display: block;
        margin: 10px 0;
    }

    .projetos .container-projetos {
        flex-direction: column;
        align-items: center;
    }

    .projetos .projeto {
        max-width: 100%;
    }

    .store_front {
        max-width: 100%;
        margin: 0 auto;
    }

    .mg_b {
        margin-bottom: 27px;
    }

    .sobre_a_loja {
        margin-top: 8px;
    }

    .nos_acompanhe {
        margin-top: 8px;
    }

    .venha_ate_nos {
        margin-top: 2px;
    }

    footer .container p {
        text-align: center;
        font-size: small;
    }
}