/* ======================= */
/* RESET BÁSICO / BASE     */
/* ======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* BODY */
body {
  background-color: #f5faff;
  color: #1a1a1a;
  line-height: 1.6;
}

/* NAVEGACIÓN */
nav {
  background-color: #e0f0ff;
  padding: 15px 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav a {
  text-decoration: none;
  color: #0077cc;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

nav a:hover {
  background-color: #0077cc;
  color: #ffffff;
}

/* MAIN */
main {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

/* TITULOS */
article h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #0077cc;
  text-align: center;
}

article h2 {
  font-size: 1.8rem;
  margin-top: 25px;
  margin-bottom: 15px;
  color: #005a99;
}

article h3 {
  font-size: 1.5rem;
  margin-top: 20px;
  margin-bottom: 15px;
  color: #005a99;
  border-left: 4px solid #0077cc;
  padding-left: 10px;
}

/* PARRAFOS Y LISTAS */
p, ul li {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 15px;
}

ul {
  padding-left: 25px;
}

strong {
  color: #0077cc;
}

/* TABLA DE MONEDAS BARATAS */
section table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 25px;
  min-width: 600px;
}

table th, table td {
  padding: 12px;
  text-align: center;
  border: 1px solid #b3d4f5;
}

table th {
  background-color: #e0f0ff;
  color: #0077cc;
  font-weight: 700;
}

table tbody tr:nth-child(odd) {
  background-color: #f4faff;
}

table tbody tr:nth-child(even) {
  background-color: #ffffff;
}

table tbody tr:hover {
  background-color: #d9f0ff;
  transition: background-color 0.3s;
}

/* FOOTER */
footer {
  background-color: #e0f0ff;
  text-align: center;
  padding: 20px 10px;
  margin-top: 40px;
  color: #0077cc;
  font-size: 0.9rem;
}

footer a {
  color: #0077cc;
  text-decoration: none;
  margin: 0 5px;
}

footer a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: center;
  }
  article h1 {
    font-size: 2rem;
  }
  article h2 {
    font-size: 1.5rem;
  }
  article p, ul li {
    font-size: 0.95rem;
  }
  table th, table td {
    padding: 8px 10px;
  }
}

@media (max-width: 480px) {
  nav a {
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }
  main {
    margin: 20px 10px;
    padding: 0 10px;
  }
  article h1 {
    font-size: 1.8rem;
  }
  article h2 {
    font-size: 1.3rem;
  }
  article p, ul li, table th, table td {
    font-size: 0.85rem;
    padding: 5px;
  }
  section {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
