/**
 * GO CONNECTIVO — Powered by partner strip (login, admin)
 */
.gc-powered-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px 20px 22px;
    flex-shrink: 0;
}

.gc-powered-wrap--login {
    position: relative;
    z-index: 1;
    padding: 0;
    margin-top: 0;
    width: 100%;
}

.gc-powered-wrap--admin {
    margin-top: 16px;
    padding-bottom: 32px;
}

.gc-powered-wrap--portal {
    padding-top: 12px;
    padding-bottom: 18px;
}

.gc-powered-badge {
    position: relative;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: min(100%, 520px);
    width: auto;
    padding: 10px 10px 10px 22px;
    background:
        linear-gradient(105deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 38%, rgba(0, 0, 0, 0.12) 100%),
        rgba(10, 12, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.06) inset,
        0 12px 40px rgba(0, 0, 0, 0.38),
        0 0 0 1px rgba(245, 130, 32, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    text-decoration: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    overflow: hidden;
}

.gc-powered-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 8%, rgba(245, 130, 32, 0.55) 50%, transparent 92%);
    opacity: 0.85;
}

.gc-powered-badge::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 90% 120% at 78% 50%, rgba(245, 130, 32, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

.gc-powered-badge:hover {
    border-color: rgba(245, 130, 32, 0.28);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.08) inset,
        0 16px 48px rgba(0, 0, 0, 0.42),
        0 0 28px rgba(245, 130, 32, 0.1);
    transform: translateY(-1px);
}

.gc-powered-eyebrow {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    padding-right: 18px;
    margin-right: 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.3;
    white-space: nowrap;
}

.gc-powered-lockup {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 1 auto;
    min-width: 0;
    padding: 6px 14px 6px 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.gc-powered-logo-img {
    display: block;
    height: 26px;
    width: auto;
    max-width: min(280px, 58vw);
    aspect-ratio: auto;
    object-fit: contain;
    object-position: left center;
}

/* Legacy vector / text lockup */
.gc-powered-mark,
.gc-powered-wordmark,
.gc-powered-label,
.gc-powered-divider,
.gc-powered-brand,
.gc-powered-logo {
    display: none !important;
}

/* Login — wider partner strip */
.gc-powered-wrap--login .gc-powered-badge {
    padding: 11px 12px 11px 24px;
    max-width: min(100%, 480px);
}

.gc-powered-wrap--login .gc-powered-logo-img {
    height: 30px;
    max-width: min(300px, 62vw);
}

@media (min-width: 768px) {
    .gc-powered-badge {
        padding: 12px 14px 12px 26px;
    }

    .gc-powered-eyebrow {
        font-size: 10px;
        padding-right: 20px;
        margin-right: 20px;
    }

    .gc-powered-logo-img {
        height: 32px;
        max-width: 320px;
    }

    .gc-powered-wrap--login .gc-powered-logo-img {
        height: 34px;
        max-width: 340px;
    }
}

@media (max-width: 480px) {
    .gc-powered-badge {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 14px 18px 16px;
        border-radius: 16px;
        max-width: 100%;
    }

    .gc-powered-eyebrow {
        padding-right: 0;
        margin-right: 0;
        border-right: none;
        text-align: center;
        letter-spacing: 0.18em;
    }

    .gc-powered-lockup {
        justify-content: center;
        padding: 8px 12px;
        background: #000;
        border-radius: 10px;
    }

    .gc-powered-logo-img {
        height: 28px;
        max-width: 100%;
        object-position: center;
    }
}
