:root {
    --corCinza: #ccc;
    --corBranca: #fff;
    --corPreta: #000;
    --valorMax: 100%;
    --valor85: 85%;
    --font0-9: .9em;
    --font1-2: 1.2em;
    --fontIconsRedes: 1.5em;
    --corRyze: cyan;
}

.cd-footer {
    background: var(--cd-white);
    padding: 2.8rem 0 1.4rem;
    color: var(--cd-dark);
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.cd-footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.cd-footer-col {
    min-width: 0;
}

.cd-footer {
    flex-shrink: 0;
    margin-top: auto;
}

.cd-footer-brand .cd-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.cd-logo-main {
    color: var(--cd-dark);
    font-size: 1.06rem;
    font-weight: 800;
    letter-spacing: .14em;
}

.cd-logo-sub {
    color: var(--cd-primary);
    font-weight: 800;
}

.grupo {
    color: var(--corRyze);
    font-weight: 700;
}

.cd-footer-text {
    max-width: 360px;
    margin: 0;
    color: var(--cd-muted);
    font-size: .87rem;
    line-height: 1.75;
}

.cd-footer-title {
    margin: 0 0 18px;
    color: var(--cd-dark);
    font-size: .78rem;
    font-weight: 750;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.cd-footer-links {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cd-footer-links li,
.cd-footer-links a {
    color: var(--cd-muted);
    font-size: .84rem;
    line-height: 1.55;
}

.cd-footer-links li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.cd-footer-links a {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    transition: color .2s ease, transform .2s ease;
}

.cd-footer-links a:hover {
    color: var(--cd-primary);
    transform: translateX(3px);
}

.cd-footer-links i {
    flex: 0 0 auto;
    margin-top: 2px;
    color: var(--cd-primary);
    font-size: 1rem;
}

.cd-footer-bottom {
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    margin-top: 2.2rem;
    padding-top: 0.9rem;
}

.cd-footer-bottom-inner {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--cd-muted);
}


.cd-footer-bottom-inner a {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--cd-white);
    color: var(--cd-dark);
    text-decoration: none;
    transition: background .2s ease, transform .15s ease, border-color .2s ease, color .2s ease;
}

.cd-footer-bottom-inner a i {
    font-size: var(--fontIconsRedes);
}

.cd-footer-bottom-inner a:hover {
    border-color: var(--cd-primary);
    color: var(--cd-primary);
    transform: translateY(-2px);
}

.cd-footer-bottom-inner span:last-child {
    margin-left: auto;
    opacity: 0.9;
}

.grupo {
    color: var(--corRyze);
    font-weight: 700;
}

@media (max-width: 1099.98px) {
    .cd-footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px 50px;
    }
}

@media (max-width: 767.98px) {

    .cd-footer-inner {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .cd-footer-col {
        width: 100%;
        border-bottom: 1px solid rgba(148, 163, 184, 0.3);
        padding: 0.6rem 0;
    }

    .cd-footer-title {
        margin: 0;
        padding: 0.6rem 0;
        font-size: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

    .cd-footer-title::after {
        content: "\f107";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 0.75rem;
        transition: transform 0.2s ease;
    }

    .cd-footer-title[aria-expanded="true"]::after {
        transform: rotate(180deg);
    }

    .cd-footer-links {
        padding: 0.4rem 0 0.6rem 0;
    }

    .cd-footer-links li {
        padding: 0.25rem 0;
    }

    .cd-footer-links li a {
        width: 100%;
        display: block;
    }

    .cd-footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

}