@import url(global.css);
@import url(grid.css);
@import url(footer.css);

/* header */
header {
  display: flex;
  justify-content: space-between;
}

.explorer {
  width: 330px;
  display: flex;
  gap: 25px;
  align-items: center;
}
/* section  */

section {
  display: flex;
  margin-top: 25px;
  gap: 2rem;
  align-items: center;

  .descricao {
    /* margin-left: 2rem; */
    flex: 1;

    h1 {
      font-size: 2rem;
      font-weight: bold;
    }
    p {
      font-size: 0.854rem;
      margin-top: 20px;
    }
  }

  img {
    height: 176px;
    width: 176px;
  }
  .icon {
    height: 24px;
    width: 24px;
  }
}
.info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-right: 5rem;
}

.info ul {
  margin-left: auto;
  margin-left: 400px;
}
.info ul li {
  display: flex;
  gap: 15px;
  margin-top: 24px;
}

@media (max-width: 22.5rem) {
  header {
    display: grid;
    flex-direction: row;
    .logo {
      height: 32px;
      width: 162px;
    }
    img {
      width: 40px;
      height: 40px;
    }
    
    .explorer {
      margin-top: 20px;
      display: flex;;
      &.explorer p:nth-child(2),
      &.explorer p:nth-child(3) {
        display: none;
      }
      .lupa{
        width: 20px;
        height: 20px;
      }
    }
  }
 
  section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    padding: 0 16px;
  }

  section img {
    width: 120px;
    height: 120px;
  }

  .descricao h1 {
    font-size: 1rem;
    margin: 8px 0;
  }

  .descricao p {
    font-size: 14px;
    line-height: 1.5;
  }

  .info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .info ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .info li {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .info li img {
    width: 24px;
    height: 24px;
  }

  .info li p {
    font-size: 14px;
    margin: 0;
  }
}
