@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;900&display=swap');

:root {
    --primaryColor: #3B4A6A;
    --secondaryColor: #F9AB01;
    --white: #FFFFFF;
    --black: #000000;
    --baseColor: #868686;
    --lightBg: #ECECEC;
    --lightBg2: #F4F4F4;
    --selectBg: #E7E7E7;
    --grayBg: #D9D9D9;
    --borderColor: #D9D9D9;
    --baseFont: 'Inter', sans-serif;
    --borderRadius: 8px;
    --darkBtnBg: #868686;
    --darkBtnHoverBg: #3B4A6A;
    --primaryDark: #EBA100;
    --inputBg: #F5F5F5;
    --tableStripe: #f5f5f5;
    --greenColor: #AFCA9B;
    --yellowColor: #FFD06B;
    --redColor: #E35C5C;
}

html, body {
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: var(--baseFont);
    color: var(--baseColor);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

a, .btn {
    -webkit-transition: all 300ms ease-in-out 0s;
    -o-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}

a {
    color: inherit;
    text-decoration: none;
}

    a:hover {
        color: inherit;
        text-decoration: none;
    }

img {
    max-width: 100%;
}

.btn.focus, .btn:focus, .form-control:focus {
    box-shadow: none;
}

hr {
    border-top: 1px solid var(--borderColor);
    opacity: 1;
    margin: 24px 0;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
    font-weight: 400;
    color: var(--primaryColor);
}

.form-control {
    padding: 10px 15px;
    color: var(--primaryColor);
    background-color: var(--lightBg);
    border: none;
    height: 55px;
    border-radius: var(--borderRadius);
    font-family: var(--baseFont);
}

    .form-control:focus {
        outline: none;
        background-color: var(--lightBg);
    }

    .form-control::placeholder,
    .form-select {
        color: var(--baseColor) !important;
        opacity: 1; 
    }

.form-select {
    color: var(--primaryColor);
    background-color: #E7E7E7;
    background-image: url('../images/angle-down.svg');
    background-size: 10px 7px;
    border: none;
    border-radius: 0;
}

.btnPrimary {
    --btnBg: var(--primaryColor);
    --btnColor: var(--white);
    --btnHoverBg: var(--white);
    --btnHoverColor: var(--primaryColor);
}

    .btnPrimary:hover {
        border-color: var(--primaryColor);
    }

.btnPrimaryReverse {
    --btnBg: var(--white);
    --btnColor: var(--primaryColor);
    --btnHoverBg: var(--primaryColor);
    --btnHoverColor: var(--white);
}

.btn.btnPrimaryReverse {
    border-color: var(--primaryColor);
    border-style: solid;
    border-width: 1px;
}

.btnSecondary {
    --btnBg: var(--secondaryColor);
    --btnColor: var(--white);
    --btnHoverBg: var(--white);
    --btnHoverColor: var(--secondaryColor);
}

    .btnSecondary:hover {
        border-color: var(--secondaryColor); 
    }

.btnDark {
    --btnBg: var(--darkBtnBg);
    --btnColor: var(--white);
    --btnHoverBg: var(--darkBtnHoverBg);
    --btnHoverColor: var(--white);
}

.btn {
    padding: 15px 20px;
    font-family: var(--baseFont);
    color: var(--btnColor);
    border: 1px solid transparent;
    border-radius: var(--borderRadius);
    background-color: var(--btnBg);
}

    .btn:hover, .btn:active, .btn:first-child:active, :not(.btn-check) + .btn:active {
        color: var(--btnHoverColor);
        background-color: var(--btnHoverBg);
    }

/** custom css  */
.sectionSpace {
    padding: 80px 0;
}

.lgTitle {
    font-size: 40px;
}

.mdTitle {
    font-size: 32px;
}

.black {
    font-weight: 900;
}

.bold {
    font-weight: 700;
}

.medium {
    font-weight: 500;
}

.text-white {
    color: var(--white);
}

.primaryColor {
    color: var(--primaryColor) !important;
}

.secondaryColor {
    color: var(--secondaryColor);
}

.secondaryColor {
    color: var(--secondaryColor);
}

.greenColor {
    color: var(--greenColor) !important;
}

.redColor {
    color: var(--redColor) !important;
}

.yellowColor {
    color: var(--yellowColor) !important;
}

.lightColor {
    color: var(--baseColor) !important;
}

.lightBg {
    background-color: var(--lightBg2) !important;
}

.whiteBg {
    background-color: var(--white);
}

.darkBg {
    background-color: var(--primaryColor);
}

.grayBg {
    background-color: var(--grayBg) !important;
}

.secondaryBg {
    background-color: var(--secondaryColor);
}

.font-inter {
    font-family: "Inter", sans-serif;
}

.mb-40 {
    margin-bottom: 40px;
}

.lh-md {
    line-height: 1.8;
}

.titleCol {
    max-width: 750px;
    margin: 0 auto;
}

.noWrap {
    white-space: nowrap;
}

.primaryBg {
    background-color: var(--primaryColor);
}

.redBg {
    background-color: var(--redColor);
}

/** custom css  */
/*  header */
.headerRightCol .btn {
    padding: 10px;
}

.navLink > ul > li + li {
    padding-left: 32px;
}

.navLink > ul > li > a {
    padding: 8px 0;
    display: block;
    color: var(--primaryColor);
}

    .navLink > ul > li > a:hover {
        color: var(--secondaryColor);
    }

.toggle {
    width: 25px;
    height: 16px;
    position: relative;
    margin-left: auto;
    cursor: pointer;
    display: block;
    z-index: 99;
}

    .toggle::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 9;
    }

