/* Rock & Blu universal footer - original homepage design */
.global-footer {
    display: flex;
    flex-direction: column;
    background: #fff;
    color: var(--c-text-muted, #444);
    position: relative;
    z-index: 30;
    padding: 6rem 10% 2rem;
    border-top: 1px solid rgba(0,0,0,.05);
}
.global-footer .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    width: 100%;
    margin-bottom: 4rem;
    text-align: center;
}
.global-footer .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.global-footer .footer-col h3 {
    font-family: var(--font-display, 'Montserrat', sans-serif);
    font-size: 1.1rem;
    color: #050505;
    margin: 0 0 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.global-footer .footer-col p {
    font-size: .9rem;
    line-height: 1.6;
    margin: 0 0 .5rem;
    color: #444;
    font-weight: 400;
}
.global-footer .footer-col a {
    color: #111;
    font-weight: 600;
    text-decoration: none;
    transition: opacity .3s ease;
}
.global-footer .footer-col a:hover { opacity: .7; }
.global-footer .verify-link {
    display: inline-block;
    color: #111;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color .3s ease;
}
.global-footer .verify-link:hover { border-bottom-color: #111; }
.global-footer .legal-note { font-size: .9rem; margin-top: 0; }
.global-footer .copyright-bar {
    border-top: 1px solid rgba(0,0,0,.1);
    padding-top: 2rem;
    text-align: center;
    font-weight: 700;
    color: #555;
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}
@media (min-width: 768px) {
    .global-footer .footer-grid { grid-template-columns: repeat(3,1fr); }
}
/* Universal direct-contact control */
.global-whatsapp-contact {
    position: fixed;
    right: clamp(1rem, 2.2vw, 2rem);
    bottom: clamp(1rem, 2.2vw, 2rem);
    z-index: 950;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.55rem;
    height: 3.55rem;
    padding: .45rem;
    border: 1px solid rgba(0, 151, 178, .35);
    border-radius: 999px;
    background: linear-gradient(135deg, #67e8f9, #22d3ee);
    color: #05252b;
    box-shadow: 0 14px 38px rgba(8, 145, 178, .24), 0 4px 14px rgba(0, 0, 0, .1);
    font-family: var(--font-display, 'Montserrat', sans-serif);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-tap-highlight-color: transparent;
    transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, background .3s ease;
}
.global-whatsapp-contact:hover,
.global-whatsapp-contact:focus-visible {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #a5f3fc, #22d3ee);
    box-shadow: 0 18px 44px rgba(8, 145, 178, .32), 0 6px 18px rgba(0, 0, 0, .12);
}
.global-whatsapp-contact:focus-visible {
    outline: 2px solid #0891b2;
    outline-offset: 3px;
}
.global-whatsapp-icon {
    display: grid;
    width: 2.4rem;
    height: 2.4rem;
    flex: 0 0 2.4rem;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .82);
}
.global-whatsapp-icon svg {
    width: 1.45rem;
    height: 1.45rem;
    fill: currentColor;
}
@media (max-width: 480px) {
    .global-whatsapp-contact {
        right: .85rem;
        bottom: .85rem;
        width: 3.2rem;
        height: 3.2rem;
        padding: .38rem;
    }
    .global-whatsapp-icon {
        width: 2.2rem;
        height: 2.2rem;
        flex-basis: 2.2rem;
    }
}
@media (prefers-reduced-motion: reduce) {
    .global-whatsapp-contact { transition: none; }
}