/* FOOTER STYLES PREMIUM */
.main-footer {
    background-color: #000000;
    color: #fff;
    padding: 80px 0 0 0;
    border-top: 1px solid #111;
    font-family: 'Geist', sans-serif;
    width: 100%;
    margin-top: 100px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 0.8fr 0.8fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* BRAND COLUMN */
.footer-logo {
    margin-bottom: 20px;
}

.footer-tagline {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 300px;
}

/* SOCIALS */
.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #111;
    border: 1px solid #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-3px);
}

/* CONTACT LINK ANIMATION */
.contact-email-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
    padding-bottom: 2px;
    display: inline-block;
}

.contact-email-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transition: width 0.3s ease;
}

.contact-email-link:hover {
    color: #fff;
}

.contact-email-link:hover::after {
    width: 100%;
}

/* LINKS COLUMNS */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #eee;
    font-weight: 500;
    text-decoration: none;
    font-size: 1.05rem;
    transition: all 0.2s ease;
    position: relative;
    padding-bottom: 4px;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links a:hover::after {
    width: 100%;
}

.link-highlight {
    color: #38bdf8 !important;
    font-weight: 700;
}

/* BOTTOM BAR */
.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 24px;
    border-top: 1px solid #141414;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #444;
}

.f-bottom-center {
    color: #666;
}

.payment-icons {
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 1.4rem;
    color: #555;
}

.badge-yape {
    background: transparent;
    color: #555;
    border: 1px solid #555;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

/* RESPONSIVE FULL LINE (LINEA ENTERA) */
@media (max-width: 900px) {
    .main-footer {
        padding-top: 50px;
        margin-top: 60px;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 50px;
        padding: 0 40px;
    }

    .footer-col {
        width: 100%;
    }

    .footer-links li {
        margin-bottom: 18px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        padding: 40px 24px 140px 24px;
        /* Space for player */
    }

    .f-bottom-right {
        order: -1;
        justify-content: center;
    }
}