/* Reset básico */
 body {
      margin: 0;
      font-family: 'Cinzel', serif;
      color: #ffffff;
      background: linear-gradient(120deg, #0f0f0f, #1a1a2e);
    }

    header {
      background-color: #a46023;
      color: white;
      padding: 20px 0;
      text-align: center;
        border-bottom: 2px solid #FFD700; /* Dorado */
    }

    .logo-area img {
      width: 80px;
      margin-bottom: 10px;
    }

    nav ul {
      list-style: none;
      display: flex;
      justify-content: center;
      gap: 30px;
      padding: 0;
      margin: 10px 0 0 0;
    }

    nav a {
      color: #ccc;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s;
    }

    nav a:hover {
      color: white;
    }




/* Estilo para el mapa y sus ciudades */
.mapa-mundo {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  margin-top: 20px;
}

.mapa-base {
  width: 100%;
  height: auto;
  display: block;
}

.ciudad {
  position: absolute;
  text-align: center;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.ciudad img {
  width: 40px;
  transition: transform 0.3s ease;
}

.ciudad img:hover {
  transform: scale(3.5);
  z-index: 10;
}

.label {
  margin-top: 5px;
  font-size: 0.75em;
  color: white;
  text-shadow: 1px 1px 3px black;
}


  /* FOOTER */
.footer-buttons {
  margin-top: 10px;
}

.footer-buttons button {
  margin: 5px;
  padding: 8px 14px;
  background-color: #1e1e1d;
  color: #ffee00;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

footer {
  background-color: #12121f;
  text-align: center;
  padding: 15px 0;
  color: #aaa;
  font-size: 0.9rem;
  border-top: 2px solid #FFD700;
}

/* Modal ya está definido en tu CSS, pero agrego por claridad */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-contenido {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  width: 90%;
  max-width: 600px;
  color: black;
  border-radius: 10px;
  max-height: 80vh;
  overflow: hidden;
  position: relative;
}

.contenido-scrollable {
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 10px;
}

.cerrar {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}

.redes-sociales {
  margin-top: 15px;
}

.redes-sociales a {
  color: #f0f0f0;
  text-decoration: none;
  margin: 0 8px;
  font-size: 1rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.redes-sociales a:hover {
  color: #FFD700;
  transform: scale(1.2);
}
