/* ==========================================================
   ASSOCIAÇÃO PROBRASIL — LINK INSTITUCIONAL DA HOME
   Arquivo isolado para não alterar o restante do site.
========================================================== */

.association-link {
    width: fit-content;
    max-width: 100%;
    margin-top: 18px;
    padding: 9px 18px 9px 11px;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: #fff;
    text-decoration: none;

    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.association-link:hover,
.association-link:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.association-link-logo {
    display: block;
    width: 112px;
    height: auto;
    max-height: 38px;
    object-fit: contain;
    flex: 0 0 auto;
}

.association-link-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.association-link-content strong {
    color: #fff;
    font-family: var(--font-body, "DM Sans", sans-serif);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: .01em;
}

.association-link-content small {
    color: rgba(255,255,255,.78);
    font-family: var(--font-body, "DM Sans", sans-serif);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
}

.association-link-content small span {
    display: inline-block;
    margin-left: 3px;
    transition: transform .25s ease;
}

.association-link:hover .association-link-content small span,
.association-link:focus-visible .association-link-content small span {
    transform: translateX(3px);
}

.site-credit {
    padding: 14px 0 18px;
    text-align: center;
    color: rgba(255,255,255,.42);
    font-family: var(--font-body, "DM Sans", sans-serif);
    font-size: 10px;
    line-height: 1.6;
}

.site-credit strong {
    color: rgba(255,255,255,.68);
    font-weight: 700;
}

.site-credit a {
    color: rgba(255,255,255,.58);
    text-decoration: none;
    transition: color .2s ease;
}

.site-credit a:hover,
.site-credit a:focus-visible {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 760px) {
    .association-link {
        margin-top: 15px;
        padding: 8px 14px 8px 9px;
        gap: 10px;
        border-radius: 10px;
    }

    .association-link-logo {
        width: 96px;
        max-height: 32px;
    }

    .association-link-content strong {
        font-size: 12px;
    }

    .association-link-content small {
        font-size: 9px;
    }

    .site-credit {
        padding: 13px 18px 17px;
        font-size: 9px;
    }
}




/* ==========================================================
   AJUSTE FINAL — DESCER TODO O CONTEÚDO DO HERO
   Mantém header e altura do hero exatamente como estão.
   Apenas desloca visualmente o bloco de informações para baixo.
   ========================================================== */
@media (min-width: 761px) {
    .hero-content {
        position: relative;
        top: 65px;
    }
}

@media (max-width: 760px) {
    .hero-content {
        position: relative;
        top: 25px;
    }
}
