/* public/css/global.css */
/* Importa la fuente Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Tipografía y fondo general */
body {
  font-family: 'Inter', sans-serif;
  background-color: #fff;
}

/* Gradientes personalizados */
.gradient-bg {
  background: linear-gradient(135deg, #5182f7 0%, #be213a 100%);
}
.gradient-secondary {
  background: linear-gradient(135deg, #5182f7 0%, #8B5CF6 50%, #be213a 100%);
}

/* Animación flotante */
.floating {
  animation: floating 3s ease-in-out infinite;
}
@keyframes floating {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Animación de aparición */
.fade-in {
  animation: fadeIn 1s ease-in;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo-header{
  max-height:32px;
}