/* ==========================================================================
   ARANOX — RODAPÉ INSTITUCIONAL
   AW2_031
   ========================================================================== */

.site-footer {
    background: var(--aranox-navy);
    color: rgba(255, 255, 255, 0.82);
}

.site-footer a {
    color: inherit;
}

.footer-main {
    padding: 0;
}

/* Primeira faixa
   ========================================================================== */

.footer-primary-grid {
    display: grid;
    grid-template-columns:
        minmax(340px, 1.65fr)
        minmax(190px, 0.75fr)
        minmax(220px, 0.9fr)
        minmax(220px, 0.9fr);
    gap: clamp(34px, 4vw, 72px);
    align-items: start;
    padding-top: 72px;
    padding-bottom: 58px;
}

.footer-primary-grid h2,
.footer-navigation__group h2 {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-brand {
    display: grid;
    grid-template-columns: minmax(190px, 260px) minmax(220px, 1fr);
    gap: 30px;
    align-items: start;
}

.footer-brand__logo-link {
    display: inline-flex;
    width: fit-content;
    text-decoration: none;
}

.footer-brand__logo {
    display: block;
    width: 100%;
    max-width: 260px;
    height: auto;
}

.footer-brand__philosophy {
    max-width: 470px;
}

.footer-brand__philosophy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1rem;
    line-height: 1.72;
}

.footer-whatsapp__link {
    display: flex;
    align-items: center;
    gap: 15px;
    width: fit-content;
    color: #ffffff;
    text-decoration: none;
    transition:
        opacity 180ms ease,
        transform 180ms ease;
}

.footer-whatsapp__link:hover,
.footer-whatsapp__link:focus-visible {
    opacity: 0.82;
    transform: translateY(-2px);
}

.footer-whatsapp__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    color: #ffffff;
}

.footer-whatsapp__icon svg {
    width: 28px;
    height: 28px;
}

.footer-whatsapp__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-whatsapp__content strong {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.footer-whatsapp__content small {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.78rem;
    line-height: 1.4;
}

.footer-contact__list,
.footer-navigation__group ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-contact__list {
    display: grid;
    gap: 13px;
}

.footer-contact__list a {
    display: inline-block;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.5;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.footer-contact__list a:hover,
.footer-contact__list a:focus-visible {
    color: #ffffff;
}

.footer-headquarters address {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.96rem;
    font-style: normal;
    line-height: 1.62;
}

/* Navegação agrupada
   ========================================================================== */

.footer-navigation {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-navigation__grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: clamp(24px, 3vw, 52px);
    padding-top: 48px;
    padding-bottom: 52px;
}

.footer-navigation__group ul {
    display: grid;
    gap: 11px;
}

.footer-navigation__group a {
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.86rem;
    line-height: 1.48;
    text-decoration: none;
    transition:
        color 160ms ease,
        transform 160ms ease;
}

.footer-navigation__group a:hover,
.footer-navigation__group a:focus-visible {
    color: #ffffff;
    transform: translateX(3px);
}

/* Faixa inferior
   ========================================================================== */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.08);
}

.footer-bottom__inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    font-size: 0.78rem;
}

.footer-bottom__copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
}

.footer-bottom__navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-bottom__navigation a {
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
}

.footer-bottom__navigation a:hover,
.footer-bottom__navigation a:focus-visible {
    color: #ffffff;
}

/* Tablets
   ========================================================================== */

@media (max-width: 1280px) {
    .footer-primary-grid {
        grid-template-columns: minmax(320px, 1.4fr) repeat(3, minmax(180px, 1fr));
        gap: 38px;
    }

    .footer-brand {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-navigation__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        row-gap: 42px;
    }
}

