/* Multicanalidade - tema Falcon | hero (profile-header) */
.mc-cover {
    height: 120px;
    background: linear-gradient(135deg, var(--mc-cover-a), var(--mc-cover-b));
    position: relative;
}
.mc-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120px 120px at 18% 130%, rgba(255,255,255,.18), transparent 70%),
        radial-gradient(160px 160px at 90% -30%, rgba(255,255,255,.14), transparent 70%);
}

/* Toggle claro/escuro sobre a capa (canto superior direito), no estilo Falcon */
.mc-theme-toggle {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    display: grid;
    place-items: center;
    color: var(--mc-on-accent, #ffffff);
    background: rgba(0, 0, 0, .18);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    transition: background .15s ease, transform .15s ease;
}
.mc-theme-toggle:hover { background: rgba(0, 0, 0, .3); transform: scale(1.06); }
.mc-theme-toggle:focus-visible { outline: none; box-shadow: 0 0 0 .2rem var(--mc-focus-ring); }
.mc-theme-toggle svg { width: 18px; height: 18px; display: block; }
.mc-theme-toggle .ico-sun { display: none; }
.mc-theme-toggle .ico-moon { display: block; }
[data-bs-theme="dark"] .mc-theme-toggle .ico-sun { display: block; }
[data-bs-theme="dark"] .mc-theme-toggle .ico-moon { display: none; }

.mc-hero {
    padding: 0 28px 22px;
    text-align: center;
    margin-top: -52px;
    position: relative;
}

.mc-avatar {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    border: 5px solid var(--mc-card);
    background: var(--mc-card);
    box-shadow: 0 .5rem 1.25rem rgba(31, 45, 61, .18);
    margin: 0 auto 14px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mc-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.mc-hero-msg {
    margin: 0 auto;
    max-width: 42ch;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--mc-heading);
    text-wrap: balance;
}
