* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-image: url('https://static-img.motorleads.co/orcamento-motorleads-co/fundo-orcamento.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    overflow-x: hidden;
}

header {
    position: fixed;
    width: 100vw;
    z-index: 999999;
    background: linear-gradient(90deg, #19204B 0%, #19375F 100%);
}

.logo-desktop {
    display: block;
    width: 310px;
}

.logo-mobile {
    display: none;
}

.headerContainer {
    width: 100%;
    height: 95px;
    max-width: 75%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progressBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.progressBox.mobile {
    display: none;
}

.progressWrapper {
    width: 202px;
    background-color: #e0e0e0;
    border-radius: 4px;
    height: 3px;
    margin-bottom: 8px;
    position: relative;
}

.progressBar {
    height: 100%;
    width: 0%;
    background-color: #009CFF;
    transition: width 0.3s ease;
    position: relative;
}

.progressBar::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    width: 6px;
    height: 6px;
    background-color: #2196f3;
    border-radius: 50%;
    box-shadow: 0 0 2px #000;
}

.progressLabel {
    color: #aaaaaa;
    user-select: none;
}

.returnStepLabel {
    color: #aaaaaa;
    cursor: pointer;
    user-select: none;
}

.valuesContainer {
    width: 310px;
    display: flex;
    justify-content: end;
}

.valuesBox {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background-color: #00000040;
    padding: 8.5px 22px;
    border-radius: 50px;
}

.monthlyTotal, .setupTotal {
    display: flex;
    flex-direction: column;
    user-select: none;
}

.monthlyTotal {
    padding: 0 20px 0 12px;
}

.setupTotal {
    padding: 0 12px;
    border-left: 2px solid #ffffff30;
}

.monthlyTotal span, .setupTotal span {
    font-size: 11px;
    line-height: 18.7px;
}

.monthlyTotal strong, .setupTotal strong {
    font-size: 17.5px;
    line-height: 18.7px;
}

main {
    padding-top: 95px;
    min-height: 100vh;
}

.step {
  transition: opacity 0.5s ease, transform 0.5s ease;
  opacity: 0;
  transform: translateX(30px);
  pointer-events: none;
}

.step.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.step1 {
    max-width: 75%;
    padding: 60px 0;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 12%;
}

.textStep {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 32px;
}

.step6 .textStep {
    gap: 10px;
}

.titleEmoji {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.step5 .titleEmoji {
    width: 22px;
    height: 22px;
    margin-bottom: 6px;
}

.titleStep1 {
    padding-right: 8%;
    line-height: 55px;
    margin: 0;
}

.descriptionStep1 {
    font-size: 22px;
    opacity: 85%;
    margin: 0;
}

#motorleadsForm {
    display: flex;
    gap: 20px;
}

.stepImage {
    width: 550px;
    padding: 21.5px 0;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    padding-left: 4px;
    font-size: 18px;
}

.form-control {
    background-color: transparent !important;
    height: 52px;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid #ffffff70;
    color: #fff !important;
}

.form-control::placeholder {
    color: #fff;
    opacity: 70%;
    font-weight: 400;
}

.form-control:focus {
    background-color: transparent !important;
}

#inputOtherDMS,
#inputOtherCRM,
#otherInputIntegrador {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease-in-out, max-height 0.4s ease-in-out, padding 0.3s ease;
    padding-top: 0;
    padding-bottom: 0;
}

#inputOtherDMS.show,
#inputOtherCRM.show,
#otherInputIntegrador.show {
    opacity: 1;
    max-height: 200px;
    padding-top: 10px;
    padding-bottom: 10px;
}

#inputOtherDMS, #inputOtherCRM {
    margin-top: 10px;
}

#otherInputIntegrador {
    margin-top: 20px;
    width: 50%;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input:-webkit-autofill {
    background-color: transparent !important;
    box-shadow: 0 0 0px 1000px transparent inset !important;
    -webkit-text-fill-color: #fff !important;
    transition: background-color 5000s ease-in-out 0s;
}

