:root {
  --primary-color: #1ed760;
  --bg-main: #060907;
  --text-main: #ffffff;
  --font-body: 'Inter', sans-serif;
  --primary-glow: rgba(30, 215, 96, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.popup {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(15px) saturate(180%);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  opacity: 1;
  pointer-events: all;
}

.popup.hidden {
  opacity: 0;
  pointer-events: none;
}

.popup__container {
  
  display: flex;
 
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(10, 15, 12, 0.85);
  backdrop-filter: blur(30px) saturate(180%);
  border-radius: 30px;
  border: 1px solid var(--primary-color);
  padding: 3rem 2rem;
  width: 85%;
  max-width: 350px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2), inset 0 0 15px rgba(30, 215, 96, 0.05);
}

.popup__options {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.popup__option {
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.25rem;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 5px;
}

.popup__option:hover {
  color: var(--primary-color);
}

.popup__option.active {
  color: var(--primary-color);
}

.popup__option.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.popup__btn-reservar {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  font-size: 1.1rem;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.popup__btn-reservar:hover {
  background-color: rgba(30, 215, 96, 0.1);
  box-shadow: 0 0 15px var(--primary-glow);
}
