/* CSS Fixes para problemas de alineación en Hostandom.es */

/* Fix 1: Alinear botón Chat IA con icono - estava flex-start, debe ser center */
.contact-channel-item {
  align-items: center !important;
}

/* Fix 2: Menú hamburguesa desplazado hacia arriba en mobile - aumentar top spacing */
@media (max-width: 920px) {
  .primary-nav {
    top: calc(100% + 0.7rem) !important;
  }
}

/* Fix 3: Link button en contact channel debe ser invisible pero mantener flex */
.contact-channel-item .link-button {
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  color: var(--text-secondary, #475569);
  font-size: 0.93rem;
  line-height: 1.4;
  font-family: inherit;
}

.contact-channel-item .link-button:hover {
  color: var(--brand);
}
