/* Giro Prime — logos */

/* Header / shell: sem fundo, brilho branco */
.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
}
.header__logo::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120%;
  height: 90%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(255,255,255,.28), transparent 68%);
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}
.header__logo-img,
.header__logo .gp-logo {
  position: relative;
  z-index: 1;
  height: 84px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  filter:
    drop-shadow(0 0 2px rgba(255,255,255,.95))
    drop-shadow(0 0 10px rgba(255,255,255,.55))
    drop-shadow(0 0 22px rgba(255,255,255,.28))
    drop-shadow(0 4px 12px rgba(0,0,0,.35));
  transition: filter .25s ease, transform .25s ease;
}
.header__logo:hover .header__logo-img {
  transform: scale(1.03);
  filter:
    drop-shadow(0 0 2px rgba(255,255,255,1))
    drop-shadow(0 0 10px rgba(255,255,255,.7))
    drop-shadow(0 0 22px rgba(255,255,255,.35))
    drop-shadow(0 2px 10px rgba(0,0,0,.4));
}

/* Auth / login pages — keep soft card look */
.gp-logo,
.auth-logo,
.auth-header__logo,
.page-header__logo,
.sidebar-brand img,
.login-card img {
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 14px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 4px 14px rgba(0, 0, 0, 0.35),
    0 0 24px rgba(255, 255, 255, 0.12);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.gp-logo--sm {
  height: 42px;
  width: auto;
  max-width: 150px;
  border-radius: 10px;
  padding: 0;
  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: 0;
  background: transparent;
  box-sizing: content-box;
  filter:
    drop-shadow(0 0 8px rgba(255,255,255,.35))
    drop-shadow(0 8px 24px rgba(0,0,0,.4));
}

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

.auth-logo-wrap::after,
.gp-logo-wrap::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 90%;
  height: 75%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.22), transparent 70%);
  filter: blur(18px);
  z-index: -1;
  pointer-events: none;
}
