body {
  width: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
  /* background-color: #fff9f1; */
  color: #333;

  background-color: #000000;

  background-image:
    linear-gradient(155deg,
      #ffffff 0%,
      #ffc55b 33%,
      #e3b9ff 66%,
      #38174b 100%);

}

.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #eba729;
  color: white;
}

.nav-left {
  display: flex;
  align-items: center;

  text-decoration: none; 
  color: #fff;
}

.nav-logo {
  width: 32px;
  height: 32px;
  margin-right: 10px;
}

.nav-menu {
  list-style: none;
  display: flex;
  /* gap: 20px; */
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
  z-index: 2000;
  /* para que se muestre x encima del mapa y no se bugea */
}

/* border right - elementos navegador */
.nav-menu .br {
  border-right: 1px white solid;
}

.nav-menu a {
  text-decoration: none;
  color: white;
  /* padding: 8px; */
  padding: 0.5em 1.25em;
  display: block;
}

.nav-menu .dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 160px;
  background-color: #34495e;
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  border-radius: 4px;
}

.nav-menu .dropdown-menu li a,
.nav-menu .dropdown-menu li button {
  padding: 10px;
  display: block;
  color: white;
  background-color: transparent;
  border: none;
  width: 100%;
  text-align: left;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu.right {
  left: auto;
  right: 0;
}

/* BOTONES ___________________________________________________________*/

.buttons {
  position: fixed;
  bottom: 50px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 998;
}

.buttons .btn {
  color: #333;
  font-size: 1.25rem;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.2s;
}

.buttons .btn:hover {
  transform: scale(1.1);
}

.buttons .btn img {
  width: 65%;
  height: 65%;
}

/* _ FOOTER _______________________________________________________________________________________ */

.footer {
  display: flex;
  flex-direction: column;
  padding: 1em 2em 2em 2em;
  background-color: #eba729;
  color: white;

  gap: 1em;

}

.footer-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.footer-row i {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 0.25em;
}

.footer-row h4 {
  margin: 0;
  padding: 0;
  font-size: 1.25rem;
}

.footer-row p {
  margin: 0;
  padding: 0;
}

.footer-row a {
  color: rgb(0, 0, 0);
  /* text-decoration: none; */
}

/* RESPONSIVE CSS*/
/*-------------------------------------------------------------------------------------------------------------------- */

@media (max-width: 575px) {

  .nav-header {
    padding: 5px 10px 15px 10px;
    flex-direction: column;
    font-size: 0.9rem;
  }

  .footer-row p {
    text-align: center;
  }
}

/*-------------------------------------------------------------------------------------------------------------------- */

@media (min-width: 576px) and (max-width: 767px) {
  .footer-row p {
    text-align: center;
  }
}

/*-------------------------------------------------------------------------------------------------------------------- */
/* Estilos para tablets grandes */
@media (min-width: 768px) and (max-width: 991px) {}

/*-------------------------------------------------------------------------------------------------------------------- */
/* 6. Escritorio */
@media (min-width: 992px) {}