/* CONTAINER GERAL */
.custom-select {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 2rem auto;
  font-family: inherit;
}

/* BOTÃO PRINCIPAL */
.select-toggle {
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(209, 24, 67, 0.6);
  border-radius: 15px;
  color: #fff;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

/* SETINHA */
.select-toggle .arrow {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  transition: transform 0.3s ease;
}

.select-toggle.active .arrow {
  transform: translateY(-50%) rotate(180deg);
}

/* LISTA DE OPÇÕES */
.select-options {
  position: absolute;
  top: calc(100% + 0.5rem);
  width: 100%;
  background: rgba(0, 0, 0, 0.616);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(209, 24, 67, 0.6);
  border-radius: 1rem;
  overflow: hidden;
  z-index: 10;
  display: none;
}

.select-options.active {
  display: block;
}
.select-options.open { display: block; }

/* ITENS DA LISTA */
.select-options li {
  padding: 0.75rem 1.25rem;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}

.select-options li:hover {
  background: rgba(255, 255, 255, 0.05);
}
.select-options li.selected {
  background-color: rgba(209, 24, 67, 0.25);
  position: relative;
}

.select-options li.selected::after {
  content: '✓';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #d11843;
  font-weight: bold;
}
