/* Variáveis */
:root {
  --container-bg: white;
  --list-bg: #c3c3c315;
}

/* Container Principal */
.container-selecoes {
  max-width: 1200px;
  width: 95%;
  margin: 4rem auto;
  background-color: var(--container-bg);
  padding: 2rem 3rem;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Título */
.container-selecoes h1 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 2.5rem;
  color: var(--text-color);
}

/* Lista */
.lista-selecoes {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Links */
.lista-selecoes a {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background-color: var(--list-bg);
  border-left: 6px solid var(--secondary-color);
  padding: 1.5rem;
  border-radius: 8px;
  color: var(--text-color);
  font-size: 1.6rem;
  transition: 0.3s;
  text-decoration: none;
}

.lista-selecoes a i {
  font-size: 2rem;
  color: var(--secondary-color);
}

.lista-selecoes a:hover {
  background-color: #f1e8e2;
  border-left-color: #735a4b;
  color: black;
  transform: translateX(6px);
}

.lista-selecoes a:hover i {
  color: #735a4b;
}

/* Responsivo */
@media (max-width: 768px) {
  .container-selecoes h1 {
    font-size: 2.4rem;
  }

  .lista-selecoes a {
    font-size: 1.5rem;
  }

  .lista-selecoes a i {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .container-selecoes h1 {
    font-size: 2rem;
  }

  .lista-selecoes a {
    font-size: 1.4rem;
    padding: 1.2rem;
  }

  .lista-selecoes a i {
    font-size: 1.6rem;
  }
}