body {
    overflow-x: hidden;
}

main {
    color: #47484C;
    background-color: #fff;
    font-family: "Bradesco", sans-serif;
    font-style: normal;
}

.cta {
    width: 150px;
    height: 35px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    border: none;
    border-radius: 30px;
    margin-left: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #CC092F;
}

.card-float {
    border-radius: 15px;
    width: 240px;
    height: 110px;
    position: fixed;
    z-index: 999;
    right: 10px;
    padding: 10px;
    transform: translateY(-150px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    background: #DD0B30;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.card-float p {
    font-size: 13px;
    line-height: 16px;
    font-weight: 400;
}

.card-float p > b {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.card-float img {
    border-radius: 10px;
}

.spacing {
    padding: 0 20%;
}

.title-section {
    font-size: 32px;
    line-height: 28px;
    font-weight: 600;
}

.title-section::after {
    content: "";
    display: block;
    margin-top: 10px;
    width: 60px;
    height: 3px;
    background-color: #CC0930;
}

.paragraph {
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
}

.cards {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
}

.cards .card {
    width: 210px;
    height: 250px;
    padding: 20px 25px;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0px 0px 12px #00000033;
}

.cards .card .title-card {
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 25px;
}

.cards .card .description-card {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

.cards-credito {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 55px;
}

.cards-credito .card-credito {
    background-color: #fff;
    width: 18%;
    height: 155px;
    box-shadow: 0px 3px 6px #00000045;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    cursor: pointer;
    padding: 0 10px;
}

.cards-credito .card-credito img {
    margin: 25px 0;
}

.cards-credito .card-credito p {
    color: #000;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
}

.cards-credito .card-credito.active {
    height: 190px;
    border-radius: 15px 15px 0 0;
    box-shadow: none;
}

.cards-credito .card-credito.active::after {
    content: "";
    width: 80%;
    height: 3px;
    background-color: #CC092F;
    display: block;
    margin: 0 auto;
    transform: translateY(-15px);
}

.cards-credito .card-credito.active p {
    height: 100%;
}

#content-credito {
    width: 100%;
    min-height: 105px;
    border-radius: 15px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 3px 6px #00000045;
    margin-top: -15px;
    padding: 0 110px 0 30px;
}

#content-credito p {
    color: #000;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
}

.passo-a-passo {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    color: #fff;
    padding: 0 50px;
    margin-top: 50px;
    background-color: #CC092F;
    display: flex;
    align-items: end;
}

.passo-a-passo picture {
    margin-right: 50px;
}

.passo-a-passo .content-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.passo-a-passo .cotainer-info {
    width: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: start;
}

#text-info {
    font-size: 20px;
    line-height: 22px;
}

.buttons {
    display: flex;
}

.buttons button {
    background-color: #fff;
    border: none;
    border-radius: 50%;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.steps {
    width: 100%;
    height: 120px;
    display: flex;
    color: #47484C;
    font-weight: 300;
    margin-top: 55px;
}

.steps li {
    width: 20%;
    height: 100%;
    background-color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-left: 1px solid #CC092F;
    border-bottom: 1px solid #CC092F;
}

.steps li:first-child {
    border-left: none;
    border-radius: 15px 0 0 0;
}

.steps li:last-child {
    border-radius: 0 15px 0 0;
}

.steps li:nth-child(2),
.steps li:nth-child(4) {
    background-color: #E4E4E4;
}

.steps li.active {
    font-size: 32px;
    border-bottom: 5px solid #CC092F;
}

#step-image {
    position: relative;
}

#step-image::before {
    content: "";
    width: 26px;
    height: 26px;
    opacity: 0.4;
    border-radius: 50%;
    background-color: #5872FF;
    position: absolute;
}

#step-image.step-1::before {
    bottom: 45.5%;
    right: 35%;
}

#step-image.step-2::before {
    top: 20%;
    left: 12%;
}

#step-image.step-3::before {
    top: 48%;
    left: 17%;
}

#step-image.step-4::before {
    bottom: 8.4%;
    left: 30%;
}

#step-image.step-5::before {
    display: none;
}

#mockup-title {
    position: absolute;
    font-weight: 300;
    width: auto;
    font-size: 22px;
    line-height: 27px;
    transform: rotate(-90deg) translate(75px, -95px);
}

.section-background {
    background-repeat: no-repeat;
    background-size: cover;
    height: 450px;
    padding: 40px 0;
    color: #fff;
    background-image: url("https://assets.bradesco/content/dam/portal-bradesco/assets/classic/img/produtos-servicos/emprestimos-e-financiamentos/credito-pessoal/limite-de-credito-pessoal/background-desktop.jpg");
    @supports (background-image: url('https://assets.bradesco/content/dam/portal-bradesco/assets/classic/img/produtos-servicos/emprestimos-e-financiamentos/credito-pessoal/limite-de-credito-pessoal/background-desktop.webp')) {
        background-image: url('https://assets.bradesco/content/dam/portal-bradesco/assets/classic/img/produtos-servicos/emprestimos-e-financiamentos/credito-pessoal/limite-de-credito-pessoal/background-desktop.webp');
    }
}

