@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@500&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;     
}

html {
  width: 100vw;
  height: 100vh;
  font-size: 62.5%;
  color: white;
  overflow-x: hidden;
  margin: 0;
}

body {
  background-color: #f0f5f7;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
}

h1 {
  font-family: 'Caveat', cursive;
  font-size: 30px;
}

header {
  width: 100%;
  height: 9.3vh;
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffffdc;
  box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
  padding: 0 100px;
  transition: 0.6s;
}

header .logo {
  width: 120px;
  height: auto;
  display: block;
}

header .navigation {
  position: relative;
  line-height: 75px;
  transition: 0.6s;
  margin-left: auto;
}

header .navigation .menu {
  position: relative;
  display: flex;
  justify-content: flex-end;
  list-style: none;
  user-select: none;
}

header .menu-item {
  margin-left: 0;
}

.menu-item a {
  color: #264d53;
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  text-decoration: none;
  margin: 20px;
  padding: 25px 0;
  font-weight: 600;
}

.menu-item a:hover {
  color: #2f9f99;
  transition: 0.2s;
}

section {
  padding: 30px 100px;
}

.folders {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px; 
  padding: 30px 10px;
  flex-wrap: wrap; 
}

.folders img {
  height: 510px;
  width: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 100px;
  transition: transform 0.3s ease;
}

.folders img:hover {
  transform: scale(1.04);
}

.rodape {
  background-color: #dee4e4;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.rodape {
  background-color: #dee4e4;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.rodape h1 {
  font-size: 15px;
  color: #264d53;
  font-weight: 100;
  margin: 0;
}

.rodape a i {
  font-size: 1.7rem;
  color:#264d53;
  margin-top: 10px;
}

/* Responsivo */
@media all and (max-width: 1080px) {
  header {
    padding: 15px 20px;
  }
}

@media (max-width: 768px) {
  header .navigation .menu {
    position: fixed;
    display: block;
    background: rgba(22, 22, 22, 0.9);
    min-width: 250px;
    top: 0;
    right: -100%;
    padding: 90px 30px;
    visibility: hidden;
    overflow-y: auto;
    transition: 0.5s;
    justify-content: center;
  }

  header .navigation .menu.active {
    right: 0;
    visibility: visible;
  }

  .menu-item {
    margin: 15px 0;
  }
}
