.lc-header--desktop {
  position: sticky;
  top: 0;
  z-index: 100;
}

.lc-topbar {
  background: var(--lc-bg-topbar);
  padding: 0 60px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.lc-topbar__links {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.lc-topbar__link {
  font-family: var(--lc-font-body);
  font-size: 12px;
  color: var(--lc-brand-primary);
  text-decoration: none;
  padding: 9px 0;
  letter-spacing: 0.06px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s;
}

.lc-topbar__link:hover {
  color: var(--lc-brand-primary);
  border-bottom-color: var(--lc-brand-primary);
}

.lc-topbar__link--active {
  font-weight: 600;
  border-bottom-color: var(--lc-brand-primary);
}

.lc-topbar__actions {
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 9px 0;
}

.lc-topbar__action {
  font-family: var(--lc-font-body);
  font-size: 12px;
  color: var(--lc-text-secondary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: color 0.15s;
}

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

.lc-navbar {
  background: var(--lc-bg-surface);
  box-shadow: var(--lc-shadow-header);
  padding: 0 61px;
  display: flex;
  align-items: flex-end;
  gap: 36px;
  height: var(--lc-navbar-h);
}

.lc-navbar__logo {
  padding-bottom: 18px;
  flex-shrink: 0;
}

.lc-navbar__logo img {
  height: 42px;
  width: auto;
  display: block;
}

.lc-navbar__nav {
  display: flex;
  gap: 36px;
  align-items: flex-end;
  flex: 1;
}

.lc-navbar__item {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-bottom: 24px;
  text-decoration: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  color: var(--lc-text-primary);
  transition: border-color 0.15s, color 0.15s;
}

.lc-navbar__item:hover {
  color: var(--lc-brand-primary);
  border-bottom-color: rgba(0, 45, 114, 0.2);
}

.lc-navbar__item--active {
  color: var(--lc-brand-primary);
  border-bottom-color: var(--lc-brand-primary);
}

.lc-navbar__item-text {
  font-family: var(--lc-font-body);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.21px;
  white-space: nowrap;
  color: inherit;
}

.lc-navbar__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: currentColor;
}

.lc-navbar__cta {
  padding-bottom: 18px;
  flex-shrink: 0;
}

.lc-btn-agendar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lc-bg-surface);
  border: 1px solid var(--lc-brand-primary);
  border-radius: var(--lc-radius-md);
  height: 42px;
  padding: 0 16px;
  font-family: var(--lc-font-body);
  font-size: var(--lc-size-btn-lg);
  font-weight: 700;
  color: var(--lc-brand-primary);
  text-decoration: none;
  letter-spacing: -0.36px;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.1s ease;
}

.lc-btn-agendar:hover {
  background: var(--lc-brand-primary);
  color: #fff;
  box-shadow: var(--lc-shadow-btn);
}

.lc-btn-agendar:active {
  transform: scale(0.96) translateY(1px);
  box-shadow: 0 2px 6px rgba(0, 45, 114, 0.25);
}

.lc-navbar__fundacion {
  padding-bottom: 18px;
  flex-shrink: 0;
}

.lc-navbar__fundacion img {
  height: 42px;
  width: auto;
  display: block;
}

.lc-header--mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--lc-bg-surface);
  box-shadow: var(--lc-shadow-header);
  height: var(--lc-mobile-header-h);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 201;
}

.lc-mobile-logo-clinic img {
  height: 42px;
  width: auto;
  display: block;
}

.lc-mobile-logo-fundacion img {
  height: 31px;
  width: auto;
  display: block;
}

.lc-mobile-menu {
  position: fixed;
  top: var(--lc-mobile-header-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.lc-mobile-menu--open {
  max-height: calc(100vh - var(--lc-mobile-header-h));
  overflow-y: auto;
}

.lc-mobile-menu__content {
  flex: 1;
  overflow-y: auto;
  background: var(--lc-bg-surface);
}

.lc-mobile-menu__nav {
  padding: 0 24px;
}

.lc-mobile-menu__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #F0F2F5;
  text-decoration: none;
  color: var(--lc-text-primary);
  font-family: var(--lc-font-body);
  font-size: 16px;
  font-weight: 400;
  transition: color 0.15s;
}

.lc-mobile-menu__item:first-child {
  border-top: 1px solid #F0F2F5;
}

.lc-mobile-menu__item:hover {
  color: var(--lc-brand-primary);
}

.lc-mobile-menu__item--active {
  color: var(--lc-brand-primary);
  font-weight: 600;
}

.lc-mobile-menu__item svg {
  flex-shrink: 0;
  color: var(--lc-border-default);
  transition: color 0.15s;
}

.lc-mobile-menu__item:hover svg,
.lc-mobile-menu__item--active svg {
  color: var(--lc-brand-primary);
}

.lc-mobile-menu__secondary {
  background: #F7F9FC;
  padding: 0 24px;
  margin-top: 4px;
}

.lc-mobile-menu__secondary-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #EAEDF2;
  text-decoration: none;
  color: var(--lc-text-secondary);
  font-family: var(--lc-font-body);
  font-size: 13px;
  transition: color 0.15s;
}

.lc-mobile-menu__secondary-item:last-child {
  border-bottom: none;
}

.lc-mobile-menu__secondary-item:hover {
  color: var(--lc-brand-primary);
}

.lc-mobile-menu__actions {
  background: var(--lc-brand-primary);
  display: flex;
  flex-shrink: 0;
}

.lc-mobile-menu__action-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 8px;
  text-decoration: none;
  color: #fff;
  font-family: var(--lc-font-body);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  background: none;
  border-top: none;
  border-bottom: none;
  border-left: none;
  cursor: pointer;
  transition: background 0.15s;
}

.lc-mobile-menu__action-btn:last-child {
  border-right: none;
}

.lc-mobile-menu__action-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.lc-mobile-menu__action-btn img {
  width: 24px;
  height: 24px;
  display: block;
}

.lc-mobile-menu__gap {
  flex-shrink: 0;
  height: calc(76px + env(safe-area-inset-bottom, 0px));
  background: rgba(0, 0, 0, 0.85);
}

body.lc-menu-open {
  overflow: hidden;
}

.lc-mobile-bottom-nav {
  position: fixed;
  bottom: max(16px, env(safe-area-inset-bottom, 16px));
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  height: 60px;
  background: var(--lc-brand-primary);
  border-radius: var(--lc-radius-md);
  box-shadow: var(--lc-shadow-bottom-nav);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 202;
  transition: max-width 0.32s cubic-bezier(0.4, 0, 0.2, 1), width 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.lc-mobile-bottom-nav__icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 32px;
}

.lc-mobile-bottom-nav__btn {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: opacity 0.15s;
}

.lc-mobile-bottom-nav__btn:hover {
  opacity: 0.75;
}

.lc-mobile-bottom-nav__btn img {
  width: 24px;
  height: 24px;
  display: block;
}

.lc-mobile-bottom-nav__close {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #fff;
  transition: opacity 0.15s;
}

.lc-mobile-bottom-nav__close:hover {
  opacity: 0.75;
}

.lc-mobile-bottom-nav__close svg {
  width: 28px;
  height: 28px;
}

.lc-mobile-bottom-nav--collapsed {
  max-width: 72px;
  width: 72px;
}

.lc-mobile-bottom-nav--collapsed .lc-mobile-bottom-nav__icons {
  display: none;
}

.lc-mobile-bottom-nav--collapsed .lc-mobile-bottom-nav__close {
  display: flex;
}
