/* Variables CSS */
:root {
  --primary-color: #ff8c00;
  --line-color: #fff;
	--line-height: 3px;
	--line-width: 23px;
      --gap: 5px;
  --transition-duration: 0.4s;
}

.header-social-wrap{
	display: flex;
	gap: 10px;
}


/* Contenedor del menú */
.hamburger-menu {
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

/* Líneas del menú */
.line {
  width: var(--line-width);
  height: var(--line-height);
  background-color: var(--line-color);
  border-radius: 2px;
  margin: calc(var(--gap) / 2) 0;
  transition: transform var(--transition-duration) ease-in-out,
    opacity var(--transition-duration) ease-in-out;
}

/* Estado activo del menú (cuando se hace clic) */
.hamburger-menu.active {
  box-shadow: none;
  background-color: #cd770e;
}

/* Efecto de desvanecimiento y giro */
.hamburger-menu.active .line-top {
  transform: rotate(180deg)
    translate(0, calc(var(--line-height) + var(--gap) / 2));
  opacity: 0;
}

.hamburger-menu.active .line-middle {
  transform: rotate(360deg);
}

.hamburger-menu.active .line-bottom {
  transform: rotate(-180deg)
    translate(0, calc(-1 * (var(--line-height) + var(--gap) / 2)));
  opacity: 0;
}

.menu_editorial-responsive {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #636060;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  transition: all 0.4s linear;
  transform-origin: center;
  transform: scale(0);
}

.menu_editorial-responsive.show {
  transform: scale(1);
}

.menu_editorial-responsive ul {
  list-style: none;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 50px;
}

.menu_editorial-responsive ul a {
  text-decoration: none;
  color: #fff;
  font-size: 21px;
  transition: all 0.2s linear;
}

.menu_editorial-responsive ul a:hover {
  color: var(--primary-color);
}

.close-menu-responsive {
  color: #fff;
  position: fixed;
  top: 35px;
  right: 35px;
  font-size: 80px;
  font-weight: 100;
  line-height: 40px;
  cursor: pointer;
}

@media(max-width:1365px){
	.hamburger-menu{
		display:flex;
	}
	
	.site-bottom-header-wrap.site-header-row-container.site-header-focus-item.site-header-row-layout-standard {
		display: none;
	}


}
