/* Identidade ContaDrop - cabecalho */
header a[aria-label*="in"] > div {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

header a[aria-label*="in"] > div > img {
  width: 40px;
  height: 40px;
  min-width: 40px;
  object-fit: contain;      /* nunca estica nem corta */
  background: transparent;  /* png com transparencia, sem fundo branco */
  border-radius: 0;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}

header a[aria-label*="in"] > div > span {
  color: #ffffff;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.2px;
  transition: color 0.2s ease;
}

header a[aria-label*="in"]:hover > div > span {
  color: #ff7a18;           /* destaque discreto em laranja */
}

/* banner do topo: preenche sem esticar */
img[alt="banner"] {
  width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* celular: simbolo e nome menores, mas ainda nitidos e alinhados */
@media (max-width: 600px) {
  header a[aria-label*="in"] > div > img {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
  header a[aria-label*="in"] > div > span {
    font-size: 0.95rem;
  }
}
