/* rodape.css — rodapé, redes sociais, botão flutuante do WhatsApp
   Extraído do build original (assets/index-C_bOfxLt.css) preservando a ordem da cascata. */

.site-footer {
    background: var(--navy-950);
    color: var(--white)
}

.footer-top {
    grid-template-columns: 230px 1fr auto;
    align-items: center;
    gap: 48px;
    min-height: 170px;
    display: grid
}

.footer-brand {
    width: 190px;
    height: 52px
}

.footer-top>p {
    color: #fff9;
    font-family: var(--serif);
    margin: 0;
    font-size: 22px;
    line-height: 1.25
}

.social-links {
    gap: 12px;
    display: flex
}

.social-item {
    color: #ffffffc2;
    cursor: default;
    border: 1px solid #fff3;
    align-items: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 14px;
    font-size: 12px;
    display: inline-flex
}

.social-item>span {
    background: var(--blue-500);
    width: 25px;
    height: 25px;
    color: var(--navy-950);
    letter-spacing: .04em;
    border-radius: 50%;
    place-items: center;
    font-size: 8px;
    font-weight: 600;
    display: grid
}

.whatsapp-float {
    z-index: 95;
    background: var(--navy-800);
    min-height: 58px;
    color: var(--white);
    letter-spacing: .055em;
    text-transform: uppercase;
    border: 1px solid #ffffff94;
    border-radius: 999px;
    align-items: center;
    gap: 11px;
    padding: 7px 17px 7px 8px;
    font-size: 11px;
    font-weight: 600;
    transition: transform .2s, background .2s, box-shadow .2s;
    display: inline-flex;
    position: fixed;
    bottom: 26px;
    right: 26px;
    box-shadow: 0 14px 36px #020b163d
}

.whatsapp-float:hover {
    background: var(--blue-700);
    transform: translateY(-2px);
    box-shadow: 0 17px 42px #020b1652
}

.whatsapp-symbol {
    letter-spacing: .08em;
    border: 1px solid #ffffffc2;
    border-radius: 50%;
    place-items: center;
    width: 42px;
    height: 42px;
    font-size: 9px;
    font-weight: 700;
    display: grid;
    position: relative
}

.whatsapp-symbol:after {
    content: "";
    border-right: 1px solid #ffffffc2;
    width: 9px;
    height: 9px;
    position: absolute;
    bottom: 1px;
    right: 2px;
    transform: rotate(38deg)
}

.footer-bottom {
    color: #ffffff73;
    border-top: 1px solid #ffffff1f;
    justify-content: space-between;
    gap: 30px;
    padding: 25px 0 30px;
    font-size: 12px;
    display: flex
}

.footer-bottom a:hover {
    color: var(--white)
}

