@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans');

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

html {
    font-size: 45%;
}

html, body {
    height: 100%;
    overflow-x: hidden;
    
}

header {
    background-color:#011F5E;
    
}

.logo {
  display: inline-block;
  width: 130px; /* ajuste a largura conforme necessário */
  height: 130px; /* ajuste a altura conforme necessário */
  background-image: url("img/logo-nutri.png");
  background-size: contain;
  background-repeat: no-repeat; 
  background-position: center center; 
}

header .container {
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1100px;
    margin: auto;

}

nav ul {
    display: flex;
}

nav ul li {
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: #f8f9f7;
    font-size: 2.1rem;
    padding: 6px 10px;
    margin-left: 30px;
    font-family: Poppins;
}

nav ul li a:hover {
    background-color: #ffff;
    transition: 0.3s;
    border-radius: 30px;
}

@media(max-width: 493px) {
    nav {
        display: none;
    }

    .one,
    .two,
    .three {
     background-color: white;
     height: 5px;
     width: 100%;
     margin: 6px auto;

     transition-duration: 0.3s;
    }

    .menu-burguer {
     width: 40px;
     height: 30px;
    }

    .menu-section.on {
        position: absolute;

        top: 0;
        left: 0;

        width: 100vw;
        height: 100vh;

        background-color:#011F5E;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-section.on nav {
        display: block;
    }

    .menu-section.on .menu-burguer {
        position: absolute;
        right: 15px;
        top: 15px;
    }

    .menu-section.on .menu-burguer .one {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .menu-section.on .menu-burguer .two {
        opacity: 0;
    }

    .menu-section.on .menu-burguer .three {
        transform: rotate(-45deg) translate(8px, -9px);
    }
    
    .menu-section.on nav ul {
        display: block;
        text-align: center;
    }

    .menu-section.on nav ul li a {
        transition-duration: 0.3s;
        font-size: 5rem;
        line-height: 15rem;
        margin-left: 0;
    }
}

.comprometimento12 {
    color: #333333;
    padding: 40px;
    border-radius: 8px;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto; 
   
}
.container12 {
    text-align: left;
    margin-top: 10%;
}

h1 {
    font-size: 3.0em;
    margin-bottom: 10px;
    color: #333333;
    font-family: 'Open Sans', sans-serif;
}

hr {
    width: 50px;
    border: 3px solid #ffc107;
    margin-bottom: 20px;
}

p {
    font-size: 2.0em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #666666;
    font-family: 'Open Sans', sans-serif;
}



.caixa{
  background-color: aliceblue;
}


.nav-container {
    margin-bottom: 20px;
    text-align: left;
    padding: 40px;
    border-radius: 8px;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    background-color: aliceblue;
}

.nav-tabs {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: left;
}

.nav-item {
    margin-right: 10px;
}

.nav-item a {
    text-decoration: none;
    padding: 10px;
    color: #333333;
    font-size: 2.5em;
    font-family: 'Open Sans', sans-serif;
}

.nav-item a:hover {
    background-color: #ccc;
}

.container7 {
    display: flex;
    flex-direction: column;
    color: #333333;
    padding: 40px;
    border-radius: 8px;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto; 
}

.text7 {
    margin-bottom: 20px;
    font-size: 2.0em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #666666;
    font-family: 'Open Sans', sans-serif;
}

.p2{
    font-size: 2.0em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #666666;
    font-family: 'Open Sans', sans-serif;

 }

.map7 iframe {
    width: 100%;
    height: 400px;
}

.contact{
  font-size: 1.5em;
  margin-top: 1%;

}
.email{
  font-size: 1.5em;

}

.caixapostal{
  font-size: 1.2em;
}



footer {
  position: relative;
  width: 100%;
  background: #002365;
  min-height: 100px;
  padding: 20px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 10%;
  font-family: 'Open Sans', sans-serif;
}

footer .social_icon,
footer .menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
}

footer .social_icon li,
footer .menu li {
  list-style: none;
}

footer .social_icon li a,
footer .menu li a {
  font-size: 2.0em;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
}

footer .menu li a {
  font-size: 2.2em;
  text-decoration: none;
  opacity: 0.75;
}

footer .social_icon li a:hover {
  transform: translateY(-10px);
}

footer .menu li a:hover {
  opacity: 1;
}

footer p {
  color: #fff;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 1.8rem;
}

footer .wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url(img/wave5.png);
  background-size: 1000px 100px;
}

footer .wave#wave1 {
  z-index: 1000;
  opacity: 1;
  bottom: 0;
  animation: animateWave1 4s linear infinite;
}

@keyframes animateWave1 {
  0% {
    background-position-x: 1000px;
  }
  100% {
    background-position-x: 0px;
  }
}

footer .wave#wave2 {
  z-index: 999;
  opacity: 1;
  bottom: 10px;
  animation: animateWave2 4s linear infinite;
}

@keyframes animateWave2 {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: 1000px;
  }
}

footer .wave#wave3 {
  z-index: 1000;
  opacity: 1;
  bottom: 15px;
  animation: animateWave3 5s linear infinite;
}

@keyframes animateWave3 {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: 1000px;
  }
}

footer .wave#wave4 {
  z-index: 999;
  opacity: 1;
  bottom: 20px;
  animation: animateWave4 5s linear infinite;
}

@keyframes animateWave4 {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: 1000px;
  }
}


.form-container7 {
  max-width: 600px;
  width: 100%;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Título do formulário */
.form-container h2 {
  font-size: 24px;
  color: #222;
  font-weight: bold;
}

/* Linha decorativa abaixo do título */
.form-container h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background: #F4C542;
  margin: 10px auto;
}

/* Inputs e labels */
.form-group {
  margin-bottom: 15px;
  text-align: left;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  color: #666;
  font-size: 2.0em;
  font-family: 'Open Sans', sans-serif;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

strong, b {
  font-weight: bold;
}
