
:root {
    /* Dark navy palette */
    --navy-deepest: #060A14;
    --navy-deep: #0A0E1A;
    --navy-mid: #0F1629;
    --navy-surface: #141D35;
    --navy-elevated: #1A2440;
    --navy-border: rgba(255, 255, 255, 0.08);
    --navy-border-bright: rgba(255, 255, 255, 0.14);

    /* Pitch-style blue accent */
    --blue: #2563EB;
    --blue-bright: #3B7BFF;
    --blue-glow: rgba(37, 99, 235, 0.35);
    --blue-faint: rgba(37, 99, 235, 0.1);

    /* White section */
    --white: #ffffff;
    --off-white: #F7F8FC;
    --ink: #0A0E1A;
    --ink-mid: #1E2840;
    --ink-soft: #4A5578;
    --muted: #8892AA;
    --border-light: #E4E8F0;
    --border-blue: #BFCFFF;

    /* Gold accent */
    --gold: #F5C842;
    --gold-dim: rgba(245, 200, 66, 0.15);
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
    background: var(--navy-deepest);
    padding: 72px 48px 44px;
    border-top: 1px solid var(--navy-border);
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 52px;
    border-bottom: 1px solid var(--navy-border);
    margin-bottom: 32px;
}

.footer-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.75;
    max-width: 250px;
    margin: 14px 0 24px;
    letter-spacing: -0.1px;
}

.footer-socials {
    display: flex;
    gap: 7px;
    gap: 12px;
}

.footer-social {
    width: 33px;
    height: 33px;
    border-radius: 8px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.footer-social svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.footer-social:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.15);
    border-color: transparent;
    transform: translateY(-4px);
}

.footer-social:hover svg {
    transform: scale(1.15);
}

/* Brand-specific Glow Effects */
.footer-social.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 8px 24px rgba(225, 48, 108, 0.4);
}

.footer-social.whatsapp:hover {
    background: #25D366;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.footer-social.youtube:hover {
    background: #FF0000;
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.4);
}

.footer-social.facebook:hover {
    background: #1877F2;
    box-shadow: 0 8px 24px rgba(24, 119, 242, 0.4);
}

.footer-col-title {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 16px;
}

.footer-col-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col-link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.18s;
    letter-spacing: -0.1px;
}

.footer-col-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-green {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
}


/* ═══════════════════════════════════════
   MOBILE
═══════════════════════════════════════ */
@media (max-width: 768px) {

    footer {
        overflow-x: hidden !important;
        max-width: 100vw;
    }

    /* ── FOOTER ── */
    footer {
        padding: 48px 20px 32px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}
