body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
}

.wrapper {
    margin: 0 auto;
    max-width: 1200px;
}

/* Variáveis */



/* Geral */

.a-content-center {
    align-items: center;
}

.a-items-center {
    align-items: center;
}

.d-desktop {
    display: block;
}

.d-flex {
    display: flex !important;
}

.d-grid {
    display: grid !important;
}

.d-mobile {
    display: none;
}

.gap-10 {
    gap: 10px;
}

.j-content-center {
    justify-content: center;
}

.j-content-space-between {
    justify-content: space-between;
}

.j-items-center {
    justify-items: center;
}

@media (max-width: 768px) {
    
    .d-desktop {
        display: none !important;
    }
    
    .d-mobile {
        display: block;
    }
    
}

/* Ícones */

.icone-menu {
  transform: scale(var(--ggs, 1));
}

.icone-menu,
.icone-menu::after,
.icone-menu::before {
  box-sizing: border-box;
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 3px;
  background: currentColor;
}

.icone-menu::after,
.icone-menu::before {
  content: "";
  position: absolute;
  top: -6px;
}

.icone-menu::after {
  top: 6px;
}

.icone-search {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs, 1));
  width: 16px;
  height: 16px;
  border: 2px solid;
  border-radius: 100%;
  margin-left: -4px;
  margin-top: -4px;
}
.icone-search::after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  border-radius: 3px;
  width: 2px;
  height: 8px;
  background: currentColor;
  transform: rotate(-45deg);
  top: 10px;
  left: 12px;
}

.icone-usuario {
  display: block;
  transform: scale(var(--ggs, 1));
  box-sizing: border-box;
  width: 12px;
  height: 18px;
}

.icone-usuario::after,
.icone-usuario::before {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  border: 2px solid;
}

.icone-usuario::before {
  width: 8px;
  height: 8px;
  border-radius: 30px;
  top: 0;
  left: 2px;
}

.icone-usuario::after {
  width: 12px;
  height: 9px;
  border-bottom: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  top: 9px;
}

.icone-fechar {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs, 1));
  width: 22px;
  height: 22px;
  border: 2px solid transparent;
  border-radius: 40px;
}

.icone-fechar::after,
.icone-fechar::before {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  width: 16px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
  border-radius: 5px;
  top: 8px;
  left: 1px;
}

.icone-fechar::after {
  transform: rotate(-45deg);
}

/* Cabeçalho */

header {
    padding: 1em;
}

header .logo img {
    width: 150px;
}

@media (max-width: 768px) {
    
}