.section-background .title-section::after {
    background-color: #fff;
}

.section-center {
    text-align: center;
}

.section-center .title-section::after {
    margin: 10px auto 0 auto;
}

.section-center.bg-gray {
    background-color: #EDEDED;
    padding-top: 50px;
    padding-bottom: 35px;
}

#faq {
    padding-top: 100px;
    padding-bottom: 260px;
}

.content-faq {
    margin-top: 40px;
}

.faq-item {
    border-bottom: 1px solid #CECECE;
    padding: 17px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    padding: 0;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
    color: #47484C;
}

.faq-question .btn-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: none;
    border: 1px solid #CECECE;
}

.faq-question[aria-expanded="true"] .btn-icon {
    border-color: #DD0B30;
}

.faq-question .icon {
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .icon {
    transform: rotate(180deg);
    filter: brightness(0) saturate(100%) invert(16%) sepia(100%) saturate(7277%) hue-rotate(346deg) brightness(89%) contrast(95%);
}

.faq-answer {
    margin-top: 20px;
    animation: fadeIn 0.3s ease;
}

.faq-answer p {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400px;
    padding-right: 50px;
    color: #47484C;
}

.faq-answer p > b {
    font-weight: 600;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.disclaimer-item {
    padding: 17px;
    border-bottom: 1px solid #CECECE;
}

.disclaimer-item:first-child {
    border-top: 1px solid #CECECE;
}

.disclaimer-item h3 {
    font-size: 16px;
    line-height: 20px;
    padding-bottom: 5px;
    font-weight: 600;
}

.disclaimer-item p {
    font-size: 14px;
    line-height: 25px;
    font-weight: 400;
}

.disclaimer-item a {
    color: #3b69ff;
    font-weight: 600;
}

.disclaimer-item a:visited {
    color: #3b69ff;
}

.disclaimer-item a:hover {
    color: #24479F;
}

.disclaimer small {
    display: block;
    padding: 40px 0;
    font-size: 12px;
    line-height: 15px;
    font-weight: 400;
}

/* Banner */
.c-banner--hero {
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    max-height: 720px;
    overflow: hidden;
}

.c-banner--hero picture {
    height: 100%;
    width: 100%;
}

.c-banner--hero picture img {
    height: auto;
}

.c-banner img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

.banner-title {
    width: 100%;
    position: absolute;
    top: 60%;
}

.banner-title h2 {
    font-size: 40px;
    line-height: 45px;
    font-weight: 700;
    color: #fff;
    max-width: 600px;
}

.path-link {
    margin: 100px 0px 0px 300px !important;
    float: left;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 18px;
    bottom: 18px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #fff;
    z-index: 9;
    height: 35px;
}

.path-link a {
    color: #fff;
    font-size: 13px;
    display: inline;
    text-decoration: none;
}

@media (min-width: 1800px) {
    .bg-banner {
        min-width: 100% !important;
        background-size: contain;
    }
}

@media (min-width: 1024px) and (max-width: 1600px) {
    .cards,
    .passo-a-passo,
    .cards-credito,
    #content-credito {
        width: 120%;
    }
}

@media (min-width: 1024px) and (max-width: 1366px) {
    .spacing {
        padding: 0 10% 0 25%;
    }
    
    .spacing-custom {
        padding: 0 20%;
    }

    .cards,
    .passo-a-passo,
    .cards-credito,
    #content-credito {
        width: 100%;
    }

    .cards .card {
        width: 175px;
        height: 220px;
        padding: 16px 20px;
    }

    .cards .card img {
        width: 30px;
        height: 30px;
    }

    .cards .card .title-card {
        font-size: 15px;
        line-height: 18px;
        margin: 15px 0;
    }

    .cards .card .description-card {
        font-size: 14px;
        line-height: 18px;
    }
    
    #content-credito {
        padding: 0 50px 0 30px;
    }

    .cards-credito .card-credito.active {
        height: 185px;
    }

    .cards-credito .card-credito p {
        font-size: 13px;
        line-height: 18px;
    }

    #content-credito p {
        font-size: 13px;
        line-height: 18px;
    }

    .card-float {
        bottom: 50px;
    }

    .banner-title h2 {
        font-size: 26px;
        line-height: 32px;
    }
}

@media (min-width: 1025px) {
    header.mainHeader {
        display: block !important;
        top: 0;
    }
}