.btn {
    width: 109px;
    height: 41px;
    background-color: #009CFF;
    color: #fff;
    border: 0;
    font-size: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.btn:hover {
    background-color: #084C84;
    color: #fff;
    transition: 0.3s;
}

.btn:active {
    background-color: #084C84 !important;
    color: #fff;
    box-shadow: 0 0 0 2px #084C84 !important;
}

.btn:focus {
    background-color: #084C84;
    box-shadow: 0 0 0 2px #084C84;
}

.step5 .btn, .step6 .btn {
    display: block;
    margin: 30px auto 0 auto;
    float: none !important;
}

.formBox3 .btn {
    margin: 0;
}

.step2, .step5 {
    width: 55%;
    margin: 0 auto;
    padding: 60px 0;
}

.step9 {
    width: 70%;
    margin: 0 auto;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.step9 .descriptionStep2 {
    width: 80%;
    margin: 0 auto;
}

.step9Image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.step9Image img {
    width: 90%;
}

.step9Image .timelineMobile {
    display: none;
}

.step9 .btn {
    width: auto;
    padding: 0 24.5px;
    margin-top: 50px;
}

body.step9Active .progressBox,
body.step9Active .valuesContainer {
    display: none !important;
}

body.step9Active .headerContainer {
    justify-content: center !important;
}

body.step9Active .logo-desktop {
    display: block !important;
}

body.step9Active .logo-mobile {
    display: none !important;
}

body.step9Active main {
    padding-top: 95px;
}

.step8 {
    width: 100%;
}

.step6 {
    width: 75%;
    margin: 0 auto;
    padding: 60px 0;
}

.step7 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.step7 .stepBox {
    width: 100%;
    max-width: 1000px;
    padding: 57px 0 0 12.7%;
    box-sizing: border-box;
}

.step7 .stepImage {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
}

.titleStep2 {
    text-align: center;
    line-height: 55px;
    margin: 0;
}

.descriptionStep2 {
    font-size: 22px;
    opacity: 85%;
    margin: 0;
    text-align: center;
}

.step6 .descriptionStep2 {
    font-size: 20px;
}

#particularity {
    margin-top: 12px;
}

textarea.form-control {
    height: 147px;
}

.confirmBox {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: #e8e4ec;
    color: black;
    margin: 20px auto 30px auto;
    padding: 10px 12px 44px 12px;
    font-weight: 400;
    font-size: 18px;
    border-radius: 10px;
    border: 3px solid transparent;
    transition: border 0.3s;
}

.confirmBox .prices {
    text-align: end;
    width: 44%;
}

.option {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    background: white;
    color: black;
    margin: 15px auto;
    padding: 10px 15px 10px 15px;
    border-radius: 15px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: border 0.3s;
    overflow: visible !important;
    position: relative !important;
    z-index: 1;
}

.group_1 .option {
    align-items: center;
}

.option.selected {
    border: 3px solid #007bff;
}

.verticalBox {
    display: flex;
    flex-direction: column;
}

.step6 .dropdown .labelStep3 {
    color: #fff;
    font-weight: 400;
    margin: 15px 0 12px 0;
}

.step6 .dropdownHeader {
    padding: 22px 19px;
}

.step6 .option {
    width: 65%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 15px;
    cursor: pointer;
    border: 0px;
}

.step6 .option.negative {
    background: transparent;
    color: #ffffff40;
    margin-bottom: 55px;
    padding: 0;
}

.step6 .option.positive.selected {
    background-color: #009CFF;
    color: #fff;
}

.step6 .option.negative.selected {
    color: #fff;
    border: 0px;
}

.step6 .option.positive:hover {
    background-color: #009CFF;
    color: #fff;
    transition: 0.3s;
}

.step6 .option.negative:hover {
    color: #fff;
    transition: 0.3s;
}

.step6 .textStep.secondTitle {
    padding: 0 180px;
}

.step6 .animatedReveal {
    width: 65%;
    margin: 0 auto 20px auto;
    max-height: 0;
    opacity: 0;
    transform: translateY(-20px);
    overflow: hidden;
    transition:
        opacity 0.3s ease,
        transform 0.5s ease,
        max-height 0.4s ease;
}
  
.step6 .option.positive.selected[data-group="call"] ~ .animatedReveal[data-group="call"],
.step6 .option.positive.selected[data-group="rdstation"] ~ .animatedReveal[data-group="rdstation"],
.step6 .option.positive.selected[data-group="whatsapp"] ~ .animatedReveal[data-group="whatsapp"] {
    max-height: 1000px;
    opacity: 1;
    transform: translateY(0);
}

.btnBack {
    background: transparent;
    color: #fff;
    border: 0;
    text-decoration: underline;
    cursor: pointer;
}

.btnBack[data-group="call"] {
    margin-bottom: 40px;
}

.dropdownHeader.maker, .dropCRM .dropdownHeader {
    padding: 1px 10px 0 19px;
}

.dropdown-selected-wrapper {
    position: relative;
    width: 100%;
}

#searchMakers, #searchCRM {
    font-family: 'Poppins', sans-serif;
    margin: 0 !important;
    width: -webkit-fill-available;
    padding: 0;
    color: #666666 !important;
    border: 0;
    box-shadow: none;
    font-size: 16px;
    z-index: 99999;
}