.bar {
    width: 100%;
    height: 2px;
    position: absolute;
    background-color: var(--primaryColor);
    z-index: 1;
    -webkit-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
    transition: all 500ms ease-in-out 0s;
    top: 7px;
    border-radius: 20px;
}

    .bar:nth-child(1) {
        top: 0px;
    }

    .bar:nth-child(3) {
        top: 14px;
        width: 60%;
        right: 0;
    }

.actNav .bar:nth-child(1) {
    transform: rotate(135deg);
    top: 8px;
}

.actNav .bar:nth-child(2) {
    transform: translate(-100%, 0);
    opacity: 0;
}

.actNav .bar:nth-child(3) {
    transform: rotate(-135deg);
    top: 8px;
    width: 100%;
}

.headerCol {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    padding: 20px 0px;
    background-color: var(--white);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.04);
    z-index: 99;
}

.headerHgt {
    height: 84px;
}
/*   /header */
.bannerSection {
    background-image: url('../images/car-banner-home-page.webp');
    background-repeat: no-repeat;
    background-position: 80% 80%;
    padding: 70px 0 50px;
    color: var(--primaryColor);
}


.bannerContent {
    max-width: 434px;
}

    .bannerContent > h1 {
        font-size: 56px;
        font-weight: 700;
        line-height: 1;
        margin-bottom: 40px;
        color: inherit;
    }

    .bannerContent > p {
        max-width: 338px;
    }

.bannerSearch {
    max-width: 320px;
    padding-top: 20px;
}

.bs {
    position: relative;
}

    .bs .form-control {
        height: 56px;
        padding: 10px 60px 10px 20px;
    }

        .bs .form-control::placeholder {
            color: var(--primaryColor);
            opacity: 1;
        }

    .bs .searchIconBtn {
        border: none;
        padding: 0;
        background-color: transparent;
        font-size: 32px;
        color: var(--primaryColor);
        position: absolute;
        right: 18px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        cursor: pointer;
    }

.bannerSectionMain {
    position: relative;
}

.img1 {
    width: 472px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
}

    .img1 img {
        display: block;
    }

.contentCol {
    max-width: 545px;
}

.contentCol2 {
    max-width: 650px;
    margin-left: auto;
}

    .contentCol2 .listStyle {
        padding-top: 10px;
    }

.listStyle > li {
    position: relative;
    padding-left: 30px;
}

.listIcon {
    position: absolute;
    left: 0;
    top: 0;
}

    .listIcon svg {
        fill: var(--secondaryColor);
    }

.listStyle > li + li {
    margin-top: 10px;
}

.pricingSection {
    padding-top: 30px;
    display: flex;
    justify-content: center;
}

.pCardStyle {
    height: 358px; /* Altura fixa para consistência */
    width: 306px;
    background-color: var(--white);
    padding: 30px 20px 20px;
    border: 1px solid #D9D9D9 !important;
    display: flex;
    flex-direction: column;
    position: relative; /* Para o "Recomendado" ficar posicionado corretamente */
}

    .pCardStyle > h4 {
        font-weight: 700;
        text-transform: uppercase;
        font-size: 16px;
        padding-bottom: 10px;
    }

    .pCardStyle > h3 > span {
        display: inline-block;
        vertical-align: middle;
    }

    .pCardStyle > h3 > span {
        font-size: 16px;
        font-weight: 400;
    }

        .pCardStyle > h3 > span.priceText {
            color: var(--secondaryColor);
            font-size: 32px;
            font-weight: 700;
            padding-left: 10px;
        }

.cardHighlightSecondary {
    border: 1px solid var(--secondaryColor) !important;
    position: relative;
}

