#qreative-footer {
    background: #0f172a; /* Azul noche profundo */
    color: #f8fafc;
    padding-top: 80px;
    font-family: 'Inter', sans-serif;
}


.cap-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.footer-logo span {
    color: #38bdf8; /* Color acento celeste/cian */
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.6;
    max-width: 350px;
}

.footer-links h4, .footer-services h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #38bdf8;
}

.footer-links ul, .footer-services ul {
    list-style: none;
    padding: 0;
}

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

.footer-links a, .footer-services a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover, .footer-services a:hover {
    color: #f8fafc;
    padding-left: 5px;
}

/* Redes Sociales */
.social-links-modern {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links-modern a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #f8fafc;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links-modern a:hover {
    background: #38bdf8;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(56, 189, 248, 0.2);
}

/* Bottom Bar */
.footer-bottom {
    background: #0b1120;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: #64748b;
}

.footer-legal a {
    margin-left: 20px;
    color: #64748b;
    text-decoration: none;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand p { margin: 0 auto; }
    .social-links-modern { justify-content: center; }
}