/* _content/MyLinks/Pages/Shared/_Layout.cshtml.rz.scp.css */
/* Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand[b-5mmy19soi2] {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

a[b-5mmy19soi2] {
  color: #0077cc;
}

.btn-primary[b-5mmy19soi2] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active[b-5mmy19soi2], .nav-pills .show > .nav-link[b-5mmy19soi2] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.border-top[b-5mmy19soi2] {
  border-top: 1px solid #e5e5e5;
}
.border-bottom[b-5mmy19soi2] {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow[b-5mmy19soi2] {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy[b-5mmy19soi2] {
  font-size: 1rem;
  line-height: inherit;
}

/* Footer centralizado e sem absolute */
.footer[b-5mmy19soi2] {
    position: static; /* antes absolute */
    width: 100%;
    white-space: normal;
    line-height: 1.6;
    text-align: center;
}

/* Footer centralizado (sem position:absolute) */
.footer[b-5mmy19soi2] {
    position: static;
    width: 100%;
    white-space: normal;
    line-height: 1.6;
    text-align: center;
}

/* Fundo com imagem + overlay escuro (legibilidade do texto claro) */
.bg-cover-layer[b-5mmy19soi2] {
    position: fixed;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.bg-overlay[b-5mmy19soi2] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,var(--overlay-opacity, .55));
    z-index: -1;
}


/* Overlay escuro para garantir contraste do texto branco */
.bg-overlay[b-5mmy19soi2] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: -1;
}

/* Avatar responsivo */
.hero-avatar[b-5mmy19soi2] {
    display: block;
}

@media (min-width: 768px) {
    .hero-avatar[b-5mmy19soi2] {
        width: 160px;
        height: 160px;
    }
}

/* ===== SOCIAL BAR - ícones com tamanho fixo, espaçamento e centralização ===== */
.social-bar[b-5mmy19soi2] {
    --icon-size: clamp(24px, 5vw, 40px);
    --icon-gap: clamp(8px, 1.2vw, 14px);
    display: flex;
    flex-wrap: nowrap; /* sempre em uma linha */
    justify-content: center; /* centraliza se houver < 8 */
    gap: var(--icon-gap);
}

.social-item[b-5mmy19soi2] {
    width: var(--icon-size);
    height: var(--icon-size);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    text-decoration: none;
    color: #fff !important; /* força branco sobre o azul padrão do <a> */
    transition: background .2s ease;
}

    .social-item:hover[b-5mmy19soi2] {
        background: rgba(255,255,255,.10);
    }

    /* Quando usar <i class="bi ..."> */
    .social-item i[b-5mmy19soi2] {
        font-size: calc(var(--icon-size) * 0.65);
        line-height: 1;
        color: #fff;
    }

    /* Quando usar <img src="/icons/..."> (SVG) */
    .social-item img[b-5mmy19soi2] {
        width: 70%;
        height: 70%;
        display: block;
    }

/* Links-botão SEM azul / SEM sublinhado */
.link-button[b-5mmy19soi2] {
    color: #fff !important;
    text-decoration: none !important;
}

    .link-button:hover[b-5mmy19soi2] {
        color: #fff !important;
        text-decoration: none !important;
    }

    .link-button:focus-visible[b-5mmy19soi2] {
        outline: none;
        box-shadow: 0 0 0 3px rgba(255,255,255,.25);
    }

    /* Ícone do botão (quando for <i>) */
    .link-button .btn-icon i[b-5mmy19soi2] {
        color: #fff;
        line-height: 1;
        display: block;
    }

    /* Se quiser um hover sutil também no ícone de imagem */
    .link-button:hover .btn-icon img[b-5mmy19soi2] {
        filter: brightness(1.05);
    }