.cardBgSecondary {
    background-color: var(--secondaryColor);
    color: white;
    position: absolute;
    top: 0; /* Posiciona no topo do card */
    left: 0; /* Alinha à esquerda */
    right: 0; /* Estica por toda a largura */
    padding: 6px 0; /* Adiciona um pouco de padding vertical */
    font-size: 16px;
}

.cardHighlightPrimary {
    border: 1px solid var(--primaryColor) !important;
    position: relative;
}

.cardBgPrimary {
    background-color: var(--primaryColor);
    color: white;
    position: absolute;
    top: 0; /* Posiciona no topo do card */
    left: 0; /* Alinha à esquerda */
    right: 0; /* Estica por toda a largura */
    padding: 6px 0; /* Adiciona um pouco de padding vertical */
    font-size: 16px;
}

.pCardStyle .btnCol {
    margin-top: auto;
}

.paymentCard {
    text-align: center;
}

    .paymentCard > p {
        margin-bottom: 10px;
    }

    .paymentCard > ul > li {
        display: inline-block;
        vertical-align: middle;
        font-size: 32px;
    }

        .paymentCard > ul > li + li {
            margin-left: 20px;
        }

.faqSection > p {
    max-width: 740px;
    margin: 0 auto;
}

.accordionCol {
    margin-top: 40px;
}

.pannelBodyheader {
    display: block;
    background-color: var(--lightBg);
    padding: 15px 50px 15px 16px;
    color: var(--primaryColor);
    position: relative;
}

    .pannelBodyheader::before {
        content: "";
        position: absolute;
        right: 30px;
        top: 50%;
        height: 8px;
        width: 8px;
        border-style: solid;
        border-color: var(--primaryColor);
        border-width: 0px 2px 2px 0px;
        transform: rotate(45deg) translate(0, -50%);
    }

.pannelContent {
    padding: 10px;
}

    .pannelContent > p {
        font-size: 14px;
        margin-bottom: 0;
    }

.pannelBody + .pannelBody {
    margin-top: 16px;
}

.ConsultSection {
    background-image: url(../images/consulta-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 36px 0 44px;
}

.ConsultInner .btnCol {
    padding-top: 5px;
}

.contactInfo {
    max-width: 448px;
}

    .contactInfo > p {
        padding-bottom: 10px;
    }

    .contactInfo > ul > li {
        position: relative;
        padding-left: 40px;
        line-height: 1.8;
        display: block;
        color: var(--primaryColor);
    }

        .contactInfo > ul > li + li {
            margin-top: 12px;
        }

.cIcon {
    position: absolute;
    left: 0;
    top: 2px;
    background-color: var(--primaryColor);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: var(--secondaryColor);
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: center;
}

.formStyle .form-control {
    border-radius: 0;
}

    .formStyle .form-control:focus {
        color: var(--primaryColor);
        background-color: var(--lightBg);
    }

.formStyle textarea.form-control {
    min-height: 156px;
    resize: none;
}

.formStyle2 .form-control {
    background-color: var(--white);
}

    .formStyle2 .form-control::-webkit-input-placeholder {
        /* Chrome/Opera/Safari */
        color: var(--primaryColor);
    }

    .formStyle2 .form-control::-moz-placeholder {
        /* Firefox 19+ */
        color: var(--primaryColor);
    }

    .formStyle2 .form-control:-ms-input-placeholder {
        /* IE 10+ */
        color: var(--primaryColor);
    }

    .formStyle2 .form-control:-moz-placeholder {
        /* Firefox 18- */
        color: var(--primaryColor);
    }

.lblStyle {
    font-size: 16px;
    margin-bottom: 8px;
}
/** footer css start **/
.footerSection {
    padding: 40px 0;
}

.footerCol > p {
    margin-bottom: 0;
    padding-top: 14px;
}

.footerLinks > ul > li + li {
    margin-top: 4px;
}

.footerLinks > ul > li > a {
    color: var(--primaryColor);
}

    .footerLinks > ul > li > a:hover {
        color: var(--primaryColor);
    }
/* footer css end **/
/**** desktop-3 *****/
.infoSection .titleCol {
    max-width: 100%;
}

.form_auto {
    width: 330px;
}

.infoInnerCol {
    padding-top: 55px;
}

/**** modal css ******/
.modelStyle .modal-content {
    padding: 80px 24px 48px;
    border: 0;
    border-radius: 0;
}

.modelStyle2 .modal-content {
    padding: 32px;
    border: 0;
    border-radius: 0;
}

.btnClose {
    position: absolute;
    right: 28px;
    top: 24px;
    color: var(--secondaryColor);
    z-index: 1;
}

.btnClose2 {
    color: var(--secondaryColor);
}

.spinnerIcon {
    font-size: 100px;
    color: var(--secondaryColor);
    margin-bottom: 60px;
}

.modelCol .titleCol > h2 {
    padding-bottom: 20px;
}

.modlCheckIcon {
    min-height: 120px;
    margin-bottom: 60px;
    padding-top: 30px;
}

    .modlCheckIcon > img {
        width: 90px;
    }

.btnIcon > * + * {
    margin-left: 10px;
}

.modalBtn {
    margin-top: 24px;
}

.modal-backdrop {
    --bs-backdrop-opacity: 0.6;
}

.headerModal {
    margin: 32px 0;
}

.qrCodeImg {
    width: 66px;
}

.qrCode {
    width: 312px;
}

.qrText {
    font-size: 12px;
    color: var(--black);
}

.accordionStyle .accordion-item {
    border: 0;
    margin-bottom: 32px;
    color: inherit;
}

.accordionStyle button.accordion-button {
    background-color: var(--primaryColor);
    color: var(--white);
    border-radius: 0 !important;
    padding: 8px 40px 8px 8px;
    font-size: 16px;
    font-weight: 700;
}

.accordionStyle .accordion-button::after {
    background-image: none;
    position: absolute;
    right: 18px;
    top: 50%;
    content: "";
    height: 8px;
    width: 8px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(-135deg) translateY(-50%);
    margin-top: -3px;
    transition: transform 0.2s ease-in-out; /* Adiciona animação suave */
}

/* Quando o accordion está expandido (classe .collapsed é removida) */
.accordionStyle .accordion-button:not(.collapsed)::after {
    transform: translateY(-50%) rotate(45deg);
    margin-top: 3px;
}


.accordionStyle .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.accordionStyle .accordion-body {
    padding: 0;
}

.vehicleContent {
    position: relative;
    padding-left: 50px;
}

    .vehicleContent > p {
        font-size: 16px;
        margin: 0;
    }

.vIcon {
    position: absolute;
    top: 0;
    left: 0;
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--white);
}

