: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-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    color: var(--cd-dark);
}

.cd-footer-text {
    font-size: 0.9rem;
    color: var(--cd-muted);
    max-width: 320px;
    margin-top: 0.7rem;
}

.cd-footer-links {
    list-style: none;
    margin: 0;       
    padding: 0;       
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    text-decoration: none;
    font-size: 0.9rem;
    color: var(--cd-muted);
    transition: color .2s ease, transform .15s ease;
}


.cd-footer-links a {
    text-decoration: none;
    font-size: 0.9rem;
    color: var(--cd-muted);
    transition: color .2s ease, transform .15s ease;
}

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

.cd-footer-social {
    display: flex;
    gap: 0.6rem;
}

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

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

.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: 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;
    }

}


