@charset "UTF-8";
:root {
  --background: #1e1e1e;
  --text-color: #fff;
}

/* Configurações basicas */
*,
*::before,
*::after {
  box-sizing: border-box;
  list-style-type: none;
  margin: unset;
  padding: unset;
  border: unset;
  outline: none;
}

input[type="search" i]:enabled:read-write:-webkit-any(
    :focus,
    :hover
  )::-webkit-search-cancel-button {
  display: none;
}

/*scroll customizado*/
::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
}

::-webkit-scrollbar-track {
  background: #1e1e1e;
}

::-webkit-scrollbar-thumb {
  background: #707070;
}

html {
  height: 100%;
  width: 100%;
  margin: 0;
  /* padding: 2rem; */
  font-size: 16px;
  font-weight: 400;
}

body {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  height: 100%;
  width: 100%;
  margin: 0;
  /* padding: 2rem; */
  font-family: "Open Sans", sans-serif;
  color: var(--text-color);
  background: var(--background);
  overflow-y: scroll;
}

.material-icons-outlined,
.material-icons {
  cursor: pointer;
}

.backgroundIMG {
  position: absolute;
  top: -2rem;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  filter: blur(5px);
}

.backgroundIMG > img {
  height: 110%;
}

a {
  text-decoration: none;
  color: var(--text-color);
}

a:hover {
  text-decoration: underline;
  color: #707070;
}

.ativo {
  text-decoration: underline;
  color: #707070;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  z-index: 2;
  padding: 3rem;
}

nav ul {
  display: flex;
  gap: 1rem;
}

.logo {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.logo img {
  width: 2.5rem;
  height: 2.5rem;
}

section {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
  height: 90vh;
  align-items: center;
  z-index: 2;
}

section > div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 50%;
}

/*responsivo celular*/
@media (max-width: 768px) {
  section {
    flex-direction: column;
    height: 100%;
  }
  section > div {
    width: 100%;
  }
  /*nav responsiva*/
  nav {
    flex-direction: column;
    gap: 0.5rem;
  }
  body {
    overflow-x: hidden;
  }
}
