/* ===== RESET Y BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lucida Sans', 'Lucida Sans Unicode', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, var(--blue-very-light) 0%, var(--white) 100%);
  min-height: 100vh;
  animation: fadeInBody 0.6s ease-out;
}

@keyframes fadeInBody {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

