@import url('https://fonts.google.com/share?selection.family=Andika:ital,wght@0,400;0,700;1,400;1,700');

:root {
    --clr-font: #050505;
    --clr-background: #eed3a5;
    --clr-accent: #f3eeda;
    --clr-header: #011801;
    --clr-logo: #cd2323;
    --clr-menu: #712525;
    --clr-aux: #9d9797;
    --clr-container: #011207;
    --clr-linha: #7bb0f1;
    --clr-foto: #d8b962;
    --clr-texto: #f5f5cb;
    --clr-rodape: #402901;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}
 
* {
    padding: 0;
    margin: 0;
    font-family: 'Andika', sans-serif;
}

body {
    background-color: var(--clr-rodape);
}
.container {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    background: var(--clr-container);
    /*border: 2px solid var(--clr-accent);*/
    background-image: url("img/MFNGF_Fundo.png");
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column; 
    justify-content: space-evenly;
    align-items: flex-start;
    align-content: flex-start;
    gap: 1em;
    font-size: 1rem;
}

header {
    background-color: #694502;
    box-shadow: 0px 3px 10px #464646;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1rem;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
}

.nav-list ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

.nav-item {
    margin: 0 15px;
    border: none;
}

.nav-item:hover {
    border-bottom: 1px solid #ccc;
}

.nav-link {
    text-decoration: none;
    font-size: 1.15rem;
    color: #fff;
    font-weight: 400;
}

.login-button button {
    border: 2;
    background-color: #694502;
    padding: 10px 15px;
    border-radius: 25px;
}

.login-button button a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 1.1rem;
}

.login-button button:hover{
    background-color: #724d08;
}

.login-button a:hover{
    color: #111111;
}

.mobile-menu-icon {
    display: none;
}

.mobile-menu {
    display: none;
}
.linha {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 0.5em;
    color: var(--clr-font);
    text-align: center;
}

.logo {
    flex-grow: .5;
    padding: 0.5em;
}

.foto {
    margin: 1em;
}

.foto img {
    width: 200px;
}

img {
    box-shadow: 20px 20px 20px rgba(19, 1, 1, 0.4);
    opacity: 1;
    
  }

.texto {
    display: inline-block;
    vertical-align: baseline;
    background: var(--clr-texto);
    flex-grow: 1;
    width: 100%;
    align-items: end;
    height: 100%;
    border: 0;
    border-radius: 10px;
    opacity: 0.7;
    padding: 20px;
    margin: 0.3em;
    margin-bottom: 0;
}

.texto p{
    text-align: justify;
}

.texto form{
    text-align: left;
}

.rodape {
    width: 100%;
    text-align: center;
    background:var(--clr-rodape);
    
}

.rodape a {
    color: #ab8407;
    font-size: xx-small;
}

.wrapper{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

form{
    background: #ab722e;
    width: 500px;
    height: 610px;
    padding: 16px;
}

input, textarea{
    width: 50%;
    min-width: 300px;
    outline: none;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 8px;
}

.form-group, .form-textarea{
    display: block;
    max-width: 300px;
    text-align: justify;
}

.form-group{
    margin-right: 60px;
}

.row{
    display: flex;
    margin-top: 16px;
}

.form-textarea{
    margin-top: 16px;
}

@media screen and (max-width: 700px) {
    .container{
        font-size: 0.8rem;
    }
    .linha{
        display: table;
        width: 100%;
    }
    .nav-bar {
        padding: 1.5rem 4rem;
    }
    
    .nav-item {
        display: none;
    }

    .login-button {
        display: none;
    }

    .mobile-menu-icon {
        display: block;
    }

    .mobile-menu-icon button {
        background-color: transparent;
        border: none;
        cursor: pointer;
    }

    .mobile-menu ul {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding-bottom: 1rem;
    }

    .mobile-menu .nav-item {
        display: block;
        padding-top: 1.2rem;
    }

    .mobile-menu .login-button {
        display: block;
        padding: 1rem 2rem;
    }

    .mobile-menu .login-button button {
        width: 100%;
    }

    .open{
        display: block;
    }

    .foto img {
        width: 50%;
    }

    form{
        width: 100%;
    }
    .form-group{
        min-width: 100%;
    }

    input, textarea {
        width: 100%;
    }

    .row{
        display: flex;
        flex-direction: column;
        width: 50%;
    }
}