/* ============================
   FOOTER PREMIUM
============================ */

.site-footer {
    background:
        radial-gradient(circle at top center, rgba(212, 175, 55, 0.06), transparent 34%),
        linear-gradient(to top, #050505 0%, #0d0d10 48%, #17171b 100%);
    color: #ffffff;
    padding: 32px 6%;
    border-top: 1px solid rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.site-footer::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    top: -120px;
    right: -80px;
    background: radial-gradient(circle, rgba(212,175,55,0.08), transparent 70%);
    pointer-events: none;
}

.site-footer-wrap {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.site-footer-main {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.site-footer-copy {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.2px;
}

.site-footer-text {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.72);
}

.site-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    align-items: center;
    justify-content: flex-end;
}

.site-footer-links a {
    color: #f0cf65;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    transition: color 0.3s ease, transform 0.3s ease;
}

.site-footer-links a:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

/* ============================
   BOTÓN FLOTANTE WHATSAPP
============================ */

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 12px 28px rgba(37, 211, 102, 0.28),
        0 0 18px rgba(37, 211, 102, 0.18);
    z-index: 9999;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        filter 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow:
        0 18px 34px rgba(37, 211, 102, 0.36),
        0 0 24px rgba(37, 211, 102, 0.24);
    filter: brightness(1.03);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: #ffffff;
    display: block;
}

/* ============================
   RESPONSIVE
============================ */

@media (max-width: 768px) {
    .site-footer {
        padding: 28px 6%;
        margin-top: 40px;
    }

    .site-footer-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .site-footer-links {
        justify-content: flex-start;
        gap: 10px 14px;
    }

    .site-footer-copy {
        font-size: 0.92rem;
    }

    .site-footer-text {
        font-size: 0.88rem;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        right: 14px;
        bottom: 14px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}