.vehicleContent > p > span {
    display: block;
}

.accordionStyle .accordion-body {
    padding: 16px 0 0;
}

.vCardLbl {
    padding-bottom: 8px;
}

.vCardText {
    display: block;
    color: var(--primaryColor);
    font-weight: 700;
    padding: 12px 8px 18px;
    border-bottom: 1px solid var(--borderColor);
}

.ownerHistoryIcon {
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--grayBg);
    border-radius: 50%;
    margin: 0 16px;
    color: var(--white);
}

.current .ownerHistoryIcon {
    background-color: var(--greenColor);
}

.ownerText {
    width: 132px;
}

.ownerInfo > ul > li {
    position: relative;
    padding-bottom: 24px;
    z-index: 2;
}

    .ownerInfo > ul > li:last-child {
        padding-bottom: 0;
    }

    .ownerInfo > ul > li::before {
        content: "";
        position: absolute;
        left: 168px;
        width: 2px;
        background-color: var(--grayBg);
        top: 0;
        bottom: 0;
        z-index: -1;
    }

    .ownerInfo > ul > li:last-child::before {
        display: none;
    }

    .ownerInfo > ul > li.current::before {
        background-color: var(--greenColor);
    }

.ownerText > p {
    margin: 0;
}

.errorNote p {
    color: #CC0000;
    font-size: 14px;
    line-height: 1.4;
}

    .errorNote p:last-child {
        margin: 0;
    }

.errorNote {
    padding: 16px;
    border: 1px solid #CC0000;
    background-color: rgba(255, 0, 0, 0.1);
    margin-top: 30px;
}

.noRecord {
    color: var(--baseColor);
    font-weight: 700;
}

.accordionStyle .disabledItem button.accordion-button {
    background-color: var(--baseColor);
}

    .accordionStyle .disabledItem button.accordion-button::after {
        opacity: 0;
    }

.legalNotis > p:last-child {
    margin-bottom: 0;
}

.legalNotis .xsTitle {
    color: inherit;
}

/* Desktop - 5 */
.xsTitle {
    font-size: 16px;
    font-weight: 700;
    color: inherit;
    text-transform: uppercase;
}

.stepNumberCol {
    padding: 15px 15px 10px 10px;
    background-color: #F6F6F6;
}

