@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inria+Serif&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Irish+Grover&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

/*é os guri né pai*/
header nav {
    background-color: #f7f4ec;
    display: flex;
    justify-content: space-between;
    padding: 2vw 8vw 2vw 8vw;
    align-items: center;
    box-shadow: 1px 1px 15px rgba(117, 109, 86, 0.205);

    & div h1 {
        color: #809671;
        font-family: irish grover;
        font-size: 30px;
    }

    & div ul {
        display: flex;
        gap: 40px;

        & li a {
     font-family: 'Inter', sans-serif;
            transition: transform 0.3s ease, text-shadow 0.3s ease;
            display: inline-block;
        }

        & li a:hover {
            transform: scale(1.1);
            color: #809671;

        }
    }
}

.textinhos {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center; 
    color: #333;
}

.textinhos h1 {
    font-size: 35px;
    margin-bottom: 20px;
    color:#809671; 
    font-weight: 700;
    font-family:Inria Serif ;
}

.textinhos p {
    font-size: 20px;
    line-height: 1.6; 
    margin-bottom: 15px;
    color: #809671;
}

@media screen and (max-width: 600px) {
    .textinhos h1 {
        font-size: 28px;
    }

    .textinhos p {
        font-size: 16px;
    }
}

.form {
    max-width: 400px;
    margin: 20px auto;
    padding: 25px;
    background-color: #f5f5f5; 
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.form label {
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.form input[type="number"] {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form input[type="number"]:focus {
    border-color: #526645; 
    outline: none;
}

.form button {
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    background-color:#809671;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.form button:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}


@media screen and (max-width: 500px) {
    .form {
        margin: 15px;
        padding: 20px;
    }
}
footer {
    font-family: 'Inter', sans-serif;
    background: #526645;
    color: white;
    padding: 5vw 20vw 5vw 10vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

footer .redes {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

footer h4 {
    font-size: 30px;
    color: white;
    font-family: 'Irish Grover', cursive;
    margin-bottom: 20px;
}

footer .redes img {
    width: 24px;
    height: 24px;
}

footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 100px;
}

footer li {
    margin-bottom: 8px;
    list-style: none;
}

footer a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: white;
}

footer .titulo-navegacao,
footer .titulo-duvidas,
footer .titulo-instucionais {
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #fff;
}
#exibi {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 250px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 20px;
    background-color: #809671;
    color: #fff;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

#exibi h1 {
    margin-bottom: 15px;
    font-size: 2.5rem;
    color: #ffffff;
}

#exibi p {
    font-size: 1.3rem;
    margin: 0;
    color: #ffffff;
}
#exibi.baixo {
    background-color: rgb(81, 229, 255);
}
#exibi.normal {
    background-color: rgb(56, 238, 95);
}
#exibi.sobrepeso {
    background-color: rgb(252, 164, 33);
}
#exibi.obesidade {
    background-color: rgb(248, 53, 53);
}


