/* ===========================================
   COOKIE BANNER - BANCO BRADESCO
   =========================================== */

/* Banner de cookies */
.cookie-banner {
    background-color: rgba(0, 0, 0, 0.8);
    bottom: 0;
    left: 0;
    position: fixed;
    transition: all 0.3s ease-in-out;
    width: 100%;
    z-index: 99999;
}

.cookie-banner--hidden {
    display: none;
}

.cookie-banner__content {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: center;
    margin: 0 auto;
    padding: 15px;
}

.cookie-banner__description {
    color: #fff;
    margin-bottom: 15px;
    max-width: 430px;
    text-align: left;
    width: 100%;
}

.cookie-banner__text {
    font-size: 13px;
    line-height: normal;
    margin: 0;
}

.cookie-banner__link {
    color: #ffffff;
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.cookie-banner__btn,
.cookie-modal__btn {
    border: 1px solid #fff;
    border-radius: 30px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    min-height: 48px;
    padding: 8px 16px;
    transition: background-color 0.2s;
}

.cookie-banner__btn--rejeitar {
    background: transparent;
    width: 320px;
}

.cookie-banner__btn--configurar {
    background: transparent;
    width: 227px;
}

.cookie-banner__btn--aceitar {
    background-color: #e1173f;
    border-color: #e1173f;
    width: 201px;
}

/* Modal de cookies */
.cookie-modal__overlay {
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100000;
}

.cookie-modal__overlay,
.cookie-modal__overlay--active {
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal__overlay--active {
    display: flex;
}

.cookie-modal {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    height: auto;
    max-width: 800px;
    overflow-y: auto;
    padding: 32px;
    position: relative;
    transform: translateY(-100%);
    transition: transform 0.2s ease-in-out;
    width: 100%;
    will-change: transform;
}

.cookie-modal__overlay--active .cookie-modal {
    -webkit-animation: modal 0.7s;
    animation: modal 0.7s;
    display: flex;
    flex-direction: column;
    transform: translateY(0);
}

.cookie-modal__close {
    background: none;
    border: none;
    color: var(--brad-color-accent);
    cursor: pointer;
    font-size: 20px;
    position: absolute;
    right: 30px;
    top: 15px;
}

.cookie-modal__header {
    margin-bottom: 20px;
}

.cookie-modal__title {
    color: #333;
    font-size: 22px;
    margin: 13px 0;
}

.cookie-modal__description {
    color: #666;
    margin: 10px 0 30px;
}

.cookie-modal__content {
    border-radius: 4px;
    flex: 1;
    height: 100%;
    margin-bottom: 20px;
    max-height: 300px;
    overflow-y: auto;
}

.cookie-modal__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cookie-modal__item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.cookie-modal__item:last-child {
    border-bottom: none;
}

.cookie-modal__item-header {
    align-items: center;
    display: flex;
    padding: 15px;
}

.cookie-modal__checkbox {
    color: var(--brad-color-accent);
    margin-right: 10px;
}

.cookie-modal__toggle {
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    flex-grow: 1;
    font-size: 16px;
    font-weight: 700;
    position: relative;
    text-align: left;
}

.cookie-modal__toggle:after {
    border: solid var(--brad-color-accent);
    border-width: 0 2px 2px 0;
    content: " ";
    display: inline-block;
    padding: 3px;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
    transition: transform 0.3s ease;
}

.cookie-modal__toggle[aria-expanded="true"]:after {
    transform: translateY(-50%) rotate(45deg);
}

.cookie-modal__collapse {
    display: block;
    padding: 0 15px 15px 40px;
}

.cookie-modal__collapse-text {
    color: #666;
    font-size: 16px;
    margin: 0;
}

.cookie-modal__link {
    color: #0066cc;
    text-decoration: none;
}

.cookie-modal__footer-text {
    color: #666;
    font-size: 16px;
    margin: 30px 0;
}

.cookie-modal__actions {
    display: flex;
    gap: 15px;
    justify-content: start;
}

.cookie-modal__btn--salvar {
    background-color: #e1173f;
    border-color: #e1173f;
    color: #fff;
    width: 240px;
}

.cookie-modal__btn--rejeitar {
    background-color: transparent;
    border-color: #e1173f;
    color: #e1173f;
}

/* ===========================================
   MEDIA QUERIES - COOKIE BANNER
   =========================================== */
@media (max-width: 1340px) {
    .cookie-banner__actions {
        flex-wrap: wrap-reverse;
    }
    
    .cookie-banner__description {
        max-width: 400px;
        width: 100%;
    }
}

@media (max-width: 1017px) {
    .cookie-banner__actions {
        justify-content: start;
    }
}

@media (max-width: 768px) {
    .cookie-banner__content {
        flex-direction: column;
        justify-content: space-between;
    }
    
    .cookie-banner__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    
    .cookie-banner__description {
        flex: 1;
        margin-bottom: 0;
    }
    
    .cookie-modal {
        padding: 40px;
    }
}

@media (max-width: 600px) {
    .cookie-banner__content.component__container-content {
        width: calc(100% - 70px);
    }
    
    .cookie-banner__content {
        gap: 0;
    }
    
    .cookie-banner__text {
        text-align: center;
    }
    
    .cookie-banner__btn {
        width: 100%;
    }
    
    .cookie-banner__description {
        margin: 25px 0;
    }
    
    .cookie-banner__actions {
        flex-wrap: wrap-reverse;
    }
    
    .cookie-modal__overlay {
        flex-direction: column;
        justify-content: end;
        padding: 40px 0 0;
    }
    
    .cookie-modal {
        height: 100%;
        transform: translateY(-100%);
        transition: transform 0.4s ease-in-out;
        will-change: transform;
    }
    
    .cookie-modal__overlay--active .cookie-modal {
        transform: translateY(0);
    }
    
    .cookie-modal__actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-modal__content {
        min-height: 250px;
    }
    
    .cookie-modal__collapse {
        padding: 0 15px 15px 0;
    }
    
    .cookie-modal__btn {
        width: 100%;
    }
    
    .cookie-modal__link {
        word-break: break-word;
    }
}

/* ===========================================
   ANIMAÇÕES
   =========================================== */
@-webkit-keyframes modal {
    0% {
        opacity: 0;
        transform: translate3d(0, -200px, 0);
    }
    
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}

@keyframes modal {
    0% {
        opacity: 0;
        transform: translate3d(0, -200px, 0);
    }
    
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}

/* ===========================================
   FONTES BRADESCO
   =========================================== */
@font-face {
    font-display: swap;
    font-family: BradescoSans;
    font-style: normal;
    font-weight: 700;
    src: url(https://banco.bradesco/static/wcomp/header-footer-v2/assets/common/fonts/BradescoSans-Bold.woff2) format("woff2");
}

@font-face {
    font-display: swap;
    font-family: BradescoSans;
    font-style: normal;
    font-weight: 400;
    src: url(https://banco.bradesco/static/wcomp/header-footer-v2/assets/common/fonts/BradescoSans-Regular.woff2) format("woff2");
}

@font-face {
    font-display: swap;
    font-family: BradescoSans;
    font-style: normal;
    font-weight: 500;
    src: url(https://banco.bradesco/static/wcomp/header-footer-v2/assets/common/fonts/BradescoSans-Medium.woff2) format("woff2");
}

@font-face {
    font-display: swap;
    font-family: BradescoSans;
    font-style: normal;
    font-weight: 600;
    src: url(https://banco.bradesco/static/wcomp/header-footer-v2/assets/common/fonts/BradescoSans-SemiBold.woff2) format("woff2");
}

/* ===========================================
   RESET E ESTILOS GERAIS
   =========================================== */
* {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    outline: none;
    padding: 0;
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    font-family: BradescoSans, sans-serif;
}

:after,
:before {
    box-sizing: inherit;
    text-decoration: inherit;
    vertical-align: inherit;
}

hr {
    overflow: visible;
}

em {
    font-style: normal;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block;
}

summary {
    display: list-item;
}

button,
fieldset,
input,
select,
textarea {
    background-color: rgba(255, 255, 255, 0);
    border-style: none;
    color: inherit;
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
}

progress {
    vertical-align: baseline;
}

audio,
canvas,
progress,
video {
    display: inline-block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden] {
    display: none !important;
}

/* ===========================================
   COMPONENTES
   =========================================== */
.component__container-content {
    margin: 0 auto;
    width: calc(100% - 120px);
}

@media (max-width: 768px) {
    .component__container-content {
        width: 100%;
    }
    
    .hidden-mobile {
        display: none;
        opacity: 0;
        visibility: hidden;
    }
}

.screen-reader-only {
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    clip: rect(0, 0, 0, 0);
    border: 0;
    white-space: nowrap;
}

/* ===========================================
   VARIÁVEIS CSS
   =========================================== */
:root {
    --brad-current-theme: "brad-theme-classic";
    --brad-color-neutral-0: rgb(255, 255, 255);
    --brad-color-neutral-100: rgb(0, 0, 0);
    --brad-color-teste: rgb(1, 1, 1);
    --brad-color-primary: rgb(204, 9, 47);
    --brad-color-primary-light: rgb(214, 58, 89);
    --brad-color-primary-dark: rgb(157, 11, 33);
    --brad-color-primary-xlight: rgb(252, 231, 236);
    --brad-color-on-bg-primary: rgb(255, 255, 255);
    --brad-color-secondary: rgb(204, 9, 47);
    --brad-color-secondary-light: rgb(214, 58, 89);
    --brad-color-secondary-dark: rgb(157, 11, 33);
    --brad-color-secondary-xlight: rgb(252, 231, 236);
    --brad-color-on-bg-secondary: rgb(255, 255, 255);
    --brad-color-primary-gradient: linear-gradient(90deg, #cc092f 40%, #b81570 90%);
    --brad-color-secondary-gradient: linear-gradient(270deg, #cc092f 40%, #b81570 90%);
    --brad-color-gray-light: #ebebeb;
    --brad-color-accent: #517bc5;
    --brad-color-gray: #c7c7c7;
    --brad-color-error: red;
    --brad-color-gray-dark: #999;
    --brad-color-gray-darker: #3c3c3c;
    --brad-color-extended-blue: rgb(59, 105, 255);
}

/* ===========================================
   HEADER
   =========================================== */
html body {
    padding-top: 50px;
}

@media (max-width: 768px) {
    html body {
        padding-top: 3rem;
    }
}

.header {
    background: var(--brad-color-primary-gradient);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    color: var(--brad-color-on-bg-primary);
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
}

.header__container {
    align-items: center;
    display: flex;
    height: 50px;
    justify-content: space-between;
}

.header__form {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.header__login-button {
    align-items: center;
    background: none;
    border: none;
    color: var(--brad-color-on-bg-primary);
    cursor: pointer;
    display: flex;
    gap: 0.5rem;
}

.header__login-text {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    line-height: 1.25rem;
    text-transform: uppercase;
}

.header__icon {
    height: 1.125rem;
    width: 1.125rem;
}

.header__field,
.header__field__group {
    align-items: center;
    display: flex;
    gap: 0.5rem;
}

.cartoes__label,
.header__label {
    color: var(--brad-color-on-bg-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.cartoes__input,
.header__input {
    background-color: var(--brad-color-on-bg-primary);
    border: none;
    border-radius: 1.875rem;
    color: var(--brad-color-neutral-100);
    font-size: 0.9375rem;
    padding: 0.3rem 0.75rem;
    text-align: center;
}

.header__input:focus {
    border: 2px solid var(--brad-color-primary-dark);
}

.header__input#AGN,
.header__input#CTA,
.header__input#DIGCTA {
    height: 1.75rem;
    padding: 0 0.625rem;
}

.header__input#AGN {
    width: 3.4375rem;
}

.header__input#CTA {
    width: 5.3125rem;
}

.header__input#DIGCTA {
    width: 1.875rem;
}

.cartoes__button,
.header__submit-button {
    background-color: var(--brad-color-primary-dark);
    border: none;
    border-radius: 0.1875rem;
    color: var(--brad-color-on-bg-primary);
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 700;
    height: 1.625rem;
    padding: 0 0.375rem;
    transition: all 0.2s ease-in-out;
    width: 1.875rem;
}

.cartoes__button:hover,
.header__submit-button:hover {
    opacity: 0.9;
}

.header__remember {
    align-items: center;
    display: flex;
    gap: 0.25rem;
}

.header__checkbox {
    accent-color: var(--brad-color-accent);
}

.header__checkbox-label {
    color: var(--brad-color-on-bg-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.header__separator {
    background: var(--brad-color-primary-dark);
    height: 1.25rem;
    width: 1px;
}

.header__help {
    align-items: center;
    color: var(--brad-color-on-bg-primary);
    display: flex;
    gap: 0.3rem;
}

.header__help,
.header__help-text {
    font-weight: 700;
    text-decoration: none;
}

.header__help-text {
    cursor: pointer;
    font-size: 0.625rem;
    letter-spacing: 1.5px;
    line-height: 2.4375rem;
    text-transform: uppercase;
}

.header__help-icon {
    align-items: center;
    display: flex;
}

.header__help-icon img {
    height: 20px;
    width: 20px;
}

.header__accessibility {
    align-items: center;
    color: var(--brad-color-on-bg-primary);
    display: flex;
    font-weight: 700;
    gap: 0.3rem;
    text-decoration: none;
}

.header__accessibility-icon {
    border: 1px solid var(--brad-color-on-bg-primary);
    border-radius: 50%;
    padding: 0.25rem;
}

.header__mobile {
    display: none;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
}

/* ===========================================
   ACESSIBILIDADE
   =========================================== */
.accessibility-menu__toggle {
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    gap: 0.5rem;
    opacity: 0.9;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.accessibility-menu__title {
    font-size: 18px;
}

.accessibility-menu__toggle:hover {
    opacity: 1;
}

.accessibility-menu__toggle-text {
    color: var(--brad-color-neutral-0);
    font-size: 11px;
    text-transform: uppercase;
}

.accessibility-menu__toggle-icon {
    align-items: center;
    display: flex;
    justify-content: center;
}

.acessib__wrapper {
    align-items: center;
    display: flex;
    gap: 20px;
}

.btn-imoveis a,
.canal-consorcios a {
    align-items: center;
    background-color: var(--brad-color-neutral-0);
    border: 1px solid var(--brad-color-primary);
    border-radius: 20px;
    color: var(--brad-color-primary);
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    height: 1.625rem;
    justify-content: center;
    padding: 0 16px;
    text-transform: uppercase;
    transition: all 0.2s;
}

.btn-imoveis a:hover,
.canal-consorcios a:hover {
    background: var(--brad-color-primary-dark);
    color: var(--brad-color-neutral-0);
}

.cartoes__list {
    align-items: center;
    display: flex;
    gap: 8px;
}

.cartoes__item {
    height: 100%;
}

.cartoes__icon {
    filter: brightness(0) invert(1);
    width: 20px;
}

/* ===========================================
   MENU ACESSIBILIDADE
   =========================================== */
@-webkit-keyframes menu {
    0% {
        opacity: 0;
        transform: translate3d(0, -10px, 0);
    }
    
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}

@keyframes menu {
    0% {
        opacity: 0;
        transform: translate3d(0, -10px, 0);
    }
    
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}

.accessibility-menu__content {
    animation: menu 0.3s ease forwards;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
    display: none;
    flex-direction: column;
    margin-top: 15px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    right: 60px;
    width: 300px;
    z-index: 9;
}

.accessibility-menu__content--active {
    display: flex;
    opacity: 1;
}

.accessibility-menu__header {
    align-items: center;
    background: var(--brad-color-secondary-gradient);
    display: flex;
    justify-content: space-between;
    padding: 12px 24px;
    position: relative;
}

.accessibility-menu__close {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.accessibility-menu__close:after,
.accessibility-menu__close:before {
    background-color: #fff;
    content: "";
    height: 15px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform-origin: center;
    width: 3px;
}

.accessibility-menu__close:before {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.accessibility-menu__close:after {
    transform: translate(-50%, -50%) rotate(45deg);
}

.accessibility-menu__body {
    display: flex;
    gap: 0.5rem;
    padding: 24px;
}

.accessibility-menu__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.accessibility-menu__row {
    display: flex;
    gap: 24px;
    justify-content: space-between;
}

.accessibility-menu__item {
    border: 0.5px solid #f0f1f5;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
    flex-basis: calc(50% - 25px);
    flex-grow: 1;
    height: 120px;
    position: relative;
    transition: 0.3s;
    width: calc(50% - 25px);
}

.accessibility-menu__item:hover {
    background-color: #f0f1f5;
}

.accessibility-menu__link {
    align-content: center;
    align-items: center;
    display: flex;
    flex-flow: row wrap;
    flex-direction: column;
    gap: 12px;
    height: 100%;
    justify-content: center;
}

.accessibility-menu__link > span {
    color: #47484c;
    font-size: 13px;
    font-weight: 500;
    line-height: 16px;
    margin-left: 5px;
    margin-right: 5px;
    max-width: calc(100% - 20px);
    text-align: center;
}

.accessibility-menu__footer {
    background: #ebebeb;
    padding: 20px;
    text-align: center;
}

.accessibility-menu__button {
    align-items: center;
    background-color: var(--brad-color-primary);
    border: 2px solid var(--brad-color-primary-light);
    border-radius: 24px;
    color: var(--brad-color-neutral-0);
    display: inline-flex;
    font-size: 14px;
    font-weight: 700;
    justify-content: center;
    min-width: 260px;
    padding: 12px 15px;
    text-decoration: none;
}

#rybena-sidebar {
    display: none;
    opacity: 0;
    visibility: hidden;
}

/* ===========================================
   MEDIA QUERIES - HEADER
   =========================================== */
@media (max-width: 1370px) {
    .header__container-cartoes .header__form .header__separator,
    .header__container-cartoes .header__help {
        display: none;
    }
}

@media (max-width: 1265px) {
    .header__container-consorcios .header__form .header__separator,
    .header__container-consorcios .header__help {
        display: none;
    }
}

@media (max-width: 1230px) {
    .header__container-imoveis .header__form .header__separator,
    .header__container-imoveis .header__help {
        display: none;
    }
}

@media (max-width: 1200px) {
    .header__container-cartoes .header__login-button {
        display: none;
    }
}

@media (max-width: 1191px) {
    .header__container-consorcios .header__login-button,
    .header__container-imoveis .header__login-button {
        display: none;
    }
}

@media (max-width: 1035px) {
    .header__container-cartoes .header__login-button,
    .header__container-cartoes .header__remember,
    .header__form .header__separator,
    .header__help {
        display: none;
    }
}

@media (max-width: 910px) and (min-width: 768px) {
    .cartoes,
    .header__help,
    .header__remember,
    .header__separator {
        display: none;
    }
}

@media (max-width: 768px) {
    .header__container {
        flex-direction: column;
        height: auto;
    }
    
    .header__form {
        gap: 0.5rem;
    }
    
    .header__container,
    .header__form,
    .header__help,
    .header__remember {
        display: none;
    }
    
    .header__mobile {
        align-items: center;
        background: var(--brad-color-primary-gradient);
        color: var(--brad-color-on-bg-primary);
        display: flex;
        gap: 1rem;
        height: 3rem;
        justify-content: space-between;
        padding: 0 1rem;
    }
    
    .header__mobile-text {
        align-items: center;
        display: flex;
        justify-content: center;
        white-space: nowrap;
    }
    
    .header__mobile-close {
        background: none;
        border: none;
        cursor: pointer;
    }
    
    .header__mobile-close-icon {
        height: 1.25rem;
        width: 1.25rem;
    }
    
    .header__mobile-highlight {
        color: var(--brad-color-on-bg-primary);
        font-size: 12px;
        font-weight: 600;
    }
    
    .header__mobile-button {
        align-items: center;
        background-color: var(--brad-color-on-bg-primary);
        border: none;
        color: var(--brad-color-primary);
        cursor: pointer;
        display: flex;
        font-size: 0.75rem;
        font-weight: 700;
        height: 1.5625rem;
        justify-content: center;
        width: 4.375rem;
    }
    
    .header__mobile-button:hover {
        background-color: var(--brad-color-primary-light);
        color: var(--brad-color-on-bg-primary);
    }
}

@media (max-width: 321px) {
    .header__mobile {
        gap: 0.625rem;
    }
}

/* ===========================================
   FOOTER
   =========================================== */
.footer {
    color: var(--brad-color-neutral-0);
    letter-spacing: 0.5px;
}

.footer__uteis {
    align-items: center;
    background: var(--brad-color-gray-light);
    padding: 10px 15px;
}

.footer__item {
    display: inline-flex;
    margin-right: 25px;
    padding: 10px 0;
}

.footer__toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    padding-right: 15px;
    position: relative;
    text-align: left;
    text-transform: uppercase;
    width: 100%;
}

.footer__toggle:after {
    border: solid var(--brad-color-primary);
    border-width: 0 0.125rem 0.125rem 0;
    content: " ";
    cursor: pointer;
    display: inline-block;
    padding: 3px;
    position: absolute;
    right: 0;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.footer__toggle[aria-expanded="true"]:after {
    transform: translateY(50%) rotate(-135deg);
}

.footer__content {
    display: none;
    margin-right: 0;
    padding: 20px 0;
    width: 100%;
}

.footer__content,
.footer__content--visible {
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.footer__content--visible {
    display: flex;
    float: left;
    gap: 70px;
    padding-bottom: 40px;
}

.footer__info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    list-style: none;
    padding: 0 0 0 30px;
}

.footer__uteis,
.footer__uteis a {
    color: var(--brad-color-gray-darker);
}

.footer__info > li {
    position: relative;
}

.footer__info-atendimento > li,
.footer__info-atendimento > li > p,
.footer__info-atendimento > li > p > a > strong,
.footer__info > li > a > span {
    font-size: 12px;
}

.footer__info-atendimento > li > strong {
    font-size: 18px;
}

.footer__info > li > a > span {
    font-weight: 700;
}

.footer__info > li:before {
    border: solid var(--brad-color-gray);
    border-radius: 50%;
    border-width: 0.125rem;
    height: 22px;
    left: -30px;
    transform: translateY(-50%);
    width: 22px;
}

.footer__info > li:after,
.footer__info > li:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
}

.footer__info > li:after {
    border: solid var(--brad-color-primary);
    border-width: 0.125rem 0.125rem 0 0;
    height: 6px;
    left: -20px;
    transform: rotate(45deg);
    transform: translateY(-50%) translateX(-50%) rotate(45deg);
    width: 6px;
}

.footer_inf-atendimento {
    font-size: 12px;
}

.footer__map {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.footer__map-item {
    flex: 0 0 100%;
}

.footer__map-item h3 {
    border-bottom: 1px solid var(--brad-color-gray-dark);
    color: var(--brad-color-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.625rem 0;
    text-transform: uppercase;
}

.footer__map-item ul {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    font-weight: 700;
    gap: 20px 0;
    padding: 10px 0;
}

.footer__gradient {
    background: var(--brad-color-secondary-gradient);
    padding: 20px 0 0;
}

.footer__container {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.footer__brand,
.footer__follow {
    align-items: center;
    display: flex;
    flex: 0 0 200px;
    gap: 5px;
    justify-content: center;
    text-align: center;
}

.footer__brand img {
    width: 100%;
}

.footer__follow span {
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer__address {
    align-items: center;
    display: flex;
    flex: 1 1 auto;
    font-size: 12px;
    justify-content: center;
    opacity: 0.7;
}

.footer__address address {
    font-style: normal;
    text-align: center;
    text-transform: capitalize;
}

.footer__quick-links {
    padding: 16px 0;
    position: relative;
    text-transform: uppercase;
}

.footer__quick-links:before {
    background-color: var(--brad-color-neutral-0);
    content: "";
    height: 1px;
    left: 0;
    opacity: 0.46;
    position: absolute;
    right: 0;
    top: 0;
}

.footer__quick-links {
    text-align: center;
    width: 100%;
}

.footer__quick-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer__quick-links a {
    color: var(--brad-color-on-bg-primary);
    font-size: 12px;
    opacity: 0.7;
    text-decoration: none;
}

.footer__quick-links li:not(:last-child):after {
    background-color: var(--brad-color-on-bg-primary);
    content: "";
    display: inline-block;
    height: 10px;
    margin: 0 10px;
    opacity: 0.7;
    width: 1px;
}

.footer__follow ul {
    display: flex;
    gap: 5px;
}

.footer__container.component__container-content nav {
    width: 100%;
}

/* ===========================================
   MEDIA QUERIES - FOOTER
   =========================================== */
@media (max-width: 1366px) {
    .footer__info-atendimento {
        max-width: 140px;
    }
    
    .footer__content--visible {
        gap: 40px;
    }
    
    .footer__info-atendimento:not(:first-of-type):before {
        left: -20px !important;
    }
}

@media (max-width: 1153px) {
    .footer__content--visible {
        gap: 20px;
    }
}

@media (max-width: 1058px) {
    .footer__follow {
        flex-direction: column;
    }
    
    .footer__content--visible {
        flex-wrap: nowrap;
    }
}

@media (max-width: 1000px) {
    .footer__gradient .footer__container {
        align-items: center;
        flex-direction: column;
    }
    
    .footer__brand,
    .footer__follow {
        flex: 0 0 100%;
    }
}

@media (min-width: 768px) {
    .footer__map {
        gap: 10px 20px;
    }
    
    .footer__map-item {
        flex: 0 0 225px;
    }
}

@media (max-width: 768px) {
    .footer__list {
        flex-direction: column;
        width: 100%;
    }
    
    .footer__container.component__container-content nav {
        width: 100%;
    }
    
    .footer__item {
        border-bottom: 0.0625rem solid #999;
        box-sizing: border-box;
        margin-right: 0;
        padding: 10px 15px;
        text-align: left;
        width: 100%;
    }
    
    .footer__content--visible {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer__info {
        gap: 25px;
        width: 100%;
    }
    
    .footer__toggle {
        text-align: left;
        width: 100%;
    }
    
    .footer__quick-links ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer__quick-links li:not(:last-child):after {
        display: none;
    }
}

@media (max-width: 375px) {
    .footer__address {
        max-width: 300px;
    }
}