/* Estilos adicionais para o Espaço Mix */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Animações */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-evento {
  animation: fadeIn 0.5s ease-out;
}

/* Scrollbar customizado */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: #FFD700;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #FFA500;
}

/* Inputs com foco */
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #FFD700 !important;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

/* Loading spinner */
.spinner {
  border: 3px solid #1a1a1a;
  border-top: 3px solid #FFD700;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsividade adicional */
@media (max-width: 640px) {
  .mesa-quadrada {
    width: 50px !important;
    height: 50px !important;
    font-size: 14px !important;
  }
  
  .mesa-bistro {
    width: 40px !important;
    height: 40px !important;
    font-size: 14px !important;
  }
}
