/* 🔥 ESTILOS PARA O ALERTA DE VAGAS */
.futurist-alert {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 15px 20px;
    margin: 20px 0;
    display: none;
    animation: fadeIn 0.5s ease;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
}

.futurist-alert strong {
    color: #856404;
    font-size: 16px;
}

.futurist-alert small {
    color: #856404;
    opacity: 0.8;
    font-size: 13px;
    display: block;
    margin-top: 5px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 🔥 ESTILOS PARA BOTÕES DO MODAL QUANDO DESABILITADOS */
.futurist-modal-actions button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #6c757d !important;
}

.futurist-modal-actions button:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* 🔥 ESTILO PARA BOTÃO DE CONFIRMAÇÃO DE DESCOBERTA */
.futurist-modal-actions .confirm-button {
    background: #28a745 !important;
    border-color: #28a745 !important;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(40, 167, 69, 0); }
    100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}

/* 🔥 RESTANTE DO SEU CSS EXISTENTE */
.futurist-container {
  font-family: 'Segoe UI', Arial, sans-serif;
  max-width: 900px;
  margin: 0 auto;
  padding: 30px;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.36);
  color: white;
}
.futurist-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.2rem;
  background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.futurist-button,
.futurist-reserve-button {
  display: block;
  width: 200px;
  padding: 14px;
  margin: 25px auto;
  background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
  color: #333;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.futurist-reserve-button {
  text-align: center;
  text-decoration: none;
}

/* Modal futurista */
.futurist-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.futurist-modal-content {
  background: #1a1a1a;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0,255,255,0.4);
  text-align: center;
  max-width: 350px;
  width: 90%;
  animation: fadeInScale 0.3s ease;
}

.futurist-modal-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 20px 0;
}

/* Modal de Translado */
#modal-translado .futurist-modal-content {
    max-width: 400px;
    text-align: center;
    background: #1a1a1a;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0,255,255,0.4);
    animation: fadeInScale 0.3s ease;
}

#modal-translado h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

#modal-translado p {
    margin: 10px 0;
    line-height: 1.5;
    color: #ddd;
}

#modal-translado small {
    color: #aaa;
    font-size: 12px;
    display: block;
    margin-top: 10px;
}

/* Estilo adicional para botões do modal de translado */
#modal-translado .futurist-button {
    flex: 1;
    padding: 12px;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

#modal-translado .futurist-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Melhorias no modal de translado */
#modal-translado .futurist-modal-content {
    max-width: 400px;
    text-align: center;
    background: #1a1a1a;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0,255,255,0.4);
    animation: fadeInScale 0.3s ease;
}

#modal-translado h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

#modal-translado p {
    margin: 10px 0;
    line-height: 1.5;
    color: #ddd;
}

#modal-translado small {
    color: #ffc107;
    font-size: 12px;
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

/* Botões do modal de translado */
#btn-sim-translado, #btn-nao-translado {
    flex: 1;
    padding: 12px;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

#btn-sim-translado:hover {
    background: #218838 !important;
    transform: translateY(-2px);
}

#btn-nao-translado:hover {
    background: #c82333 !important;
    transform: translateY(-2px);
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}