.stepNumber {
    display: flex;
    align-items: center;
    max-width: 930px;
}

    .stepNumber > li {
        width: 50%;
        padding: 10px 5px;
    }

        /* Estilo do step como span ao invés de <a> */
        .stepNumber > li > .step-item {
            display: inline-flex;
            align-items: center;
            color: inherit;
            font-size: 14px;
            font-weight: 700;
            cursor: default;
        }

            .stepNumber > li > .step-item > span + span {
                margin-left: 15px;
            }

            .stepNumber > li > .step-item > span.sNumber {
                min-width: 30px;
                min-height: 30px;
                flex-shrink: 0;
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--white);
                background-color: var(--baseColor);
                border-radius: 50%;
                transition: all 300ms ease-in-out;
            }

            .stepNumber > li > .step-item.active > span.sNumber,
            .stepNumber > li > .step-item:hover > span.sNumber {
                background-color: var(--secondaryColor);
            }

            /* Cor do texto ativa ou hover */
            .stepNumber > li > .step-item.active,
            .stepNumber > li > .step-item:hover {
                color: var(--primaryColor);
            }

/* Quando for .comprarCreditos */
.stepNumberCol.comprarCreditos .stepNumber > li > .step-item.active,
.stepNumberCol.comprarCreditos .stepNumber > li > .step-item:hover {
    color: var(--white);
}

.stepNumberCol.comprarCreditos {
    background-color: var(--primaryColor);
}


.formColMain {
    padding: 32px 0;
}

.loginCol {
    width: 450px;
    padding-right: 35px;
}

.lblStyle2 {
    font-weight: 700;
    color: var(--primaryColor);
    margin-bottom: 8px;
}

.linkStyle {
    text-decoration: underline;
    font-weight: 700;
    display: inline-block;
}

    .linkStyle:hover {
        color: var(--primaryColor);
        text-decoration: underline;
    }

.minWdBtn {
    min-width: 160px;
}

.formStyle3 .form-control {
    background-color: var(--inputBg);
}

.form-check.radioStyle {
    padding: 0;
}

.radioStyle .form-check-input {
    border-color: var(--baseColor);
    width: 24px;
    height: 24px;
    float: none;
    display: block;
    margin: 0 auto 15px;
}

    .radioStyle .form-check-input:focus {
        box-shadow: none;
    }

.form-check-inline.radioStyle:last-child {
    margin-right: 0;
}

.radioStyle .form-check-input:checked[type="radio"] {
    --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%233B4A6A'/%3e%3c/svg%3e");
    background-color: transparent;
}

.checkStyle .form-check-input:focus {
    box-shadow: none;
}

.form-check.checkStyle {
    padding-left: 0;
    display: inline-flex;
    align-items: center;
}

.checkStyle .form-check-label {
    padding-left: 8px;
}

.checkStyle .form-check-input {
    width: 24px;
    height: 24px;
    border-radius: 0;
    margin: 0;
    min-width: 24px;
}

    .checkStyle .form-check-input:checked {
        background-color: var(--primaryColor);
        border-color: var(--primaryColor);
    }
/*   /Desktop - 5 */
/*************** Desktop 10 Start ********/

.formStyle2 select.form-select {
    padding-right: 30px;
    cursor: pointer;
}

.headerRightCol .btn.btnXl {
    padding: 8px 50px;
}

.sectionSpace.spaceMd {
    padding: 48px 0;
}

.navLink > ul > li > a {
    position: relative;
}

.navLink > ul > li.active > a {
    font-weight: 700;
}

    .navLink > ul > li.active > a:before {
        content: "";
        height: 1px;
        background-color: var(--primaryColor);
        left: 0;
        right: 0;
        position: absolute;
        bottom: 0;
    }

.cImgCard + .cContentCol {
    margin-top: 15px;
}

/*************** Desktop 10 End ********/

/*************** Desktop 11 Start ********/

.modlCheckIcon > i {
    font-size: 100px;
    color: var(--primaryColor);
}
/*************** Desktop 11 End ********/
/********** Tab css Start ********/

@media (max-width: 767px) {

    .tabDataCol {
        display: none;
    }

        .tabDataCol.tabShow {
            display: block;
        }

    .tabTriger {
        display: block;
        margin: 0;
        width: 100%;
        text-align: left;
        border-radius: 0;
        color: var(--baseColor);
        font-weight: 400;
        font-size: 16px;
        padding: 15px 20px;
        padding-right: 40px;
        border: 0;
        position: relative;
    }

        .tabTriger i {
            position: absolute;
            top: 50%;
            -webkit-transform: rotate(-180deg) translate(0,-50%);
            -moz-transform: rotate(-180deg) translate(0,-50%);
            transform: rotate(-180deg) translate(0,-50%);
            right: 20px;
            transform-origin: top;
            -webkit-transition: all 300ms ease-in-out;
            -moz-transition: all 300ms ease-in-out;
            transition: all 300ms ease-in-out;
        }

        .tabTriger.active i {
            -webkit-transform: rotate(0) translate(0,-50%);
            -moz-transform: rotate(0) translate(0,-50%);
            transform: rotate(0) translate(0,-50%);
        }

        .tabTriger.active {
            color: var(--white);
            background-color: #3B4A6A;
            font-weight: 700;
        }
}
/********** Tab css End ********/

