
.site-header {
  background: rgba(248, 250, 252, 0.98);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-wrap {
  max-width: 1300px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.brand-name {
  text-decoration: none;
  font-size: 33px;
  font-weight: 800;
  letter-spacing: -0.7px;
  color: var(--color-primary);
  line-height: 1;
}

.brand-name span {
  color: var(--color-highlight);
}

.brand-name:hover {
  color: var(--color-primary);
}

/* Navigation */
.main-nav {
  display: flex;
  gap: 36px;
}

.main-nav a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

/* Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Call box */
.call-box {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 9px 18px 9px 12px;
  border-radius: 18px;
  background: var(--gradient-call);
  box-shadow: 0 16px 30px rgba(245, 72, 72, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.call-box:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 36px rgba(239, 62, 62, 0.3);
}

.call-box__icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.call-box__icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.call-icon {
  width: 42px;
  height: 42px;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
}

.call-text span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.92);
  display: block;
  line-height: 1.1;
}



/* Register Button */
.whatsapp-btn {
  background: var(--whatsapp-green);
  color: #ffffff;
  padding: 11px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(34, 197, 94, 0.24);
  transition: 0.3s ease;
}

.whatsapp-btn:hover {
  background: var(--whatsapp-green-hover);
  box-shadow: 0 18px 34px rgba(22, 163, 74, 0.3);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  background: #ffffff;

  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
    display: none;
}

.hamburger span {
  width: 18px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 1180px) {
  .header-wrap {
    padding: 12px 16px;
  }

  .brand-name {
    font-size: 30px;
  }

  .main-nav {
    gap: 22px;
  }

  .main-nav a {
    font-size: 14px;
  }

  .header-actions {
    gap: 12px;
  }

  .call-box {
    padding: 8px 14px 8px 10px;
  }

  .call-header {
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .main-nav,
  .call-box,
  .whatsapp-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 780px) {
  .brand-name {
    font-size: 28px;
  }

  .header-wrap {
    padding: 12px 14px;
  }
}

@media (max-width: 420px) {
  .brand-name {
    font-size: 24px;
  }

  .drawer-actions {
    flex-direction: column;
  }
}


/* Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(22, 45, 73, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: 0.35s ease;
  z-index: 998;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(18px);
  box-shadow: -10px 0 40px rgba(22, 45, 73, 0.18);
  transition: 0.4s cubic-bezier(.22,.61,.36,1);
  z-index: 999;
  display: flex;
  flex-direction: column;
  
  }


.mobile-drawer.open {
  right: 0;
}

/* Top */
.drawer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px;
  border-bottom: 1px solid var(--color-border);
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.drawer-avatar {
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  color: white;
  font-weight: 700;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-brand strong {
  font-size: 14px;
  color: var(--color-primary);
}

.drawer-brand span {
  font-size: 11px;
  color: var(--color-text-muted);
}

.drawer-close {
  background: rgba(44, 95, 141, 0.1);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 18px;
  color: var(--color-primary);
}

/* Nav */
.drawer-nav {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drawer-nav a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  padding: 12px 14px;
  border-radius: 10px;
  transition: 0.3s ease;
}

.drawer-nav a:hover {
  background: rgba(44, 95, 141, 0.08);
}

.drawer-nav a.active {
  background: rgba(44, 95, 141, 0.12);
  color: var(--color-primary);
}

/* Actions */
.drawer-actions {
  margin-top: auto;
  padding: 20px;
  display: flex;
  gap: 12px;
}

.mobile-drawer.open .drawer-actions {
  display: none;
}

.drawer-whatsapp,
.drawer-call {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.drawer-whatsapp {
  background: var(--whatsapp-green);
  color: #ffffff;
}

.drawer-call {
  background: var(--gradient-primary);
  color: #ffffff;
}
.call-header
{
  display: block;
  margin-top: 3px;
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.2px;
}
