.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(223,215,183,.75);
}

.site-header .header-inner{
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-header .brand{
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.site-header .logo{
  height: 76px;
  width: auto;
  display: block;
  object-fit: contain;
}



.site-header .main-nav a{
  text-decoration: none;
  color: var(--verde, #47534E);
  font-weight: 600;
  font-size: .95rem;
  line-height: 1.2;
  padding: 8px 0;
  position: relative;
  transition: color .2s ease;
}

.site-header .main-nav a:hover{
  color: var(--dorado, #A3955E);
}

.site-header .main-nav a.active{
  color: var(--verde, #47534E);
}

.site-header .main-nav a.active::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--dorado, #A3955E);
}

.site-header .header-actions{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.site-header .header-actions .btn{
  min-height: 46px;
  padding: 10px 16px;
  font-size: .92rem;
}

.site-header .main-nav{
  display: none;
  position: absolute;
  top: 96px;
  right: 20px;
  min-width: 280px;
  background: #fff;
  border: 1px solid rgba(223,215,183,.75);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(71,83,78,.10);
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 12px 20px;
  z-index: 1001;
}

.site-header .main-nav.open{
  display: flex;
}

.site-header .main-nav a{
  width: 100%;
  padding: 14px 0;
  border-bottom: 1px solid rgba(223,215,183,.45);
}

.site-header .main-nav a:last-child{
  border-bottom: none;
}

.site-header .main-nav a.active::after{
  display: none;
}

.site-header .menu-toggle{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: var(--verde, #47534E);
  font-size: 1.7rem;
  line-height: 1;
  padding: 8px 10px;
  cursor: pointer;
}

.site-header .menu-toggle:focus-visible,
.site-header .main-nav a:focus-visible,
.site-header .header-actions a:focus-visible{
  outline: 2px solid var(--dorado, #A3955E);
  outline-offset: 3px;
  border-radius: 8px;
}

@media (max-width: 980px){
  .site-header .header-inner{
    min-height: 84px;
    position: relative;
  }

  .site-header .logo{
    height: 60px;
  }

.site-header .menu-toggle{
  order: 3;
}

.site-header .main-nav{
  top: 84px;
  left: 0;
  right: 0;
  min-width: 0;
  border-radius: 0;
  border-left: none;
  border-right: none;
  box-shadow: 0 10px 24px rgba(71,83,78,.08);
}

  .site-header .main-nav a{
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(223,215,183,.45);
  }

  .site-header .main-nav a:last-child{
    border-bottom: none;
  }

.site-header .menu-call{
  display:block;
  width:100%;
  margin-top:12px;
  padding:14px 0;
  text-align:center;
  border-radius:999px;

  background:var(--crema, #F6F4EA);
  color:var(--verde, #47534E);

  font-weight:700;
  text-decoration:none;
  border:1px solid rgba(223,215,183,.9);
}

.site-header .menu-call:hover{
  background:#f0ecdc;
}

.site-header .menu-call:hover{
  background:#3e4944;
}

  .site-header .main-nav a.active::after{
    display: none;
  }

  .site-header .header-actions .btn-secondary{
    display: none;
  }
}