/* Active navigation button styling */
.nav-btn.active {
  color: #f3a946;
  font-weight: 700;
}

.nav-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #f3a946;
  border-radius: 9999px;
}

.mobile-nav-btn.active {
  background-color: #fef6eb;
  color: #f3a946;
  font-weight: 700;
}

/* Header CTA swap */
#header-cta-default.hidden,
#header-cta-ayuda.hidden {
  display: none !important;
}

/* Help cards styling */
.help-card {
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s ease;
}

.help-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.08), 0 10px 20px -12px rgba(0, 0, 0, 0.04);
}

.help-card .help-card-cta {
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Mobile menu container display */
#mobile-menu {
  display: none;
}

#mobile-menu.open {
  display: block;
}
