/* * {
        box-sizing: border-box;
        }

        body {
        background-color: #fff;
        }

        .info {
        display: flex;
        justify-content: space-around;
        align-items: center;
        }

        .lista {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 10px;

        .list-container {
            border: solid 2px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 8px;
            width: 100%;
            margin: 0 auto;
            padding: 8px;

            .content {
            width: 100%;
            border: solid 2px;
            padding: 8px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            }
        }
        }

        @media (width < 500px) {
        .info {
            flex-direction: column;
        }
        } */
/* Reseteo básico para mejor consistencia */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #121212;
  color: #e0e0e0;
  font-family:
    "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
  line-height: 1.6;
  padding: 20px;
}

.info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1e1e1e;
  padding: 20px 40px;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  border: 1px solid #333;
}

.info h1 {
  color: #4caf50;
  font-size: 2rem;
}

.info h2 {
  font-size: 1.2rem;
  color: #a5d6a7;
  font-weight: normal;
}

.lista {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.lista > h2 {
  margin-bottom: 30px;
  font-size: 1.8rem;
  color: #ffffff;
  border-bottom: 2px solid #4caf50;
  padding-bottom: 10px;
}

.list-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  width: 100%;
}

.content {
  background-color: #1e1e1e;
  border-radius: 10px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  border: 1px solid #2c2c2c;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.content:hover {
  transform: translateY(-5px);
  border-color: #4caf50;
}

.content h3 {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.enlace {
  text-decoration: none;
  background-color: #1b5e20;
  color: #ffffff;
  padding: 10px 15px;
  border-radius: 6px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.enlace:hover {
  background-color: #4caf50;
  color: #121212;
  box-shadow: 0 0 12px rgba(76, 175, 80, 0.4);
  transform: scale(1.03);
}

@media (max-width: 600px) {
  .info {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px;
  }

  .list-container {
    grid-template-columns: 1fr;
  }
}
