.plan-select-box{
  display:flex;
  justify-content:space-between;
  gap:6px;
  margin-top:10px;
}

.popup-plan-button{
  flex:1;
  padding:6px 0;
  background:#0d0f12;
  color:#fff;
  border-radius:6px;
  border:1px solid rgba(255,255,255,0.10);
  font-weight:700;
  font-size:12px;
  cursor:pointer;
  transition:.22s ease;
  text-transform:uppercase;
  letter-spacing:.4px;
}

.popup-plan-button.is-active{
  background:#ff6000;
  border-color:#ff6000;
}

.popup-plan-button:hover{
  transform:translateY(-2px);
}

@media (max-width:480px){
  .plan-select-box{ gap:4px; }
  .popup-plan-button{ font-size:11px;padding:7px 0; }
}

.login-popup {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 290px;
  padding: 18px 20px;
  border-radius: 14px;
  background: linear-gradient(180deg, #121418, #0d0f12);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  color: #fff;
  font-family: "Inter", sans-serif;
  transform: translateY(25px);
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transition: all 0.35s ease;
}

.login-popup.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  animation: popupFadeIn 0.35s ease-out;
}

/* Fechar */
.close-login-popup {
  position: absolute;
  top: 6px;
  right: 8px;
  background: transparent;
  border: 0;
  color: #bbb;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s ease;
}

.close-login-popup:hover {
  color: #fff;
}

/* Título */
.login-popup-title {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .3px;
}

/* Texto */
.login-popup-text {
  margin: 0 0 16px;
  color: #c7c7c7;
  font-size: 14px;
  line-height: 1.45;
}

/* Botão */
.login-popup-btn {
  display: block;
  width: 100%;
  padding: 12px 0;
  text-align: center;
  border-radius: 10px;
  border: none;
  font-weight: 800;
  font-size: 14.5px;
  cursor: pointer;
  letter-spacing: .3px;
  transition: 0.2s ease;
}

.login-popup-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

/* Botão pulsante */
.pulse-btn {
  animation: pulseGlow 1.7s infinite ease-in-out;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(255, 96, 0, 0.55); transform: scale(1); }
  50% { box-shadow: 0 0 18px 6px rgba(255, 96, 0, 0.25); transform: scale(1.04); }
  100% { box-shadow: 0 0 0 0 rgba(255, 96, 0, 0.55); transform: scale(1); }
}

/* Responsividade */
@media (max-width: 480px) {
  .login-popup {
    width: calc(100% - 30px);
    right: 15px;
    bottom: 15px;
  }
}

/* Animação */
@keyframes popupFadeIn {
  from { opacity: 0; transform: translateY(22px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