@media (max-width: 1024px) {
    .path-link {
        display: none;
    }

    header.headerMobile {
        width: 100%;
    }

    #wrapper {
        width: 100%;
    }

    body {
        background: #fff;
    }

    body.mobile #wrapper {
        padding-top: 120px !important;
    }

    .classic .bg-banner {
        background: url(https://assets.bradesco/content/dam/portal-bradesco/assets/classic/img/atendimento/mobile-atendimento.jpg) center top no-repeat !important;
        background-size: contain !important;
    }

    .classic .bg-banner-1 {
        background: url(https://assets.bradesco/content/dam/portal-bradesco/assets/classic/img/atendimento/banner-atendimento-1.png) center top no-repeat !important;
        background-size: contain !important;
    }

    .destaque-banner {
        height: 500px;
        padding: 0;
    }

    .classic .menu-flutuante {
        margin: unset;
        top: -240px;
    }

    .classic header {
        top: -275px;
    }
}

@media (min-width: 1025px) {
    .c-banner--hero {
        opacity: 1;
        position: relative;
        z-index: -1;
        width: 100vw;
    }

    .classic header {
        margin-bottom: -80px;
    }
}

@media (min-width: 768px) {
    .bg-banner {
        min-width: 100% !important;
        background-size: contain;
    }

    /* Utilities */
    .mt-md-140 {
        margin-top: 140px;
    }

    .mt-md-100 {
        margin-top: 100px;
    }

    .mt-md-50 {
        margin-top: 50px;
    }

    .mt-md-25 {
        margin-top: 25px;
    }

    .pt-md-50 {
        padding-top: 50px;
    }

    .show-mobile {
        display: none;
    }

    /* Grafismos */
    #grafismo,
    #faq,
    .disclaimer  {
        position: relative;
    }

    #grafismo::before {
        content: "";
        display: block;
        position: absolute;
        right: 0;
        top: -30px;
        width: 75px;
        height: 238px;  
        background-image: url("https://assets.bradesco/content/dam/portal-bradesco/assets/classic/img/produtos-servicos/emprestimos-e-financiamentos/credito-pessoal/limite-de-credito-pessoal/grafismo/grafismo-1.svg");
        background-repeat: no-repeat;
        background-size: cover;
    }

    #faq::before {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        bottom: 500px;
        width: 40px;
        height: 168px;
        background-image: url("https://assets.bradesco/content/dam/portal-bradesco/assets/classic/img/produtos-servicos/emprestimos-e-financiamentos/credito-pessoal/limite-de-credito-pessoal/grafismo/grafismo-2.svg");
        background-repeat: no-repeat;
        background-size: cover;
    }

    #faq::after {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        bottom: 260px;
        width: 106px;
        height: 66px;
        background-image: url("https://assets.bradesco/content/dam/portal-bradesco/assets/classic/img/produtos-servicos/emprestimos-e-financiamentos/credito-pessoal/limite-de-credito-pessoal/grafismo/grafismo-3.svg");
        background-repeat: no-repeat;
        background-size: cover;
    }

    .disclaimer::before {
        content: "";
        display: block;
        position: absolute;
        right: 0;
        top: -400px;
        width: 83px;
        height: 186px;
        background-image: url("https://assets.bradesco/content/dam/portal-bradesco/assets/classic/img/produtos-servicos/emprestimos-e-financiamentos/credito-pessoal/limite-de-credito-pessoal/grafismo/grafismo-4.svg");
        background-repeat: no-repeat;
        background-size: cover;
    }

    /* Float Bar */
    .float-bar {
        display: none;
    }
}