/*************************
** MEDIA QUARY START **
************************/

@media (min-width: 1200px) {
    .modalWd-xl .modal-dialog {
        max-width: 1120px;
    }

    .modalWd-lg .modal-dialog {
        max-width: 1075px;
    }
}

@media (max-width: 1200px) {
    .bannerSection {
        background-image: none; /* Remove a imagem */
        padding: 40px 0; 
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1344px;
    }
}

@media (max-width:1199px) {
    .headerHgt {
        height: 74px;
    }

    .headerCol {
        padding: 15px 0px;
    }

    .logoCol, .footerLogo > a {
        max-width: 200px;
        display: block;
    }

    .navLink > ul > li + li {
        padding-left: 24px;
    }

    .bannerContent > h1 {
        font-size: 46px;
        margin-bottom: 30px;
    }

    .bs .form-control {
        height: 50px;
        padding: 10px 60px 10px 20px;
    }

    .bs .searchIconBtn {
        font-size: 28px;
    }

    .sectionSpace {
        padding: 60px 0;
    }

    .lgTitle {
        font-size: 34px;
    }

    .mb-40 {
        margin-bottom: 30px;
    }

    .pCardStyle {
        padding: 20px 15px 20px;
        box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.14);
    }

    .img1 {
        box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
    }

    .pCardStyle .btnCol {
        padding-top: 15px;
    }

    .accordionCol {
        margin-top: 20px;
    }

    .contactInfo {
        max-width: 100%;
    }

    .footerSection {
        padding: 20px 0;
    }

    .mdTitle {
        font-size: 26px;
    }

    .lblStyle {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .form-control {
        font-size: 14px;
    }

    .spinnerIcon {
        font-size: 80px;
        margin-bottom: 20px;
    }

    .modelCol .titleCol > h2 {
        padding-bottom: 10px;
    }

    .loginCol {
        width: 370px;
        padding-right: 15px;
    }

    .stepNumber {
        max-width: 780px;
    }

    .ownerText {
        width: 190px;
    }

    .ownerInfo > ul > li::before {
        left: 226px;
    }
}

@media (min-width: 768px) and (max-width:991px) {
    .modalWd-xl .modal-dialog, .modalWd-lg .modal-dialog {
        max-width: 700px;
    }
}

@media (min-width: 1200px) {
    .qr-desktop-position {
        position: absolute;
        right: 0;
        top: 0;
    }
}

@media (max-width:991px) {
    .navCol {
        position: fixed;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 99;
        background-color: var(--white);
        overflow-y: auto;
        -webkit-transform: translate(-100%, 0);
        -ms-transform: translate(-100%, 0);
        transform: translate(-100%, 0);
        -webkit-transition: all 300ms ease-in-out 0s;
        -o-transition: all 300ms ease-in-out 0s;
        transition: all 300ms ease-in-out 0s;
        width: 260px;
        box-shadow: 0 0 20px rgba(172, 172, 172, 0.1);
        padding: 20px;
        border-right: 1px solid rgba(0, 0, 0, 0.1);
    }

    .actNav .navCol {
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    .navLink > ul {
        display: block;
    }

        .navLink > ul > li + li {
            padding-left: 0;
        }

    .menuBackdrop {
        position: fixed;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        z-index: 98;
        -webkit-transition: all 300ms ease-in-out 0s;
        -o-transition: all 300ms ease-in-out 0s;
        transition: all 300ms ease-in-out 0s;
    }

    .actNav .menuBackdrop {
        opacity: 1;
        pointer-events: initial;
    }

    .actNav .bar {
        background-color: var(--white);
    }

    .bannerSection {
        padding: 80px 0 100px;
    }

    .img1 {
        box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
        width: 100%;
        margin-bottom: 15px;
        text-align: center;
    }

        .img1 img {
            width: 100%;
        }

    .img2 {
        text-align: center;
    }

    .contentCol, .contentCol2 {
        max-width: 100%;
        text-align: center;
    }

    .mb-40 {
        margin-bottom: 15px;
    }

    .listStyle > li {
        padding-left: 22px;
        text-align: left;
    }

    .pCardStyle {
        margin-bottom: 20px;
    }

    .lgTitle {
        font-size: 28px;
    }

    body {
        font-size: 14px;
    }

    .lh-md {
        line-height: 1.6;
    }

    .paymentCard > ul > li + li {
        margin-left: 6px;
    }

    .paymentCard > ul > li {
        font-size: 28px;
    }

    .pannelBody + .pannelBody {
        margin-top: 10px;
    }

    .formSection {
        margin: 15px 0;
    }

    .contactInfo > ul > li {
        padding-left: 28px;
        line-height: 1.6;
    }

    .cIcon {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }

    .contactInfo > ul > li + li {
        margin-top: 8px;
    }

    .formStyle textarea.form-control {
        min-height: 110px;
    }

    .footerCol > p {
        padding-top: 10px;
    }

    .mdTitle {
        font-size: 20px;
    }

    .infoInnerCol {
        padding-top: 20px;
    }

    .formStyle2.form_auto {
        width: 100%;
    }

    .form-control {
        height: 50px;
    }

    .modelStyle .modal-content {
        padding: 60px 20px 30px;
        border: 0;
        border-radius: 0;
    }

    .loginCol {
        width: 100%;
        padding-right: 0;
        padding-bottom: 20px;
    }

    .stepNumberCol {
        padding: 15px 15px 10px 15px;
    }

    .radioStyle .form-check-input {
        margin: 0 auto 10px;
    }

    .qrCode {
        width: 241px;
    }

    .qrCodeImg {
        width: 46px;
    }

    .btn {
        font-size: 14px;
    }

    .modelStyle2 .modal-content {
        padding: 20px;
    }

    .headerModal {
        margin: 20px 0;
    }

    .modlCheckIcon {
        min-height: auto;
        margin-bottom: 40px;
        padding-top: 20px;
    }

        .modlCheckIcon > i {
            font-size: 80px;
        }

    .accordionCol {
        margin-top: 10px;
    }
}

@media (max-width:767px) {
    .headerRightCol .btn {
        padding: 8px 15px;
    }

    .btn {
        padding: 12px 15px;
        font-size: 14px;
    }

    .headerHgt {
        height: 67px;
    }

    .bannerContent {
        max-width: 100%;
        text-align: center;
    }

        .bannerContent > h1 {
            font-size: 40px;
            margin-bottom: 20px;
        }

        .bannerContent > p {
            max-width: 100%;
        }

    .bannerSearch {
        margin: 0 auto;
    }

    .sectionSpace.motorconsulta {
        padding-top: 20px;
    }

    .lgTitle {
        font-size: 24px;
    }

    .footerSection {
        text-align: center;
        padding: 30px 0;
    }

    .footerLogo > a {
        margin: 0 auto;
    }

    .sectionSpace {
        padding: 40px 0;
    }

    .bs .form-control {
        height: 45px;
        padding: 10px 45px 10px 15px;
        font-size: 14px;
    }

    .bs .searchIconBtn {
        font-size: 20px;
        right: 15px;
    }

    .formSection {
        margin: 15px 0 0;
    }

    .contactInfo {
        padding-top: 15px;
    }

    .mdTitle {
        font-size: 16px;
    }

    .form-control {
        height: 45px;
    }

    .footerLinks {
        padding-bottom: 30px;
    }

    .spinnerIcon {
        font-size: 70px;
    }

    .btnClose {
        position: absolute;
        right: 20px;
        top: 18px;
    }

    .modelCol .titleCol > h2 {
        font-size: 20px;
        margin-bottom: 0;
    }

    .stepNumber > li {
        width: 100%;
    }

    .ownerText {
        width: 160px;
    }

    .ownerInfo > ul > li::before {
        left: 196px;
    }

    .modlCheckIcon > img {
        width: 70px;
    }

    .modlCheckIcon {
        margin-bottom: 20px;
        padding-top: 0;
    }

    .modelStyle2 .modal-content {
        padding: 15px;
    }

    .vCardText {
        padding: 10px 0;
    }

    .accordionStyle button.accordion-button {
        padding: 8px 30px 8px 8px;
        font-size: 14px;
    }

    .accordionStyle .accordion-button::after {
        right: 14px;
        height: 7px;
        width: 7px;
    }

    .checkStyle .form-check-input {
        width: 16px;
        height: 16px;
        min-width: 16px;
    }
}

@media (max-width:585px) {
    .headerHgt {
        height: 54px;
    }

    .bannerContent > h1 {
        font-size: 34px;
    }

    .listStyle > li {
        padding-left: 15px;
    }

        .listStyle > li + li {
            margin-top: 8px;
        }

    .listIcon svg {
        width: 8px;
    }

    .titleCol h2.lgTitle br {
        display: none;
    }

    .infoInnerCol {
        padding-top: 0;
    }

    .formStyle textarea.form-control {
        min-height: 80px;
    }

    hr {
        margin: 15px 0;
    }

    .ownerText {
        width: 100px;
    }

    .ownerInfo > ul > li::before {
        left: 136px;
    }

    .headerRightCol {
        padding-top: 10px;
    }

    .pannelBodyheader {
        padding: 15px 30px 15px 15px;
    }

        .pannelBodyheader::before {
            right: 15px;
        }

    .pannelContent {
        padding: 5px;
    }

    .pCardStyle .btnCol {
        padding-top: 0;
    }
}

@media (max-width:485px) {
    .logoCol, .footerLogo > a {
        max-width: 180px;
    }

    .headerHgt {
        height: 52px;
    }

    .form-control {
        height: 40px;
    }

    .btn {
        padding: 10px 15px;
    }

    .modelStyle .modal-content {
        padding: 50px 15px 30px;
    }

    .spinnerIcon {
        font-size: 60px;
        margin-bottom: 15px;
    }

    .btnClose {
        right: 15px;
        top: 15px;
    }
}
/* Estilos para a sobreposição de tela inteira */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Cor de fundo com transparência */
    z-index: 1000; /* Z-index para garantir que esteja na parte superior */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Estilos para o ícone de carregamento */
.loading-spinner {
    text-align: center;
    color: white;
    font-size: 2em;
}

#loginModal .btn-close {
    color: white;
}

