/* Footer Profesional para FoodCash */
:root {
    --footer-bg: #0a1526;
    --footer-text: #94a3b8;
    --footer-heading: #ffffff;
    --footer-accent: #48bb78;
    --footer-border: rgba(255, 255, 255, 0.1);
}

.main-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 80px 0 40px;
    font-family: 'Inter', sans-serif;
}

.footer-top {
    margin-bottom: 60px;
}

.footer-logo-section {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: white;
    text-decoration: none !important;
    font-weight: 800;
    font-size: 1.5rem;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.social-link:hover {
    background: var(--footer-accent);
    transform: translateY(-3px);
    color: white;
}

.footer-heading {
    color: var(--footer-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--footer-accent);
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links-list a {
    color: var(--footer-text);
    text-decoration: none !important;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links-list a:hover {
    color: var(--footer-accent);
    padding-left: 5px;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-contact-info i {
    color: var(--footer-accent);
    margin-top: 5px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--footer-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 0.9rem;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: var(--footer-text);
    font-size: 0.85rem;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: white;
}

/* Legal Pages Styling */
.legal-page-content {
    padding: 120px 0 80px;
    min-height: 60vh;
}

.legal-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 40px;
}

.legal-card h1 {
    color: #1a365d;
    font-weight: 800;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.legal-card h2 {
    color: #224c6a;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.legal-card p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-card ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-card li {
    color: #4a5568;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .main-footer {
        padding: 60px 0 30px;
        text-align: center;
    }
    
    .footer-logo-section {
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-socials {
        justify-content: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal-links {
        justify-content: center;
    }
}
