.gt-header{
    background: var(--gt-color-light);
    position: relative;
    z-index: 100;
}
.gt-header__container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.gt-header__logo{}
.gt-header__logo-img{
  width: 170px;
  height: 64px;
}
.gt-header__nav{
  display: flex;
  gap: var(--gt-spacing);
}
.gt-header__nav-item{
    text-decoration: none;
    color: var(--gt-color-dark);
    font-weight: 600;
    font-family: var(--gt-font-nunito);
}
.gt-header__toggle{
    display: none;
    background: none;
    border: none;
    position: relative;
    width: 44px;
    height: 64px;
}
.gt-header__toggle .icon{
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gt-color-primary);
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: absolute;
  top: 15px;
  right: 0;
}
.gt-header__toggle .icon-menu{ 
  opacity: 1;
  transform: rotate(0deg);
}
.gt-header__toggle .icon-close{ 
  opacity: 0;
  transform: rotate(90deg);
}

.gt-header__container.active .gt-header__nav{
    display: flex;
}
.gt-header__container.active  .icon-menu{ 
  opacity: 0;
  transform: rotate(-90deg);
 }
.gt-header__container.active  .icon-close{ 
  opacity: 1;
  transform: rotate(0deg);
}

/* Responsive */
@media (max-width: 768px) {
    .gt-header__toggle {
        display: block;
    }

    .gt-header__nav {
        display: none;
        flex-direction: column;
        background: var(--gt-color-light);
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        padding: var(--gt-spacing);
        height: calc(100vh - 100px);
    }
}