a, button, .eye-icon, .download-pdf, #iconeOlho {
    cursor: pointer;
}

/* Spinner de carregamento utilizado nas Telas */
#loadingSpinner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1050; /* Garante que o spinner fique acima de outros elementos */
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
/* */

/* Estilização do trecho de paginação utilizado em Tabelas */
.pagination {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    user-select: none;
}

.pagination-arrow {
    cursor: pointer;
    color: var(--primaryColor);
}

    .pagination-arrow:hover {
        opacity: 0.7;
    }

.page-numbers {
    display: flex;
    gap: 5px;
}

.page-number {
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
    background-color: #f0f0f0;
    margin: 0 2px;
}

    .page-number.active {
        background-color: var(--secondaryColor);
        color: var(--primaryColor);
    }

.logout-btn {
    padding-left: 2rem;
    padding-right: 2rem;
    min-width: 120px; /* Largura mínima para garantir consistência */
}
/* */


/* Estilização dos botões utilizada em tela Minha Conta */
.option-btn {
    cursor: pointer;
    padding: 5px 10px;
}

    .option-btn.active {
        background-color: var(--primaryColor);
        font-weight: bold;
        color: white;
    }

    .option-btn:hover {
        background-color: var(--primaryColor);
        color: white;
        font-weight: bold;
    }
/* */

/* Estilização para o toggle normal utilizado na HomePage */
.tab-selector {
    padding-bottom: 8px;
}

.tab-option {
    cursor: pointer;
    padding: 0.5rem 1rem;
    position: relative;
    transition: color 0.3s ease;
    color: inherit;
}

    .tab-option.active {
        color: var(--primaryColor);
        font-weight: 500;
    }

.tab-indicator {
    position: absolute;
    bottom: 0;
    height: 3px;
    background-color: var(--primaryColor);
    transition: all 0.3s ease;
}
/* */

/* Estilização para o toggle em formato de Pill */
.tab-selector-pill {
    background-color: #f8f9fa;
    border-radius: 50px;
    display: inline-flex;
    position: relative;
    padding: 2px;
    overflow: hidden;
}

.tab-option-container {
    display: flex;
    position: relative;
    z-index: 1;
    background-color: #f8f9fa;
    border-radius: 50px;
}

.tab-option-pill {
    cursor: pointer;
    padding: 0.5rem 1.5rem;
    color: var(--bs-gray-600);
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

    .tab-option-pill.active {
        color: white;
    }

.tab-highlighter {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    background-color: var(--primaryColor);
    z-index: 1;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 50px;
}

    .tab-highlighter.left {
        left: 0;
        transform: translateX(0);
    }

    .tab-highlighter.right {
        left: 0;
        transform: translateX(100%);
    }

.hidden-card {
    display: none !important;
}

.visible-card {
    display: flex !important;
}
/* */

.welcome-message {
    border: 1px solid rgba(255,255,255,0.1);
}

.benefits-list li {
    padding-left: 1.5rem;
    position: relative;
}

    .benefits-list li i {
        position: absolute;
        left: 0;
        top: 3px;
    }


/* Estilo para itens desabilitados */
.disabled-action {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Estilo para o spinner de processamento */
.processing-spinner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Estilo para checkbox desabilitado */
input[type="checkbox"]:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.saldo-oculto {
    filter: blur(5px);
    user-select: none;
}

.eye-icon {
    transition: all 0.3s ease;
}

#iconeNotificacao::after {
    display: none !important;
}
