footer {
    background: #0d0d0d;
    color: #aaa;
    text-align: center;
    padding: 30px;
    font-size: 14px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    text-align: left;
}

.footer-logo img {
    max-width: 180px;
}

.marcas {
    display: flex;
    gap: 40px;
    margin-top: 15px;
}

.marcas a, .recursos-list a {
    color: #aaa;
    text-decoration: none;
    transition: 0.2s;
}

.marcas a:hover, .recursos-list a:hover {
    color: #00a6ff;
}

.social-links {
    display: flex;
    gap: 18px;
    margin-top: 15px;
}

.social-links a {
    color: white;
    background: #1e293b;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.social-links a:hover {
    background: #00a6ff;
    transform: translateY(-3px);
}