#searchMakers::placeholder, #searchCRM::placeholder {
    font-size: 16px;
    color: #666666 !important;
    font-weight: 400;
}

.dropdown.open #searchMakers, .dropdown.open #searchCRM {
    display: block !important;
}

.selectedMaker, .selectedCRM {
    width: -webkit-fill-available;
    padding: 14px 0 !important;
}

.dropdown.open .selectedMaker, .dropdown.open .selectedCRM {
    display: none;
}

/* .plansBox { */
    /* display: flex; */
    /* gap: 18px; */
    /* margin-top: 11px; */
    /* margin-bottom: 43px; */
/* } */
/*  */
/* .planOption { */
    /* width: fit-content; */
    /* cursor: pointer; */
    /* border: 3px solid transparent; */
/* } */

.plansBox {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px; /* Espaço entre os blocos */
  }

  .planOption {
    flex: 1 1 calc(50% - 20px); /* 2 colunas, descontando o gap */
    box-sizing: border-box;
  }

  .planOption img {
    width: 100%;
    display: block;
    cursor: pointer;
  }

.planOption.selected {
    border: 3px solid #ffffff90;
    border-radius: 15px;
    z-index: 99;
}

.typeTitle {
    font-size: 20px;
    font-weight: 500;
}

.step6 .typeTitle {
    text-align: center;
}

.typePrices {
    font-size: 15px;
}

.step3, .step4 {
    max-width: 75%;
    padding: 60px 0;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 6%;
}

.labelStep3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}

.stepBox {
    padding-right: 70px;
}

.dropdown {
    color: #5E636690;
    border-radius: 10px;
    margin: 0 auto 20px auto;
    position: relative;
    overflow: hidden;
}

.dropdown.no_margin {
    margin: 0;
}

.step4 .dropdown {
    margin: 0 auto;
}

.dropdown.whatsapp-inboxes {
    margin: 0;
}

.dropdownHeader {
    padding: 15px 10px 15px 19px;
    cursor: pointer;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border-radius: 10px 10px 0 0;
}

.dropdownOptions {
    background: #f6f6f6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown.open .dropdownOptions {
    max-height: 250px;
    overflow: auto;
}

.dropdownOptions div {
    position: relative;
    display: flex;
    align-items: center;
    padding: 12px 15px;
    cursor: pointer;
}

