@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: #f6f8fa;
}

/* Navbar */
.navbar {
  background-color: #071233;
  color: white;
  padding: 15px 20px;
  text-align: center;
  font-size: 20px;
}

/* Caja de búsqueda */
.search-container {
  background-color: white;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  margin: 20px;
  border-radius: 10px;
}

.search-box input {
  padding: 10px;
  width: 200px;
  margin-right: 10px;
}

.search-box button {
  padding: 10px 20px;
  cursor: pointer;
}

/* Cuatro cajas abajo */
.box-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 20px;
}

.info-box,
.grid-box {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

h1 {
  margin-top: 0;
}


  .btn-atras {
      position: fixed;
      top: 20px;
      left: 20px;
      background-color: #1e1e2f;
      color: white;
      border: none;
      padding: 10px 18px;
      border-radius: 8px;
      font-size: 1rem;
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      transition: background-color 0.3s ease;
      z-index: 1000;
    }

    .btn-atras:hover {
      background-color: #00bcd4;
      color: #fff;
    }

    .btn-atras svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }