/* Giro Prime — logo com fundo branco e bordas suaves */
.gp-logo,
.header__logo-img,
.auth-logo,
.auth-header__logo,
.page-header__logo,
.sidebar-brand img,
.login-card img {
  object-fit: contain;
  background: #fff;
  border: 0;
  border-radius: 14px;
  /* sombra suave + leve brilho nas bordas */
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.35),
    0 4px 14px rgba(0, 0, 0, 0.35),
    0 10px 28px rgba(0, 0, 0, 0.28),
    0 0 20px rgba(59, 130, 246, 0.18),
    0 0 36px rgba(212, 168, 75, 0.1);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.gp-logo--sm,
.header__logo-img {
  height: 42px;
  width: auto;
  max-width: 150px;
  border-radius: 10px;
  padding: 2px;
  box-sizing: content-box;
}

.gp-logo--md {
  height: 48px;
  width: auto;
  border-radius: 12px;
}

.gp-logo--lg,
.auth-logo,
.auth-header__logo,
.login-card img {
  width: min(280px, 78vw);
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 18px;
  padding: 6px;
  background: #fff;
  box-sizing: content-box;
}

.gp-logo-wrap,
.auth-logo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 8px;
  z-index: 1;
}

/* brilho suave atrás da logo */
.auth-logo-wrap::after,
.gp-logo-wrap::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 85%;
  height: 70%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.2), transparent 70%);
  filter: blur(16px);
  z-index: -1;
  pointer-events: none;
}

.header__logo:hover .header__logo-img,
.auth-logo-wrap:hover .auth-logo,
.sidebar-brand:hover img,
.login-card img:hover,
.gp-logo:hover {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.5),
    0 6px 18px rgba(0, 0, 0, 0.4),
    0 12px 32px rgba(0, 0, 0, 0.32),
    0 0 28px rgba(59, 130, 246, 0.28),
    0 0 48px rgba(212, 168, 75, 0.16);
}

/* Admin sidebar — compacta, cantos suaves */
.sidebar-brand img {
  width: 36px;
  height: auto;
  border-radius: 8px;
  padding: 2px;
  background: #fff;
}
