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

.mobile-brand {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-brand a {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.mobile-logo-img {
  height: 40px;
  width: auto;
  max-width: 150px;
}

.mobile-social-icon-rappi {
  flex: 0 0 auto;
}

.mobile-social-icon-rappi-btn {
  background-color: #fff;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-block;
}


.mobile-social-icon-rappi-btn img {
  height: 20px;
  width: auto;
  vertical-align: middle;
}

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

.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 Navigation */
.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 {
  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-Montserrat);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  transition: all 0.3s ease;
}


.mobile-nav-link.active {
  color: #b40e25;
}


/* Mobile Social Bar */
.mobile-social-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #b40e25;
  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: 5px;
  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-social-icon img {
  height: 24px;
  width: auto;
}
