/* ================= FOOTER MINIMALISTA ================= */
.main-footer {
    background-color: #1e1f23;
    padding: 40px 30px 30px;
    border-top: 1px solid #2a2b30;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ================= PARTE SUPERIOR ================= */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #2a2b30;
}

.footer-left {
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 6px;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-btn i {
    font-size: 16px;
}

.footer-btn-discord {
    background-color: #5865f2;
    color: white;
}

.footer-btn-discord:hover {
    background-color: #4752c4;
    transform: translateY(-2px);
}

.footer-btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.footer-btn-instagram:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(188, 24, 136, 0.4);
}

.footer-btn-tiktok {
    background-color: #000000;
    color: white;
}

.footer-btn-tiktok:hover {
    color: white;
    background-color: #1a1a1a;
    transform: translateY(-2px);
}

.footer-btn-community {
    background-color: #2a2b30;
    color: var(--text-white);
}

.footer-btn-community:hover {
    background-color: #33353d;
    transform: translateY(-2px);
}

/* ================= PARTE INFERIOR ================= */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    gap: 20px;
}

.footer-bottom-left {
    flex: 1;
}

.footer-copyright {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #4a4b50;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-separator {
    color: #2a2b30;
}

.footer-email {
    color: #4a4b50;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: var(--text-white);
}

.footer-email i {
    font-size: 12px;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-links a {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 12px;
    color: #4a4b50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-white);
}

.footer-partner {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-partner span {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 11px;
    color: #4a4b50;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partner-logo {
    height: 24px;
    width: auto;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .footer-bottom-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 30px 15px 25px;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 20px;
        padding-bottom: 25px;
    }
    
    .footer-left {
        width: 100%;
        justify-content: center;
    }
    
    .footer-right {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-btn {
        flex: 1;
        min-width: 150px;
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .footer-bottom-left {
        width: 100%;
    }
    
    .footer-copyright {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .footer-separator {
        display: none;
    }
    
    .footer-bottom-right {
        width: 100%;
        align-items: center;
        gap: 15px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-partner {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-right {
        flex-direction: column;
        width: 100%;
    }
    
    .footer-btn {
        width: 100%;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}