/* =========================================================
   PLUS MOBILE - FOOTER
========================================================= */

.pm-footer {
    background: #16121f;
    color: #fff;
    padding: 70px 0 0;
    border-top: 0;
}

.pm-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 54px;
}

.pm-footer-logo {
    display: inline-block;
    margin-bottom: 20px;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.pm-footer p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
}

.pm-footer strong {
    color: #fff;
}

.pm-footer h3 {
    margin: 0 0 22px;
    color: #fff;
    font-size: 16px;
    font-weight: 850;
    text-transform: uppercase;
}

.pm-footer h3::after {
    content: "";
    display: block;
    width: 34px;
    height: 3px;
    margin-top: 10px;
    border-radius: 999px;
    background: var(--pm-accent);
}

.pm-footer a {
    display: block;
    margin-bottom: 11px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
}

.pm-footer a:hover {
    color: var(--pm-accent);
}

.pm-footer-button {
    width: fit-content;
    margin-top: 12px;
    padding: 11px 16px;
    border-radius: 999px;
    background: var(--pm-primary);
    color: #fff !important;
    font-weight: 800;
}

.pm-footer-links {
    margin-top: 54px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.pm-footer-links div {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
}

.pm-footer-links strong {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    text-transform: uppercase;
}

.pm-footer-links a {
    margin: 0;
    font-size: 14px;
}

.pm-footer-bottom {
    background: #0f0c15;
    margin-top: 0;
    padding: 22px 0;
}

.pm-footer-bottom .pm-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.pm-footer-bottom span,
.pm-footer-bottom a {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
}

.pm-footer-bottom nav {
    display: flex;
    gap: 20px;
}

/* =========================================================
   WHATSAPP FLOATING BUTTON
========================================================= */

.pm-whatsapp-button {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25D366;
    color: #fff !important;
    font-size: 30px;
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.35);
    transition: 0.2s ease;
}

.pm-whatsapp-button:hover {
    background: #1ebe5d;
    transform: translateY(-4px) scale(1.02);
}

.pm-whatsapp-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 25px rgba(37, 211, 102, 0.35));
}

/* =========================================================
   FOOTER RESPONSIVE
========================================================= */

@media (max-width: 900px) {
    .pm-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px;
    }

    .pm-footer-bottom .pm-container {
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .pm-footer-grid {
        grid-template-columns: 1fr;
    }

    .pm-footer-bottom nav {
        flex-wrap: wrap;
    }

    .pm-whatsapp-button {
        right: 16px;
        bottom: 16px;
        width: 58px;
        height: 58px;
    }
}