/*social networks below for mobile*/
.mobile-social-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: black;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.mobile-social-icon {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-social-icon:last-child {
  border-right: none;
}

.mobile-social-icon i {
  font-size: 24px;
}

/* Mobile Header Sin Logo */
.mobile-header {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 4px 20px;
  background-color: rgba(0, 0, 0, 0.95);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1003;
  backdrop-filter: blur(10px);
}

.mobile-logo-img {
  height: 58px;
  width: auto;
}

.mobile-brand a {
  text-decoration: none;
  color: white;
}

.mobile-brand-text {
  font-family: var(--font-Helvetica);
  font-size: 20px;
  font-weight: 600;
  color: white;
  letter-spacing: 2px;
}

.mobile-lang {
  display: flex;
  align-items: center;
}

.mobile-lang-link {
  display: flex;
  align-items: center;
  padding: 5px;
}

.mobile-flag-icon {
  width: 24px;
  height: auto;
}

/* Hamburger actualizado */
.hamburger-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 5px;
  z-index: 1004;
  position: relative;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Sidebar */
.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 1002;
  padding: 80px 0 20px 0;
  transition: left 0.3s ease;
  backdrop-filter: blur(10px);
}

.mobile-sidebar.active {
  left: 0;
}

.mobile-nav-section {
  padding: 0 20px;
}

.mobile-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link {
  display: block;
  padding: 20px 0;
  color: white;
  text-decoration: none;
  font-family: var(--font-Helvetica);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #74b5f0;
  padding-left: 10px;
}
