#section-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 160px;
  width: 100%;
}

#oi-section {
  width: 100%;
  display: grid;
  grid-template-columns: auto 520px;
  grid-template-rows: auto calc(1rem + 10px);
  align-items: center;
  column-gap: 128px;
}

#oi-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#fluorite-wrapper {
  display: flex;
  cursor: pointer;
}

#fluorite-container {
  width: 100%;
  display: flex;
  transition: transform 500ms ease-in-out;
}

#fluorite {
  width: 100%;
  filter: drop-shadow(0px 0px 50px rgba(95, 196, 219, 0.25));
  user-select: none;

  transition: all 150ms var(--bounce);
}

#fluorite:active {
  transform: scale(0.98);
}

#contador-fluorite {
  display: none;

  align-self: flex-start;
  z-index: 10;
  position: fixed;
  top: 0;
  user-select: none;
  align-items: center;
  justify-content: center;

  font-weight: bold;
  padding: 0.5rem 0 0.5rem 0;
  background-color: var(--main);
  margin-top: 8px;
  margin-left: -1px;

  transition: width 500ms ease-out;
}

.particle-effect {
  position: absolute;
  user-select: none;
  pointer-events: none;
  color: var(--white);
  filter: drop-shadow(0px 0px 2px var(--black));

  transition: all 500ms ease-in-out;
}

#outlineButton {
  display: flex;
  grid-column: 2;
  margin-left: auto;
  border-radius: 1000px;
}

#eu-section {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 48px;
}

.eu-section-title {
  display: flex;
  gap: 16px;
  align-items: center;
}

#msc-do-dia {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

#msc-do-dia-title {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

#eu {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

#eu-topico-wrapper {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.lockedItem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 2rem;
  margin: 0.5rem 0 0.5rem 0;
  padding: 0.5rem;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.itemPrice {
  display: flex;
  font-weight: bold;
  align-items: center;
  color: var(--main);
  user-select: none;
}

.topic {
  margin-left: 1.5rem;
  padding: 0.75rem 0 0.75rem 0;
}

.topic::before {
  pointer-events: none;
  transform: translateX(-1.5rem);

  position: absolute;
  display: inline-block;
  content: ">";
  order: -1;
  transition: all 250ms var(--overshoot);
  margin-right: 0.5rem;
}

.topic:hover::before {
  transform: translateX(-1rem);
}

.bullet {
  user-select: none;
}

.flag {
  position: absolute;
  width: 32px;
  height: 32px;
  transform: translateY(-8px);
  transition: all 150ms ease;
}
.flag:hover {
  transform: translateY(calc(-0.5rem - 4px));
}

#idade {
  cursor: pointer;
  user-select: none;
  touch-action: none;
}

#idade::after {
  content: "- dica: caso queira me dar parabéns, recomendo o dia 13 de setembro (๑>؂•̀๑)";
  inset: 0;
  position: absolute;
  display: flex;
  height: max-content;
  z-index: 10;
  color: var(--white);
  opacity: 0;

  background-color: black;
  padding: 0.5rem 0.75rem 0.5rem 0.75rem;
  outline: 1px solid black;
  line-height: 1.5rem;
  user-select: none;
  pointer-events: none;
  touch-action: none;

  transform: translateY(calc(0.25rem + 1.5rem));

  transition: transform var(--overshoot) 500ms, opacity ease 100ms;
}

#idade:active::after {
  opacity: 1;
  transform: translateY(calc(0.25rem - 1.5rem));
  z-index: 0;
}

#listas-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 16px;
}

.lists {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
  justify-content: center;
  align-items: center;
}

.list {
  cursor: pointer;
  position: relative;
  display: flex;
  aspect-ratio: 1 / 1;
  width: 250px;
  height: 250px;
  filter: drop-shadow(0px 0px 10px var(--dark-gray));
  outline: 1px solid var(--white);
}

.list-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  outline: 1px solid var(--white);
  filter: brightness(0.25) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.5));
  transition: all 500ms var(--overshoot), filter 250ms ease, outline 50ms ease;
}

.list-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0) 50%
  );
  opacity: 0;
  transition: all 250ms ease;
}

.list-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  z-index: 1;
}

#socials-section {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.social-wrapper {
  width: 32px;
  height: 32px;
  position: relative;
  display: flex;
}

.social {
  width: 100%;
  position: absolute;
  transition: all 250ms ease;
}

/* Mobile */
@media (max-width: 1024px) {
  #msc-do-dia {
    gap: 16px;
  }
  #eu {
    gap: 0;
  }

  #contador-fluorite-wrapper {
    max-width: 700px;
  }

  #oi-section {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto calc(1rem + 10px) auto;
    place-items: center;
    gap: 0;
  }

  #fluorite-wrapper {
    grid-row: 1;
    margin-bottom: 32px;
  }

  #fluorite:active {
    transform: scale(0.95);
  }

  #outlineButton {
    grid-column: 1;
    grid-row: 2;
  }

  #oi-content {
    grid-row: 3;
    margin-top: 64px;
  }

  #eu-section {
    display: grid;
    grid-template-columns: 100%;
    place-items: center;
    gap: 128px;
  }

  #idade::after {
    transform: translateY(calc(0.25rem + 3rem));
  }

  #idade:active::after {
    transform: translateY(calc(0.25rem));
  }

  #msc-do-dia {
    max-width: none;
  }
}

@media (max-width: 500px) {
  #contador-fluorite {
    margin-top: 16px;
  }

  #idade::after {
    transform: translateY(calc(0.25rem + 1.5rem));
  }

  #idade:active::after {
    transform: translateY(calc(0.25rem - 1.5rem));
  }
}
