.menu {
  background-color: #fff;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(212,212,212,0.25);
  -moz-box-shadow: 0px 4px 4px 0px rgba(212,212,212,0.25);
  box-shadow: 0px 4px 4px 0px rgba(212,212,212,0.25);
}

.navbar-brand {
  flex-grow: 1;
  text-align: center;
}

.navbar-brand img {
  max-width: 150px;
}

.navbar-toggler-icon {
  background-image: url(../assets/img/menu/menu.webp);
}

.navbar-fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.social-icons icon {
  
}

.icon {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1.8px solid #4a4453;
  border-radius: 50%;
  font-size: 16px;
  color: #4a4453;
  text-decoration: none;
  transition: 0.3s;
}

.icon:hover {
  background-color: #4a4453;
  color: white;
}

.menu-btn {
  width: 114px;
  border: none;
  background-color: transparent;
}

.contenedor-menu {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0;
  position: relative;
  z-index: 99999;
}

/* Modal Menú */
.contenedor-modal {
  background-color: transparent;
  color: white;
  height: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99998;
  position: fixed;
  width: 100vw;
  top: 0;
  left: 0;
  pointer-events: none;
}

.contenedor-redes {
  opacity: 0;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -70px);
}

.menu-container {
  display: flex;
  width: 100%;
  max-width: 1000px;
  gap: 20px;
}

.logo-section {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  flex: 1;
}

.logo-section a {
  color: #fff;
  margin-bottom: 0;
  display: block;
}

.logo-section .logo {
  width: 150px;
  position: absolute;
  left: 48.9%;
  top: 13px;
  transform: translate(-50%, 0px);
}

.logo-section .logo img{
  max-width: 300px;
}

.social-icons i {
  margin: 10px;
  font-size: 1.2rem;
}

.contenedor-modal__nav {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  justify-items: flex-end;
  align-items: end;
  opacity: 0;
}

.nav-modal a {
  display: flex;
  color: white;
  margin-bottom: 25px;
}

.nav-modal a span{
  display: block;
  color: white;
  text-decoration: none;
  font-size: 3vw;
  margin-bottom: 0px;
  font-family: 'athelas';
  position: relative;
  line-height: 1;
}

.nav-modal a span::after{
  content: "";
  width: 0%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: -6px;
  left: 0;
  transition: all 1.3s ease-in-out;
  opacity: 0;
}

.nav-modal a:hover span::after{
  opacity: 1;
  width: 100%;
}

.nav-modal a.active span::after{
  opacity: 1;
  width: 100%;
}

.language-selector {
  margin-top: 20px;
}

.language-selector span {
  margin-right: 10px;
  cursor: pointer;
  font-size: 1.2vw;
  font-family: 'athiti';
}

.language-selector .active {
  font-family: 'athiti-sb';
}

.close-btn {
  position: absolute;
  left: 59px;
  font-size: 2.5vw;
  cursor: pointer;
  opacity: 0;
}

.contenedor-redes--div {
  position: relative;
  width: 100%;
}