* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
  font-family: 'Inter', sans-serif;
  background-color: #f5f5f5;
  color: #222;
  line-height: 1.6;
  padding-top: 80px;
}

  .navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  padding: 1rem 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

  .logo img {
    height: 50px;
  }

  .nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
  }

  .nav-links a {
    text-decoration: none;
    color: black;
    font-weight: 600;
    transition: color 0.3s ease;
  }

  .nav-links a:hover {
    color: #66c2ff;
  }

  .lang-icon {
    height: 60px;
    width: auto;
    transition: transform 0.2s ease;
  }

  .lang-icon:hover {
    transform: scale(1.1);
  }

  main {
    padding: 2rem;
  }

  .sobre-container {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .sobre-imagem {
    flex: 1;
    min-width: 600px;
  }

  .sobre-imagem img {
    width: 100%;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .sobre-texto {
    flex: 2;
    min-width: 300px;
  }

  .sobre-texto h1 {
    font-size: 2.5rem;
    color: #0c3c4c;
    margin-bottom: 1rem;
  }

  .sobre-texto p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: justify;
  }

  .valores{
    font-size: 1.1rem;
    text-align: justify;
  }

 .integrante {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      margin-bottom: 2rem;
      padding-bottom: 2rem;
      border-bottom: 1px dashed #999;
    }

    .integrante img {
      width: 140px;
      height: 140px;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .integrante-info {
      flex: 1;
    }

    .integrante-info h3 {
      margin-bottom: 0.5rem;
      color: #0c3c4c;
    }

    .integrante-info p {
      margin-bottom: 0.75rem;
    }

    .integrante-redes a {
      margin-right: 0.5rem;
      display: inline-block;
    }

    .integrante-redes img {
      width: 40px;
      height: 40px;
      transition: transform 0.2s ease;
    }

    .integrante-redes img:hover {
      transform: scale(1.1);
    }

.projeto {
      display: flex;
      align-items: flex-start;
      background-color: white;
      border-radius: 8px;
      padding: 1rem;
      margin-bottom: 1.5rem;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .projeto img {
      width: 150px;
      height: 150px;
      object-fit: cover;
      border-radius: 6px;
      margin-right: 1rem;
    }

    .projeto-info {
      flex: 1;
    }

    .projeto-info h3 {
      margin-bottom: 0.5rem;
      color: #0c3c4c;
    }

    .projeto-info h4 {
      margin-bottom: 0.5rem;
      color: #0c3c4c;
    }

    .projeto-info p {
      margin-bottom: 0.5rem;
    }

    .projeto-info a.pdf-link {
      display: inline-block;
      background-color: #0c3c4c;
      color: white;
      padding: 0.4rem 1rem;
      border-radius: 20px;
      text-decoration: none;
      font-size: 0.9rem;
      transition: background-color 0.3s ease;
    }

    .projeto-info a.pdf-link:hover {
      background-color: #0e5063;
    }

  footer {
    background-color: #0c3c4c;
    color: white;
    padding: 2rem;
  }

  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-section {
    flex: 1;
    min-width: 250px;
  }

  .footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    border-bottom: 2px solid #66c2ff;
    display: inline-block;
  }

  .footer-section p,
  .footer-section a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
  }

  .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
  }

  #inicio {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70vh;
  background-color: #f9f9f9;
}

#inicio .inicio-container {
  text-align: center;
}

#inicio .logo-grande {
  max-width: 800px;
  width: 100%;
  height: auto;
}