body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background: linear-gradient(to bottom, #ffffff, #e4e4e4);
  background-image: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.035),
    rgba(0, 0, 0, 0.035) 1px,
    transparent 1px,
    transparent 12px
  );
    }
    /* Header general */
header {
  background-color: #333;
  color: white;
  padding: 1em 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Logo */
.logo h1 {
  font-size: 1.5em;
  margin: 0;
  color: white;
  transition: color 0.3s;
}

.logo:hover h1 {
  color: #ffeb3b;
}

/* Navegación */
nav ul {
  list-style: none;
  display: flex;
  gap: 1.5em;
  padding: 0;
  margin: 0;
}

nav ul li {
  display: inline;
}

nav a {
  color: white;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

/* Línea animada debajo del enlace */
nav a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: #ffeb3b;
  left: 0;
  bottom: -4px;
  transition: width 0.3s ease-in-out;
}

nav a:hover {
  color: #ffeb3b;
}

nav a:hover::after {
  width: 100%;
}
    main {
      padding: 2em;
    }
    .info {
      background: #f8f8f8;
      padding: 2em;
      border-radius: 8px;
      max-width: 800px;
      margin: auto;
    }
    .info h2 {
      color: #333;
      margin-bottom: 1em;
    }
    .info ul {
      padding-left: 1.2em;
      margin-bottom: 1.5em;
    }
    .info a {
  display: inline-block;
  margin-top: 1em;
  background: linear-gradient(135deg, #007BFF, #005dc1);
  color: white;
  padding: 0.75em 1.8em;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0, 123, 255, 0.2);
  transition: all 0.3s ease;
}

.info a:hover {
  background: linear-gradient(135deg, #005dc1, #004aad);
  box-shadow: 0 6px 10px rgba(0, 123, 255, 0.3);
  transform: translateY(-2px);
}