* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Mukta", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16pt;
  letter-spacing: 1px;
}

a {
  text-decoration: none;
  color: black;
}

a:hover {
  text-decoration: solid;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  font-family: 'Courier New', Courier, monospace;
  background-color: rgb(227, 252, 252);
  min-height: 14vh;
  padding: 1rem;
}

nav h1 {
  display: flex;
  align-items: center;
  justify-content: center
}

main {
  background-color: #EAF6F0;
  background: linear-gradient(to bottom,#EAF6F0 10%, #fff 50%, #EAF6F0 100%);
  padding: 1rem 5vw 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

main h2 {
  font-weight: 400;
}

main img {
  max-height: 200px;
}

.logo {
  max-height: 10vh;
  margin-right: 15px;
  letter-spacing: 3px;
  font-family: "Kdam Thmor Pro", sans-serif;
  font-size: 24pt;
}

.icon {
  padding: 7px;
  border-radius: 30px;
  border: 0.5px solid black;
  margin-right: 8px;
  font-size: 1.2rem;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: center;
}

.nav-list li + li {
  margin-left: 2rem;
}

.circle-background {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  border-radius: 10%;
  overflow: hidden;
  margin-bottom: 12px;
}

.images-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  row-gap: 1vh;
}

.images-grid div {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: flex-start;
  align-items: center;
  font-weight: 600;
  min-width: 13vw;
}

.column {
  min-height: 300px;
  min-width: 300px;
}

.footer {
  text-align: center;
  font-size: 1.2rem;
  padding: 0.8rem 0;
}

/* Responsividade para telas menores */
@media (max-width: 1024px) {
  main {
    padding: 2rem 4vw;
  }

  .images-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    height: auto;
    padding: 1rem;
    text-align: center;
  }

  .nav-list {
    flex-direction: column;
  }

  main {
    padding: 1rem 2vw;
    font-size: 14pt;
  }

  .images-grid {
    grid-template-columns: 1fr;
    gap: 2vh;
  }

  .circle-background {
    width: 150px;
    height: 150px;
  }

  .logo {
    font-size: 18pt;
  }

  .images-grid div {
    min-width: 250px;
  }
}

@media (max-width: 480px) {
  main {
    font-size: 12pt;
  }

  .icon {
    font-size: 1rem;
  }

  .circle-background {
    width: 120px;
    height: 120px;
  }
}
