/* ===== SOCIAL FLOAT ===== */
.social-float {
    position: fixed;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.social-float a {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
}
.social-float a:hover { transform: scale(1.18) translateX(4px); }
.social-float a.facebook  { background: #1877f2; }
.social-float a.instagram { background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af); }
.social-float a.tiktok    { background: #111; }
.social-float a.whatsapp  { background: #25d366; }

@media (max-width: 768px) {
    .social-float {
        flex-direction: row;
        left: 50%;
        top: auto;
        bottom: 14px;
        transform: translateX(-50%);
    }
}

/* ===== NAV DOTS ===== */
.nav-dots {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.nav-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,123,0,0.25);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}
.nav-dot:hover, .nav-dot.active {
    background: var(--orange);
    border-color: #fff;
    box-shadow: 0 0 8px rgba(255,123,0,0.5);
    transform: scale(1.4);
}
@media (max-width: 968px) { .nav-dots { display: none; } }

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(160deg, #0f0f1a 0%, #1c0a30 100%);
    padding: 52px 20px 32px;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}
.footer-logo {
    margin-bottom: 22px;
}
.footer-logo img {
    height: 56px;
    width: auto;
    filter: brightness(1.1) drop-shadow(0 4px 14px rgba(255,123,0,0.3));
}
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}
.footer-socials a {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    color: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.footer-socials a:hover { transform: translateY(-4px) scale(1.12); }
.footer-socials a.facebook  { background: #1877f2; box-shadow: 0 4px 14px rgba(24,119,242,0.4); }
.footer-socials a.instagram { background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af); box-shadow: 0 4px 14px rgba(221,42,123,0.4); }
.footer-socials a.tiktok    { background: #111; box-shadow: 0 4px 14px rgba(0,0,0,0.4); }
.footer-socials a.whatsapp  { background: #25d366; box-shadow: 0 4px 14px rgba(37,211,102,0.4); }
.footer-divider {
    width: 50px; height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--purple));
    border-radius: 2px;
    margin: 0 auto 20px;
}
.footer-copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}