@media (max-width: 768px) {
    /* banner */
    .banner-title {
        top: initial;
        transform: translateY(80px);
    }

    .banner-title h2 {
        font-size: 20px;
        line-height: 24px;
        max-width: 290px;
    }

    .cta {
        width: 280px;
        margin: 0 auto;
        height: 40px;
        font-size: 20px;
        line-height: 100%;
    }

    .spacing {
        padding: 0 25px;
    }

    .hide-mobile {
        display: none;
    }

    .pt-sm-25 {
        padding-top: 25px;
    }

    .mt-sm-100 {
        margin-top: 100px;
    }

    .mt-sm-50 {
        margin-top: 50px;
    }

    .mt-sm-25 {
        margin-top: 25px;
    }

    .card-float {
        display: none;
    }

    .title-section {
        font-size: 24px;
        line-height: 26px;
    }

    .paragraph {
        font-size: 16px;
        line-height: 20px;
    }

    .cards {
        gap: 25px;
    }

    .cards .card {
        width: 100%;
        height: 190px;
    }

    .section-background {
        height: 250px;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-bottom: 1px solid #DD0B30;
        box-shadow: 0px 5px 5px 0px rgba(221,11,48,0.75);
        -webkit-box-shadow: 0px 5px 5px 0px rgba(221,11,48,0.75);
        -moz-box-shadow: 0px 5px 5px 0px rgba(221,11,48,0.75);
        background-image: url("https://assets.bradesco/content/dam/portal-bradesco/assets/classic/img/produtos-servicos/emprestimos-e-financiamentos/credito-pessoal/limite-de-credito-pessoal/background-mobile.jpg");
        @supports (background-image: url('https://assets.bradesco/content/dam/portal-bradesco/assets/classic/img/produtos-servicos/emprestimos-e-financiamentos/credito-pessoal/limite-de-credito-pessoal/background-mobile.webp')) {
            background-image: url('https://assets.bradesco/content/dam/portal-bradesco/assets/classic/img/produtos-servicos/emprestimos-e-financiamentos/credito-pessoal/limite-de-credito-pessoal/background-mobile.webp');
        }
    }
    
    .section-background .title-section {
        margin: 0 25px;
        text-align: left;
    }

    .section-background .title-section::after {
        margin: 10px 0 0 0;
    }

    .passo-a-passo {
        justify-content: space-between;
        flex-wrap: wrap-reverse;
        padding: 0 0 0 20px;
        padding-top: 20px;
        height: 600px;
    }

    .passo-a-passo .cotainer-info {
        min-height: initial;
    }

    .passo-a-passo picture {
        margin-right: 0;
        transform: translateY(50px);
    }

    #text-info {
        padding-right: 20px;
        font-size: 26px;
        line-height: 28px;
        min-height: 100px;
    }

    .steps {
        margin-top: 0;
        transform: translateY(295px) rotate(90deg);
        height: fit-content;
        position: absolute;
        right: -103px;
        width: 320px;
        height: 64px;
    }

    .steps li {
        transform: rotate(270deg);
        width: 70px;
        height: 64px;
        border: none;
        font-size: 18px;
    }

    .steps li.active {
        transform: translateY(5px) rotate(270deg);
        font-size: 26px;
        border: none;
    }

    .steps li:last-child {
        border-radius: 0 0 0 15px;
    }

    .section-center.bg-gray {
        padding-top: 70px;
        padding-bottom: 50px;
    }

    .section-center.bg-gray .title-section {
        font-size: 32px;
        line-height: 39px;
    }

    .section-center p {
        font-size: 18px;
        line-height: 22px;
        font-weight: 400;
        margin-top: 25px;
        margin-bottom: 10px;
    }

    .section-background-color {
        background: transparent linear-gradient(180deg, #DD0B30 0%, #DD0B30 78%, #B81570 100%) 0% 0% no-repeat padding-box;
        margin-top: -1px;
        padding: 25px;
        gap: 40px;
        display: flex;
        flex-direction: column;
    }

    .section-background-color .card {
        width: 100%;
        height: 270px;
        border-radius: 15px;
        background-color: #fff;
        box-shadow: 0px 0px 12px #00000033;
        padding: 20px 20px 30px;
        display: flex;
        align-items: start;
        justify-content: space-between;
        flex-direction: column;
    }

    .section-background-color .card p {
        font-size: 16px;
        line-height: 20px;
    }

    .section-background-color .card h3 {
        width: 100%;
        text-align: start;
        font-size: 18px;
        line-height: 20px;
    }

    #faq {
        padding-top: 90px;
        padding-bottom: 65px;
    }

    .faq-item {
        padding: 17px 0;
    }

    .faq-question h3 {
        text-align: left;
        font-size: 16px;
        line-height: 22px;
        max-width: calc(90% - 32px);
    }

    .disclaimer-item h3 {
        text-align: left;
        padding-bottom: 10px;
    }

    .disclaimer small {
        padding: 20px 0;
    }
    
    .float-bar {
        text-transform: uppercase;
        position: fixed;
        background-color: #E5173F;
        bottom: 0;
        width: 100%;
        height: 50px;
    }

    .float-bar a {
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        font-weight: bold;
        font-size: 14px;
        line-height: 20px;
    }

    .float-bar i {
        margin-left: 10px;
        padding: 2px;
        border: 1px solid #fff;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .float-bar i {
        margin-left: 10px;
        padding: 2px;
        border: 1px solid #ffffff81;
        border-radius: 50%;
        width: 25px;
        height: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        filter: brightness(0) saturate(100%) invert(97%) sepia(97%) saturate(0%) hue-rotate(54deg) brightness(104%) contrast(103%);
        rotate: -90deg;
    }
}

/* Override busca e modal busca */
.modal-busca {
    top: 40px;
}

.mainHeader .busca-desk {
    margin-top: 65px;
}