@media (max-width: 980px) {
    .footer-primary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand {
        grid-column: 1 / -1;
        grid-template-columns: minmax(220px, 280px) minmax(260px, 1fr);
    }

    .footer-navigation__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Celulares
   ========================================================================== */

@media (max-width: 720px) {
    .footer-primary-grid {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-top: 52px;
        padding-bottom: 44px;
    }

    .footer-brand {
        grid-column: auto;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-brand__logo {
        max-width: 230px;
    }

    .footer-brand__philosophy {
        max-width: none;
    }

    .footer-navigation__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px 26px;
        padding-top: 42px;
        padding-bottom: 46px;
    }

    .footer-bottom__inner {
        min-height: auto;
        align-items: flex-start;
        flex-direction: column;
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .footer-bottom__navigation {
        justify-content: flex-start;
        gap: 14px 22px;
    }
}

@media (max-width: 460px) {
    .footer-navigation__grid {
        grid-template-columns: 1fr;
    }

    .footer-whatsapp__link {
        width: 100%;
    }

    .footer-bottom__navigation {
        display: grid;
        grid-template-columns: 1fr;
    }
}

/* Movimento reduzido
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    .footer-whatsapp__link,
    .footer-navigation__group a {
        transition: none;
    }

    .footer-whatsapp__link:hover,
    .footer-whatsapp__link:focus-visible,
    .footer-navigation__group a:hover,
    .footer-navigation__group a:focus-visible {
        transform: none;
    }
}

/* ARANOX-AW2-031-FOOTER-CSS-END */

/* AW2_032: INICIO RODAPE FINAL */

/*
 * Rodapé institucional ARANOX
 * Estado: finalizado e congelado
 */

.site-footer,
.aranox-footer {
    overflow: hidden;
}

.footer-primary-grid {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(170px, .9fr) minmax(185px, 1fr) minmax(185px, 1fr);
    column-gap: clamp(32px, 4vw, 72px);
    row-gap: 32px;
    align-items: start;
}

.footer-brand,
.footer-identity {
    min-width: 0;
}

.footer-brand img,
.footer-identity img {
    display: block;
    width: auto;
    max-width: min(100%, 310px);
    max-height: 86px;
    object-fit: contain;
    object-position: left center;
    filter: brightness(0) invert(1);
    margin: 0 0 22px;
}

.footer-brand p,
.footer-brand__description,
.footer-identity p {
    max-width: 520px;
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: .005em;
    opacity: .82;
}

.footer-primary-grid h2,
.footer-primary-grid h3,
.footer-primary-grid h4 {
    margin-top: 0;
}

.footer-whatsapp {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.footer-whatsapp__icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-top: 1px;
}

.footer-whatsapp__icon svg {
    display: block;
    width: 29px;
    height: 29px;
}

.footer-whatsapp__content {
    min-width: 0;
}

.footer-whatsapp__content a,
.footer-contact a {
    text-decoration: none;
}

.footer-whatsapp__content a:hover,
.footer-contact a:hover,
.footer-navigation__group a:hover,
.footer-legal a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-contact,
.footer-headquarters,
.footer-whatsapp {
    padding-top: 2px;
}

.footer-navigation {
    margin-top: clamp(42px, 5vw, 72px);
    padding-top: clamp(38px, 4vw, 58px);
}

.footer-navigation__grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 32px clamp(20px, 2.5vw, 44px);
    align-items: start;
}

.footer-navigation__group {
    min-width: 0;
}

.footer-navigation__group h2,
.footer-navigation__group h3,
.footer-navigation__group h4,
.footer-navigation__title {
    margin: 0 0 17px;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 650;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.footer-navigation__group ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-navigation__group li {
    margin: 0 0 10px;
    padding: 0;
    line-height: 1.45;
}

.footer-navigation__group a {
    display: inline;
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
    opacity: .82;
    transition: opacity .2s ease;
}

.footer-navigation__group a:hover,
.footer-navigation__group a:focus-visible {
    opacity: 1;
}

.footer-bottom {
    margin-top: clamp(38px, 4vw, 58px);
    padding-top: 24px;
    padding-bottom: 25px;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: rgba(255, 255, 255, .12);
}

.footer-bottom__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px 40px;
}

.footer-copyright {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    opacity: .72;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 10px 28px;
}

.footer-legal a {
    font-size: 12px;
    line-height: 1.5;
    text-decoration: none;
    opacity: .76;
    transition: opacity .2s ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
    opacity: 1;
}

@media (max-width: 1180px) {
    .footer-primary-grid {
        grid-template-columns: minmax(0, 1.8fr) repeat(3, minmax(155px, 1fr));
        column-gap: 32px;
    }

    .footer-navigation__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .footer-primary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand,
    .footer-identity {
        grid-column: 1 / -1;
    }

    .footer-brand p,
    .footer-brand__description,
    .footer-identity p {
        max-width: 680px;
    }

    .footer-navigation__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .footer-primary-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand,
    .footer-identity {
        grid-column: auto;
    }

    .footer-brand img,
    .footer-identity img {
        max-width: 260px;
        max-height: 76px;
    }

    .footer-navigation {
        margin-top: 38px;
        padding-top: 34px;
    }

    .footer-navigation__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 24px;
    }

    .footer-bottom__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-legal {
        justify-content: flex-start;
        gap: 12px 22px;
    }
}

