@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}

body {
  background: linear-gradient(180deg, #f7f8fa 0%, #eef2f7 100%);
  min-height: 100vh;
  padding: 20px 14px;
  color: #212529;
}

#container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
}

/* HEADER */
header {
  text-align: center;
  padding: 30px 0 20px;
}

#imgLogo {
  max-width: 180px;
  width: 100%;
  object-fit: contain;
}

/* BOX PRINCIPAL */
.box-selecao {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px 22px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.box-selecao h1 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}

#tituloLista {
  font-size: 14px;
  color: #6c757d;
  text-align: center;
  margin-bottom: 22px;
}

/* LISTA */
.list-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-group a {
  border: none !important;
  border-radius: 16px !important;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: #212529;
  background: #f8f9fa;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
}

.list-group a:hover,
.list-group a:focus {
  background: #212529;
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 480px) {
  body {
    padding: 16px 12px;
  }

  .box-selecao {
    padding: 22px 16px;
    border-radius: 20px;
  }

  .box-selecao h1 {
    font-size: 20px;
  }

  #imgLogo {
    max-width: 150px;
  }

  .list-group a {
    padding: 14px 16px;
    font-size: 14px;
  }
}