/* CSS Customizado - Teste de Compatibilidade com Alex */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-gradient-start: #0f172a;
  --bg-gradient-end: #1e1b4b;
  --accent-pink: #ec4899;
  --accent-rose: #f43f5e;
  --accent-purple: #8b5cf6;
  --card-bg: rgba(30, 41, 59, 0.75);
  --card-border: rgba(255, 255, 255, 0.1);
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top, #1e1b4b 0%, #0f172a 60%, #020617 100%);
  min-height: 100vh;
  color: #f8fafc;
  overflow-x: hidden;
}

/* Glassmorphism Cards */
.glass-card {
  background: rgba(30, 41, 59, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
  border-radius: 1.5rem;
}

.glass-card-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card-hover:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 63, 94, 0.4);
  box-shadow: 0 25px 50px -12px rgba(244, 63, 94, 0.25);
}

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

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(244, 63, 94, 0.3); }
  50% { box-shadow: 0 0 35px rgba(244, 63, 94, 0.6); }
}

.animate-fade-in {
  animation: fadeIn 0.4s ease-out forwards;
}

.animate-glow {
  animation: pulseGlow 3s infinite;
}

/* Botões Grandes e Interativos */
.btn-primary {
  background: linear-gradient(135deg, #f43f5e 0%, #e11d48 50%, #be123c 100%);
  color: #ffffff;
  font-weight: 700;
  border-radius: 1rem;
  padding: 1rem 1.75rem;
  transition: all 0.25s ease;
  box-shadow: 0 10px 25px -5px rgba(244, 63, 94, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(244, 63, 94, 0.6);
}

.btn-option {
  background: rgba(47, 63, 94, 0.5);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: #f1f5f9;
  border-radius: 1.25rem;
  padding: 1.25rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  width: 100%;
}

.btn-option:hover {
  background: rgba(244, 63, 94, 0.15);
  border-color: #f43f5e;
  transform: scale(1.015);
}

.btn-option.selected {
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.3) 0%, rgba(225, 29, 72, 0.4) 100%);
  border-color: #f43f5e;
  box-shadow: 0 0 20px rgba(244, 63, 94, 0.4);
}

/* Barra de Progresso Customizada */
.progress-bar-fill {
  background: linear-gradient(90deg, #ec4899 0%, #f43f5e 50%, #8b5cf6 100%);
  transition: width 0.4s ease-in-out;
  border-radius: 9999px;
}

/* Spinner de Transição */
.loader-spinner {
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-left-color: #f43f5e;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Badges e Tags */
.badge-tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Campos de Formuário */
.input-custom {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-radius: 1rem;
  padding: 0.875rem 1.25rem;
  transition: all 0.2s ease;
  width: 100%;
}

.input-custom:focus {
  outline: none;
  border-color: #f43f5e;
  box-shadow: 0 0 15px rgba(244, 63, 94, 0.3);
}

/* Mobile Optimizations */
@media (max-width: 640px) {
  .glass-card {
    padding: 1.5rem 1rem !important;
    border-radius: 1.25rem;
  }
  
  .btn-option {
    padding: 1rem 1.25rem;
    font-size: 0.975rem;
  }
}
