.so-rodape {
    padding: 80px 0 30px;
    background:
        radial-gradient(circle at 12% 12%, rgba(255, 138, 0, 0.10), transparent 28%),
        var(--so-azul-profundo);
    color: var(--so-branco);
}

.so-rodape__topo {
    display: grid;
    grid-template-columns: 220px minmax(180px, 1fr) minmax(180px, 1fr) minmax(180px, 1fr);
    gap: 44px;
    align-items: start;
}

.so-rodape__marca {
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.so-rodape__marca a:not(.so-botao):not(.so-rodape__logo-link) {
    color: var(--so-branco);
    font-size: 30px;
    font-weight: 750;
    line-height: 1;
    letter-spacing: -0.035em;
    text-decoration: none;
}

.so-rodape__logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-decoration: none;
}

.so-rodape__logo {
    display: block;
    width: 100%;
    max-width: 150px;
    max-height: 150px;
    height: auto;
    object-fit: contain;
}

.so-rodape__marca p {
    max-width: 220px;
    margin: 18px 0 24px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.72;
}

.so-rodape__coluna strong {
    display: block;
    margin-bottom: 18px;
    color: var(--so-branco);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.so-rodape__coluna nav {
    display: grid;
    gap: 11px;
}

.so-rodape__coluna nav a,
.so-rodape__contato a,
.so-rodape__credito-nome {
    color: rgba(255, 255, 255, 0.70);
    font-size: 14px;
    line-height: 1.35;
    text-decoration: none;
    transition: color 0.2s ease;
}

.so-rodape__coluna nav a:hover,
.so-rodape__contato a:hover,
.so-rodape__credito-nome:hover {
    color: var(--so-laranja);
}

.so-rodape__contato,
.so-rodape__regiao {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.70);
    font-size: 14px;
    line-height: 1.6;
}

.so-rodape__base {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.so-rodape__base p {
    margin: 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 13px;
    line-height: 1.5;
}

.so-rodape__base-esquerda {
    display: flex;
    align-items: center;
}

.so-rodape__base-direita {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.so-rodape__credito {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
}

.so-rodape__credito-texto {
    margin: 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 13px;
    line-height: 1.4;
    white-space: nowrap;
}

.so-rodape__credito-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 0;
}

.so-rodape__credito-logo {
    display: block;
    width: auto;
    height: 50px;
    max-width: 150px;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .so-rodape__topo {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .so-rodape__marca {
        max-width: none;
        align-items: flex-start;
        text-align: left;
    }

    .so-rodape__logo-link {
        justify-content: flex-start;
    }
}

@media (max-width: 700px) {
    .so-rodape {
        padding: 64px 0 28px;
    }

    .so-rodape__topo {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .so-rodape__marca {
        max-width: none;
        align-items: center;
        text-align: center;
    }

    .so-rodape__logo-link {
        justify-content: center;
    }

    .so-rodape__base {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-top: 42px;
        text-align: center;
    }

    .so-rodape__base-esquerda,
    .so-rodape__base-direita {
        justify-content: center;
        width: 100%;
    }

    .so-rodape__credito {
        flex-direction: column;
        gap: 10px;
    }

    .so-rodape__credito-texto {
        white-space: normal;
    }

    .so-rodape__logo {
        max-width: 140px;
        max-height: 140px;
    }

    .so-rodape__credito-logo {
        height: 42px;
        max-width: 130px;
    }

    .so-rodape .so-botao {
        width: 100%;
    }
}