@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 .container1 {
    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;
    }
}

.banner10 {
  display: block; /* Garante que a imagem se comporte como um bloco */
  width: 100%; /* Ocupa 100% da largura da tela */
  height: auto; /* Mantém a proporção original da imagem */
}

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

h1 {
    font-size: 3.0em;
    margin-bottom: 10px;
    color: #333333;
    font-family: 'Open Sans', sans-serif;
}
h2 {
  font-size: 2.5em;
  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;
}
.lista {
    font-size: 2.0em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #011F5E;
    font-family: 'Open Sans', sans-serif;
}
.button2{
  font-size: 2.3em;
  margin-bottom: 10px;
  color: #011F5E;
  font-family: 'Open Sans', sans-serif;
}


.missao {
  color: #333333;
  padding: 40px;
  border-radius: 8px;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto; /* Adiciona margem automática nos lados esquerdo e direito */
}

 .imagem1 img {
     max-width: 100%;
    height: auto;
     display: flex;
  justify-content: center; /* centraliza horizontalmente */
  align-items: center; 
  }

.imagem {
    width: 80%;
    max-width: 1000px;
    position: relative;
    overflow: hidden;
    margin: 0 auto; 
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    z-index: -1;

}

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

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;
    }
  }

  .altura{
    margin-top: -10%;
  }
  
  a {
    text-decoration: none; /* Remove sublinhado padrão de links */
    color: inherit; /* Mantém a cor do texto */
  }
  
  a .card {
    cursor: pointer; /* Muda o cursor para indicar que o card é clicável */
    display: block; /* Garante que o link abranja todo o card */
  }
  
  .container {
      margin-top: -10%;
      width: 95%;
      max-width: 1300px;
      position: relative;
      margin: 0 auto; /* Centraliza o contêiner horizontalmente */
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh; /* Ajusta a altura do contêiner para 100% da altura da viewport */
  }
  
  .card-container {
      display: flex;
      gap: 20px;
      transition: transform 0.3s ease-in-out;
      overflow: hidden; /* Removido overflow-x: auto */
  }
  
  .card {
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      width: 300px;
      transition: transform 0.3s;
      flex-shrink: 0;
  }
  
  .card:hover {
      transform: translateY(-10px);
  }
  
  .card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
  }
  
  .card-content {
      padding: 15px;
  }
  
  .card-title {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 10px;
      font-family: 'Open Sans', sans-serif;
  }
  
  .card-text {
      font-size: 14px;
      color: #555;
      font-family: 'Open Sans', sans-serif;
  }
  
  .card-text span {
      color: #F6C;
  }
  
  .button-container {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
  }
  
  .button {
      
      border: none;
      color: #011F5E;
      padding: 10px 20px;
      cursor: pointer;
      font-size: 24px;
      margin: 0 10px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
  }
  
  @media (max-width: 768px) {
      .card {
          width: 80%;
      }
      .altura{
        margin-top: -40%;
      }
  }
  
  .video-container {
    margin-top: -5%;
    height: 60%;
    padding: 40px;
    border-radius: 8px;
    max-width: 1050px;
    width: 100%;
    margin: 0 auto; /* Adiciona margem automática nos lados esquerdo e direito */
  }

  .video-container iframe {
    width: 100%;
    height: 100%; /* Mantém a proporção do vídeo */
  }