@media (max-width: 430px) {
    .footer-navigation__grid {
        grid-template-columns: 1fr;
    }
}

/* AW2_032: FIM RODAPE FINAL */

/* AW2_035: INICIO PRIMEIRA FAIXA */

/*
 * Marca ARANOX
 * Logotipo acima e filosofia abaixo.
 */

.footer-brand {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 0 !important;
}

.footer-brand__logo-link {
    display: block !important;
    width: auto !important;
    margin: 0 0 22px !important;
}

.footer-brand__logo {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-width: min(100%, 300px) !important;
    margin: 0 !important;
}

.footer-brand__philosophy {
    display: block !important;
    width: 100% !important;
    max-width: 440px !important;
    margin: 0 !important;
}

.footer-brand__philosophy p {
    display: block !important;
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    font-weight: 400 !important;
}

/*
 * WhatsApp
 * Título acima.
 * Ícone, número e atendimento abaixo.
 */

.footer-whatsapp {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 18px !important;
}

.footer-whatsapp h2 {
    width: 100% !important;
    margin: 0 !important;
}

.footer-whatsapp__link {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 14px !important;
    width: 100% !important;
    text-decoration: none !important;
}

.footer-whatsapp__icon {
    display: inline-flex !important;
    flex: 0 0 42px !important;
    width: 42px !important;
    height: 42px !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
}

.footer-whatsapp__icon svg {
    display: block !important;
    width: 29px !important;
    height: 29px !important;
}

.footer-whatsapp__content {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    min-width: 0 !important;
    margin: 0 !important;
}

.footer-whatsapp__content strong {
    display: block !important;
    white-space: nowrap !important;
    font-size: 16px !important;
    line-height: 1.35 !important;
}

.footer-whatsapp__content small {
    display: block !important;
    margin-top: 5px !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
}

/*
 * Presença institucional
 */

.footer-presence {
    display: block;
    max-width: 240px;
}

.footer-presence p {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.65;
}

.footer-presence p:last-child {
    margin-bottom: 0;
}

/*
 * Responsividade
 */

@media (max-width: 1180px) {
    .footer-whatsapp__content strong {
        white-space: normal !important;
    }
}

@media (max-width: 900px) {
    .footer-brand__philosophy {
        max-width: 620px !important;
    }
}

@media (max-width: 680px) {
    .footer-brand__logo {
        max-width: 260px !important;
    }

    .footer-whatsapp__content strong {
        white-space: nowrap !important;
    }
}

/* AW2_035: FIM PRIMEIRA FAIXA */

/* AW2_036: INICIO ORGANIZACAO FINAL DO RODAPE */

/*
|--------------------------------------------------------------------------
| Primeira faixa
|--------------------------------------------------------------------------
*/

.footer-main > .footer-primary-grid {
    padding-top: clamp(52px, 5vw, 76px) !important;
    padding-bottom: clamp(40px, 4vw, 58px) !important;
}

.footer-primary-grid {
    align-items: start !important;
}

/*
|--------------------------------------------------------------------------
| Navegação principal
|--------------------------------------------------------------------------
*/

.footer-navigation {
    padding-top: clamp(38px, 4vw, 54px) !important;
    padding-bottom: clamp(42px, 4vw, 60px) !important;
}

.footer-navigation__grid {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    align-items: start !important;
    gap: 42px 32px !important;
}

.footer-navigation__group {
    min-width: 0 !important;
    align-self: start !important;
}

.footer-navigation__group h2 {
    margin: 0 0 20px !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
}

.footer-navigation__group ul {
    display: flex !important;
    flex-direction: column !important;
    gap: 11px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.footer-navigation__group li {
    margin: 0 !important;
    padding: 0 !important;
}

.footer-navigation__group a {
    display: inline-block !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    text-decoration: none !important;
}

.footer-navigation__group a:hover,
.footer-navigation__group a:focus-visible {
    text-decoration: underline !important;
    text-underline-offset: 4px !important;
}

/*
|--------------------------------------------------------------------------
| Barra inferior
|--------------------------------------------------------------------------
*/

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.14) !important;
    padding-top: 24px !important;
    padding-bottom: 24px !important;
}

