/* ==========================================================================
   FOOTER.CSS — Rodapé + FABs (WhatsApp & Atendimento Móvel) — Pontual
   ========================================================================== */

.site-footer {
    background-color: var(--pp-blue-dark);
    border-top: 1px solid var(--pp-border-gold);
    padding: 4rem 0 2rem;
    color: var(--pp-white);
}

/* ─── GRID DO RODAPÉ ──────────────────────────────────────────────────── */
.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
@media (min-width: 768px)  { .footer-top { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-top { grid-template-columns: 1.5fr 2fr 1fr; } }

/* Marca */
.footer-brand { text-align: center; }
.footer-logo-img { max-height: 56px; width: auto; object-fit: contain; margin: 0 auto 1rem; }
.footer-tagline { color: var(--pp-text-muted); font-size: 0.9rem; line-height: 1.6; max-width: 360px; margin: 0 auto; }

@media (min-width: 1024px) {
    .footer-brand { text-align: left; }
    .footer-logo-img { margin-left: 0; }
    .footer-tagline { margin: 0; }
}

/* Navegação */
.footer-nav-title {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--pp-gold);
    margin-bottom: 1.25rem;
    text-align: center;
}
@media (min-width: 1024px) { .footer-nav-title { text-align: left; } }

.footer-nav-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
.footer-nav-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.75);
    font-size: 0.875rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    padding: 0.625rem 0.5rem;
    transition: all var(--transition-base);
    text-align: center;
}
.footer-nav-list a:hover { border-color: var(--pp-gold); color: var(--pp-gold); background: rgba(230,193,87,0.06); }

@media (min-width: 1024px) {
    .footer-nav-list { grid-template-columns: 1fr; }
    .footer-nav-list a { border: none; padding: 0.25rem 0; justify-content: flex-start; text-align: left; }
    .footer-nav-list a:hover { background: transparent; }
}

/* Social */
.footer-social-col { text-align: center; }
.footer-social { display: flex; justify-content: center; gap: 1rem; margin-top: 0.75rem; }
.footer-social__link {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--pp-white);
    transition: all var(--transition-base);
    font-size: 1.1rem;
}
.footer-social__link:hover { background: var(--pp-gold); color: var(--pp-blue-dark); border-color: var(--pp-gold); transform: translateY(-2px); }
@media (min-width: 1024px) { .footer-social-col { text-align: left; } .footer-social { justify-content: flex-start; } }

/* Rodapé inferior */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }

.footer-copy { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-credits { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.footer-credits a { color: var(--pp-gold); }

/* ─── FABs (Floating Action Buttons) ──────────────────────────────────── */
.fab-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: var(--z-fab);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}

/* FAB Atendimento Móvel */
.fab-atendimento-movel {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--pp-gradient-gold);
    color: var(--pp-blue-dark);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.75rem 1.125rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    transition: all var(--transition-base);
    white-space: nowrap;
}
.fab-atendimento-movel:hover { transform: scale(1.05); filter: brightness(1.08); }
.fab-atendimento-movel .ti { font-size: 1.1rem; }

/* FAB WhatsApp */
.fab-whatsapp {
    width: 52px;
    height: 52px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all var(--transition-base);
    font-size: 1.4rem;
}
.fab-whatsapp:hover { transform: scale(1.1); background: #1ebe5d; }

/* Mobile: oculta o label do FAB de atendimento para economizar espaço */
@media (max-width: 480px) {
    .fab-atendimento-movel span { display: none; }
    .fab-atendimento-movel {
        width: 52px;
        height: 52px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
    .fab-atendimento-movel .ti { font-size: 1.3rem; }
}
