header {
  padding: 1.5rem 2rem;
  /* height: 10dvh; */
  background: #1c1c1c;
  display: flex;
  justify-content: space-between;
}

.contact-whatsapp {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.open-menu,
.close-menu {
  color: #ffffff;
  font-size: 1.5em;
  display: block;
  cursor: pointer;
  transition: color 300ms ease;
}

.open-menu:hover,
.close-menu:hover,
.user-sesion:hover {
  color: var(--second-color);
}

.user-sesion {
  color: #ffffff;
  font-size: 1.3em;
  display: block;
  cursor: pointer;
}

/* Menu language selection */
.language-selector {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.language-selector .ri-earth-line {
  font-size: 26px; /* Ajusta el tamaño del icono */
  color: #ffffff; /* Color del icono */
}

.language-options {
  display: none;
  position: absolute;
  right: 0;
  background-color: #f1f1f1;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  min-width: 100px;
  border-radius: 5px;
  z-index: 999999;
}

.language-option {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.language-option:hover {
  background-color: #c1c1c1;
  border-radius: 5px;
}

.language-selector:hover .language-options {
  display: block;
}

/* .flags {
  width: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flags__item {
  width: 30px;
}

.flags__img {
  display: block;
  cursor: pointer;
} */

.nav {
  visibility: hidden;
  opacity: 0;

  z-index: 10000;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1rem;
  top: 75px;
  left: 0;
  background-color: #1c1c1c;
  padding: 2rem;
  box-shadow: 0 0 0 100vmax rgba(0, 0, 0, 0.5);
}

.nav.visible {
  opacity: 1;
  visibility: visible;
}

.nav-list {
  list-style-type: none;
  gap: 1rem;
  display: flex;
  flex-direction: column;
}

.nav-list li a {
  text-decoration: none;
  color: #ececec;
  align-items: start;
  transition: color 300ms ease;
}

.nav-list li a:hover {
  color: var(--second-color);
}

.btn-home-serv {
  width: 200px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(
    to right,
    #77530a,
    #ffd277,
    #77530a,
    #77530a,
    #ffd277,
    #77530a
  );
  background-size: 250%;
  background-position: left;
  color: #ffd277;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition-duration: 1s;
  overflow: hidden;
  text-decoration: none;
}

.btn-home-serv::before {
  position: absolute;
  content: attr(data-content);
  color: #ffd277;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 97%;
  height: 90%;
  border-radius: 8px;
  transition-duration: 1s;
  background-color: rgba(0, 0, 0, 0.842);
  background-size: 200%;
}

.btn-home-serv:hover {
  background-position: right;
  transition-duration: 1s;
}

.btn-home-serv:hover::before {
  background-position: right;
  transition-duration: 1s;
}

.btn-home-serv:active {
  transform: scale(0.95);
}

.menu-media-icons {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: space-around;
}