.dropdownOptions div.selected {
    padding-left: 38px;
    transition-delay: 0.2s;
}

.dropdownOptions.group_3 div.selected {
    transition-delay: 0s;
    transition: 0.2s;
}

.dropdown.open .dropdownOptions div.selected::before {
    content: url('https://static-img.motorleads.co/orcamento-motorleads-co/checkOption.png');
    position: absolute;
    left: 13px;
    top: 45%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
}

.dropdownOptions div:hover {
    background: #ddd;
}

.arrow {
    transition: transform 0.3s ease;
    padding: 8px 9px;
}

.dropdown.open .arrow {
    transform: rotate(180deg);
}

.formBox3 {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.step5 .questionBox {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 0 10px;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    align-content: flex-start;

}

.step5 .questionBox .labelStep3 {
    font-size: 40px;
    text-align: center;
    width: 100%;
}

.step5 .checkBox {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 33px;
}

.checkBox {
    display: flex;
    flex-direction: column;
}

.checkOptionBox {
    display: flex;
    gap: 25px;
}

.checkOption {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    cursor: pointer;
    color: #ffffff90;
}

.checkOption input[type="checkbox"],
.checkOption input[type="radio"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    transition: border-color 0.2s ease;
    cursor: pointer;
}

.checkOption input[type="checkbox"]:checked,
.checkOption input[type="radio"]:checked {
    border-color: #4b8bff;
}

.checkOption input[type="checkbox"]::before,
.checkOption input[type="radio"]::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4b8bff;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.checkOption input[type="checkbox"]:checked::before,
.checkOption input[type="radio"]:checked::before {
    opacity: 1;
}

.dropdown.whatsapp-users,
.dropdown.whatsapp-inboxes {
    width: 100%;
}

label {
    cursor: pointer;
}

.confirmation {
    width: 60%;
    margin: 0 auto;
    padding: 60px 0;
}

.summary {
    width: 100%;
    background-color: #050F1E;
}

.summaryBox {
    width: 60%;
    margin: 0 auto;
    padding: 28px 0 195px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.titleSummary {
    padding-bottom: 12px;
    border-bottom: 2px solid #C3C3C3;
}

.textPricesBox span img {
    margin-right: 7.5px;
}

.btnConfirmation {
    width: 100%;
    background: linear-gradient(to right, #2E7D32 0%, #2BB432 100%);
    position: relative;
    overflow: hidden;
    margin: 0px;
    transition: background 0.3s ease;
    z-index: 1;
}

.btnConfirmation span {
    color: #fff;
}

.btnConfirmation::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, #296e2c 0%, #2E7D32 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.btnConfirmation:active {
    box-shadow: 0 0 0 2px #2E7D32 !important;
}

.btnConfirmation:focus {
    box-shadow: 0 0 0 2px #2E7D32;
}

.btnConfirmation:hover::before {
    opacity: 1;
}

.btnConfirmation * {
    position: relative;
    z-index: 1;
}

.btnConfirmation:active {
    border: 0px solid transparent;
}

.btnConfirmation:focus {
    border: 0px solid transparent;
}

.backToTop {
    text-decoration: underline;
    cursor: pointer;
}

.textPricesBox {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
}

.textPricesBox.totalPrice {
    font-size: 20px;
    font-weight: bold;
}

.confirmBox {
    display: flex;
    flex-direction: column;
    background-color: #e8e4ec;
    color: black;
    margin: 20px auto 30px auto;
    padding: 10px 12px;
    font-weight: 400;
    font-size: 18px;
    border-radius: 10px;
    border: 3px solid transparent;
    gap: 0;
}

.infoLinha {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
    gap: 10px;
}

.confirmBox .infoLinha + .infoLinha {
    border-top: 1px solid #ccc;
    margin-top: 8px;
    padding-top: 12px;
}

.dropdownHeader span {
    color: #666666;
}

.dropdownOptions div {
    color: #666666;
}

.option img.verifica {
    width: 35px;
    height: 35px;
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    margin: auto 0;
    transition: transform 0.3s ease;
}

/* .group_6 .option img.verifica {
    width: 35px;
    height: 35px;
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    position: absolute;
    right: 80px;
    top: 20px;
    transition: opacity 0.3s ease, transform 0.3s ease;
} */
  
.option.selected img.verifica {
    opacity: 1;
    transform: scale(1);
}

.group_6 .option.selected .tipImg {
    display: none;
}

.option .tipImg {
    opacity: 1;
    transform: scale(1);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.option.selected .tipImg {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.labelTip {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.d-none {
    display: none;
}

.error-message {
    color: #ff6666;
    font-size: 14px;
    margin-top: 5px;
}

.form-control.error {
    border-color: #ff6666;
}

.dropdown.error .dropdownHeader {
    border: 1px solid #ff6666;
    border-radius: 4px;
}

.error-message {
    color: #ff6666;
    font-size: 12px;
    margin-top: 4px;
}

.error-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #ff4d4f;
    color: white;
    padding: 12px 20px 12px 12px;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    pointer-events: none;
    z-index: 99999999999;
}

.error-popup img {
    width: 20px;
    height: 20px;
}

.error-popup.show {
    opacity: 1;
    transform: translateY(0);
}

.tipImg {
    position: relative;
    display: inline-block;
    cursor: auto;
    z-index: 50;
}

.tipImg::after {
    content: attr(data-tip);
    position: absolute;
    left: calc(100% + 35px);
    top: 50%;
    transform: translateY(-50%);
    background: #1976D2;
    color: #fff;
    padding: 8px 12px;
    border-radius: 10px;
    white-space: normal;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    min-width: 205px;
    font-size: 12.5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    z-index: 100;
}

.animatedReveal .tipImg::after {
    width: 250px;
}

.tipImg::before {
    content: "";
    position: absolute;
    left: 39px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: transparent #1976D2 transparent transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 101;
}

.tipImg:hover::after,
.tipImg:hover::before {
    opacity: 1;
}

.labelTip .tipImg::after {
    left: calc(100% + 19px);
}

.labelTip .tipImg::before {
    left: 14px;
}

.popup-success {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.popup-success.active {
    opacity: 1;
    pointer-events: all;
}

.popup-success .popup-content {
    transform: scale(0.8);
    transition: transform 0.4s ease;
}

.popup-success.active .popup-content {
    transform: scale(1);
}

.popup-success .popup-content img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

input:-webkit-autofill {
    -webkit-text-fill-color: #fff !important;
}

input:-internal-autofill-selected {
    background-color: transparent !important;
}

@media (max-width: 1680px) {
    .step1 {
        gap: 2%;
    }
}

@media (max-width: 1540px) {
    .step1, .step3, .step4 {
        max-width: 85%;
    }

    .step2, .step5 {
        width: 60%;
    }

    .step1 {
        gap: 2%;
    }

    .step6 .option, .step6 .animatedReveal {
        width: 80%;
    }

    .step7 .stepBox {
        padding: 57px 7% 0 8%;
    }
    
    .headerContainer {
        max-width: 85%;
    }

    .step9 .descriptionStep2 {
        width: 100%;
    }
}

.progressBar {
    width: 14.28%;
}

@media (max-width: 780px) {
    .headerContainer {
        max-width: 100vw;
        padding: 0 15px 0 10px;
    }

    .logo-mobile {
        display: block;
        width: 75px;
    }

    .logo-desktop {
        display: none;
    }

    .progressBox {
        display: none;
        width: 270px;
    }

    .progressBox.mobile {
        display: flex;
        margin: 12px auto;
    }

    .valuesContainer {
        width: auto;
    }

    .valuesBox {
        padding: 8.5px 14px;
    }

    main {
        padding-top: 154px;
        overflow-x: hidden;
    }

    .stepImage {
        display: none !important;
    }
    
    .stepBox {
        padding: 0;
    }
    
    .textStep {
        gap: 10px;
    }

    .titleStep1, .titleStep2 {
        padding: 0;
        font-size: 28px;
        line-height: normal;
    }
    
    .descriptionStep1, .descriptionStep1 {
        font-size: 18px;
    }

    .step {
        max-width: 100%;
        width: 100%;
        padding: 45px 20px 90px 20px;
    }

    .typeTitle {
        font-size: 16px;
        line-height: 1.3;
    }

    .step6 .option.negative {
        color: #ffffff70;
        margin-bottom: 15px;
    }

    .typePrices {
        font-size: 14px;
    }

    .step5 .questionBox {
        align-items: center;
    }

    .step5 .titleStep2, .step5 .descriptionStep2 {
        text-align: left;
    }

    .step5 .questionBox .labelStep3 {
        text-align: left;
        font-size: 28px;
    }

    .step6 .titleStep2 {
        font-size: 26px;
    }
    
    .step5 .checkBox {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    #otherInputIntegrador {
        width: 100%;
    }
    
    .step6 .textStep.secondTitle {
        padding: 0;
    }

    .step6 .typeTitle {
        text-align: center;
    }

    .step6 .dropdown {
        width: 100%;
    }

    .step6 .descriptionStep2 {
        font-size: 18px;
    }
    
    .step6 .option {
        width: 90%;
    }

    .step7 .stepBox {
        padding: 0;
    }

    .plansBox {
        flex-direction: column;
    }

    .confirmation {
        width: 100%;
        padding: 45px 15px 90px 15px;
    }

    .summaryBox {
        width: 90%;
        padding: 28px 0 45px 0;
    }

    .step6 .animatedReveal {
        width: 100%;
    }

    .step8 {
        padding: 0 !important;
    }

    .step8 .confirmBox {
        font-size: 15.5px !important;
        padding: 8px 10px;
    }

    .step8 .infoLinha .name {
        width: auto;
    }

    .group_6 .option img.verifica {
        width: 15px !important;
    }

    .group_6 .option.selected img.verifica {
        width: 35px !important;
    }

    .step9 .descriptionStep2 {
        width: 100%;
        font-size: 18px;
    }

    .step9Image img {
        width: 95%;
    }

    .step9 .titleStep2 {
        font-size: 30px;
    }
    
    .tipImg::after {
        right: calc(100% + 15px);
        left: auto;
    }
    
    .tipImg::before {
        right: 20px;
        left: auto;
        border-color: transparent transparent transparent #1976D2;
    }
    
    .labelTip .tipImg::after {
        right: calc(100% + 19px);
        left: auto;
    }
    
    .labelTip .tipImg::before {
        right: 14px;
        left: auto;
    }

    .tipImg::after,
    .tipImg::before {
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .tipImg:hover::after,
    .tipImg:hover::before,
    .tipImg.active-tip::after,
    .tipImg.active-tip::before {
        opacity: 1;
    }

    .confirmBox .prices {
        display: flex;
        flex-direction: column;
        text-align: right;
        gap: 4px;
        width: 50%;
    }

    .confirmBox .pricesSite {
        width: 65% !important;
    }
    
    .confirmBox .priceBrand {
        width: 82% !important;
    }

    .confirmBox .pricesTrafego {
        width: 110% !important;
    }

    .confirmBox .price-item {
        display: block;
    }

    .separator-desktop {
        display: none;
    }

    .step9Image .timelineDesktop {
        display: none;
    }

    .step9Image .timelineMobile {
        display: block;
    }

    .step9 .btn {
        margin-top: 80px;
    }

    .error-popup {
        width: 72%;
        right: 13px;
    }
    #step8 span {
    display: inline-block; /* ou block */
    white-space: pre-wrap; /* mantém espaços e quebras */
    }
}
