.icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: -3px;
}
.icon svg {
  display: block;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(209, 168, 85, 0.16);
  color: #ffecc5;
}

/* Logo del header: limpio, grande y responsivo */
/* Header más delgado y elegante */
header .brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 58px; /* antes 72px → ahora más compacto */
}

/* Tamaño del logo (ya aprobado) */
header .brand-logo {
  border: none !important;
  outline: none !important;
  background: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;

  width: 120px;
  max-width: 30vw;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Tablet */
@media (max-width: 768px) {
  header .brand {
    height: 54px; /* más compacto también */
  }

  header .brand-logo {
    width: 100px;
    max-width: 32vw;
  }
}

/* Móvil */
@media (max-width: 480px) {
  header .brand {
    height: 50px; /* altura perfecta en móvil */
  }

  header .brand-logo {
    width: 82px;
    max-width: 38vw;
  }
}
