:root {
  --royal-blue: #2563eb;
  --sky-blue: #3b82f6;
  --ocean: #0ea5e9;
  --glass: rgba(255, 255, 255, 0.7);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  background-attachment: fixed;
}

.glass {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--royal-blue) 0%, var(--sky-blue) 100%);
  box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
  color: white;
}

.text-gradient-royal {
  background: linear-gradient(135deg, var(--royal-blue), var(--ocean));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

#map {
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Animaciones */
.fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Pin del garrafón */
.custom-pin {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Ocultar elementos pero mantener espacio si es necesario */
.hidden {
  display: none !important;
}

/* Estilos de inputs */
input::placeholder {
  color: #94a3b8;
  font-weight: 500;
}