.footer-bottom__inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 24px 40px !important;
}

.footer-bottom__copyright {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 6px 16px !important;
    margin: 0 !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
}

.footer-bottom__navigation {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 10px 22px !important;
}

.footer-bottom__navigation a {
    display: inline-block !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.footer-bottom__navigation a:hover,
.footer-bottom__navigation a:focus-visible {
    text-decoration: underline !important;
    text-underline-offset: 4px !important;
}

/*
|--------------------------------------------------------------------------
| Tablet
|--------------------------------------------------------------------------
*/

@media (max-width: 1100px) {
    .footer-navigation__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 42px 36px !important;
    }

    .footer-bottom__inner {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .footer-bottom__navigation {
        justify-content: flex-start !important;
    }
}

/*
|--------------------------------------------------------------------------
| Celular
|--------------------------------------------------------------------------
*/

@media (max-width: 680px) {
    .footer-main > .footer-primary-grid {
        padding-top: 44px !important;
        padding-bottom: 36px !important;
    }

    .footer-navigation {
        padding-top: 34px !important;
        padding-bottom: 42px !important;
    }

    .footer-navigation__grid {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 34px !important;
    }

    .footer-navigation__group h2 {
        margin-bottom: 16px !important;
    }

    .footer-navigation__group ul {
        gap: 10px !important;
    }

    .footer-bottom {
        padding-top: 22px !important;
        padding-bottom: 22px !important;
    }

    .footer-bottom__inner {
        gap: 20px !important;
    }

    .footer-bottom__copyright {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 4px !important;
    }

    .footer-bottom__navigation {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }
}

/* AW2_036: FIM ORGANIZACAO FINAL DO RODAPE */

/* AW2_036A: INICIO CORRECAO COMPACTA DO RODAPE */

/*
|--------------------------------------------------------------------------
| Remoção da barra inferior antiga duplicada
|--------------------------------------------------------------------------
|
| A barra oficial da AW2_036 está dentro de:
|
| .footer-main > .footer-bottom
|
| Os seletores abaixo atingem somente barras antigas localizadas diretamente
| no contêiner principal do site ou fora de .footer-main.
|
*/

.site-footer > .footer-bottom,
.site-footer > .footer-legal,
.site-footer > .footer-meta,
.site-footer > .footer-copyright,
.site-footer > .site-footer__bottom,
.aranox-footer > .footer-bottom,
.aranox-footer > .footer-legal,
.aranox-footer > .footer-meta,
footer.site-footer > .footer-bottom,
footer.site-footer > .footer-legal,
footer.site-footer > .footer-meta,
footer.site-footer > .site-footer__bottom {
    display: none !important;
}

/*
 * Garantia de exibição da barra oficial da AW2_036.
 */

.footer-main > .footer-bottom {
    display: block !important;
}

/*
|--------------------------------------------------------------------------
| Primeira faixa mais compacta
|--------------------------------------------------------------------------
*/

.footer-main > .footer-primary-grid {
    min-height: 0 !important;
    height: auto !important;
    padding-top: 56px !important;
    padding-bottom: 50px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.footer-primary-grid {
    min-height: 0 !important;
    align-items: start !important;
    row-gap: 32px !important;
}

.footer-brand,
.footer-whatsapp,
.footer-contact,
.footer-headquarters {
    min-height: 0 !important;
    height: auto !important;
    margin-bottom: 0 !important;
}

/*
|--------------------------------------------------------------------------
| Navegação mais estreita
|--------------------------------------------------------------------------
*/

.footer-navigation {
    min-height: 0 !important;
    height: auto !important;
    margin: 0 !important;
    padding-top: 42px !important;
    padding-bottom: 38px !important;
}

.footer-navigation__grid {
    min-height: 0 !important;
    height: auto !important;
    align-items: start !important;
    column-gap: 34px !important;
    row-gap: 28px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.footer-navigation__group {
    min-height: 0 !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

.footer-navigation__group h2 {
    margin-top: 0 !important;
    margin-bottom: 16px !important;
}

.footer-navigation__group ul {
    gap: 8px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.footer-navigation__group li {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.footer-navigation__group a {
    line-height: 1.45 !important;
}

/*
|--------------------------------------------------------------------------
| Remoção de alturas artificiais
|--------------------------------------------------------------------------
*/

.footer-main,
.footer-navigation,
.footer-navigation__grid,
.footer-navigation__group,
.footer-bottom,
.footer-bottom__inner {
    max-height: none !important;
}

.footer-navigation::before,
.footer-navigation::after,
.footer-bottom::before,
.footer-bottom::after {
    min-height: 0 !important;
}

/*
|--------------------------------------------------------------------------
| Barra inferior oficial mais compacta
|--------------------------------------------------------------------------
*/

.footer-main > .footer-bottom {
    min-height: 0 !important;
    height: auto !important;
    margin: 0 !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.footer-main > .footer-bottom .footer-bottom__inner {
    min-height: 0 !important;
    height: auto !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    gap: 18px 32px !important;
}

.footer-bottom__copyright {
    margin: 0 !important;
    padding: 0 !important;
}

.footer-bottom__navigation {
    margin: 0 !important;
    padding: 0 !important;
    gap: 8px 20px !important;
}

/*
|--------------------------------------------------------------------------
| Tablet
|--------------------------------------------------------------------------
*/

@media (max-width: 1100px) {
    .footer-main > .footer-primary-grid {
        padding-top: 48px !important;
        padding-bottom: 42px !important;
    }

    .footer-navigation {
        padding-top: 38px !important;
        padding-bottom: 34px !important;
    }

    .footer-navigation__grid {
        column-gap: 30px !important;
        row-gap: 32px !important;
    }

    .footer-main > .footer-bottom {
        padding-top: 18px !important;
        padding-bottom: 18px !important;
    }
}

/*
|--------------------------------------------------------------------------
| Celular
|--------------------------------------------------------------------------
*/

@media (max-width: 680px) {
    .footer-main > .footer-primary-grid {
        padding-top: 38px !important;
        padding-bottom: 34px !important;
    }

    .footer-navigation {
        padding-top: 32px !important;
        padding-bottom: 32px !important;
    }

    .footer-navigation__grid {
        row-gap: 28px !important;
    }

    .footer-navigation__group h2 {
        margin-bottom: 14px !important;
    }

    .footer-navigation__group ul {
        gap: 7px !important;
    }

    .footer-main > .footer-bottom {
        padding-top: 18px !important;
        padding-bottom: 18px !important;
    }

    .footer-bottom__inner {
        gap: 16px !important;
    }
}

/* AW2_036A: FIM CORRECAO COMPACTA DO RODAPE */

/* AW2_036B: INICIO COMPACTACAO FINAL */

/*
 * Redução definitiva dos espaços antes e depois
 * da navegação principal do rodapé.
 */

.footer-main > .footer-primary-grid {
    padding-bottom: 26px !important;
}

.footer-navigation {
    min-height: 0 !important;
    height: auto !important;
    padding-top: 26px !important;
    padding-bottom: 26px !important;
}

.footer-navigation__grid {
    min-height: 0 !important;
    height: auto !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    align-items: start !important;
}

.footer-navigation__group {
    min-height: 0 !important;
    height: auto !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.footer-navigation__group h2 {
    margin-top: 0 !important;
    margin-bottom: 14px !important;
}

.footer-navigation__group ul {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    gap: 8px !important;
}

.footer-main > .footer-bottom {
    min-height: 0 !important;
    height: auto !important;
    margin-top: 0 !important;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
}

.footer-bottom__inner {
    min-height: 0 !important;
    height: auto !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/*
 * Tablet
 */

@media (max-width: 1100px) {
    .footer-main > .footer-primary-grid {
        padding-bottom: 24px !important;
    }

    .footer-navigation {
        padding-top: 24px !important;
        padding-bottom: 24px !important;
    }

    .footer-main > .footer-bottom {
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }
}

/*
 * Celular
 */

@media (max-width: 680px) {
    .footer-main > .footer-primary-grid {
        padding-bottom: 22px !important;
    }

    .footer-navigation {
        padding-top: 22px !important;
        padding-bottom: 22px !important;
    }

    .footer-navigation__group h2 {
        margin-bottom: 12px !important;
    }

    .footer-main > .footer-bottom {
        padding-top: 14px !important;
        padding-bottom: 14px !important;
    }
}

/* AW2_036B: FIM COMPACTACAO FINAL */
