* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: none;
    scrollbar-width: thin;
    scrollbar-color: #d6d6d6 #ffffff;
}


*::-webkit-scrollbar {
    width: 6px;
}

*::-webkit-scrollbar-track {
    background: #ffffff;
}

*::-webkit-scrollbar-thumb {
    background-color: #d6d6d6;
    border-radius: 16px;
    border: 0px none #ffffff;
}

a {
    color: inherit;
    text-decoration: none;
}

:root {
    --primary-color: #D4FF00;
    --secundary-color-v1: #6B4FDC;
    --secundary-color-v2: #424242;
    --secundary-color-v3: #222222;
    --gray-v1: #000000;
    --gray-v2: #878787;
    --gray-v3: #E5E5E5;
    --gray-v4: #FFFFFF;
    --gray-v5: #CCCCCC;
    --gray-v6: #AAAAAA;
    --primary-font: 'DM Sans', sans-serif;
    --secundary-font: 'Inter', sans-serif;

    --neutral-000: #222D2A;
    --neutral-100: #3A4A46;
    --neutral-200: #536762;
    --neutral-300: #6E847F;
    --neutral-400: #8AA19C;
    --neutral-500: #A7BEB9;
    --neutral-600: #C6DBD6;
    --neutral-700: #DDECE8;
    --neutral-800: #EBF3F1;
    --neutral-900: #F6F9F9;
    --neutral-1000: #FFFFFF;
    --primary-000: #4A5900;
    --primary-100: #758C00;
    --primary-200: #9FBF00;
    --primary-300: #BEDF19;
    --primary-400: #D4FF00;
    --primary-500: #DDFF39;
    --primary-600: #E7FF73;
    --primary-700: #F1FFAC;
    --primary-800: #FAFFE5;
    --primary-gradient: linear-gradient(125.5deg, #D4FF00 52.14%, #BDFF00 100%);
    --others-success-400: #16B568;
    --others-success-900: #EDFFF8;
    --others-alert-400: #FFD747;
    --others-alert-500: #FFE89A;
    --others-alert-900: #FFF8E6;
    --others-error-400: #FF005C;
    --others-error-900: #FFF3F8;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.4rem;
    font-family: var(--primary-font);
    font-weight: 500;
    background: var(--neutral-900);
}

.app-col-1 { width: 8.33%; }
.app-col-2 { width: 16.66%; }
.app-col-3 { width: 25%; }
.app-col-4 { width: 33.33%; }
.app-col-5 { width: 41.66%; }
.app-col-6 { width: 50%; }
.app-col-7 { width: 58.33%; }
.app-col-8 { width: 66.66%; }
.app-col-9 { width: 75%; }
.app-col-10 { width: 83.33%; }
.app-col-11 { width: 91.66%; }
.app-col-12 { width: 100%; }

[class*="col-"] {
    padding: 12px;
}

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

.bold {
    font-weight: 800 !important;
}

.font-36 { font-size: 3.6rem; }
.yellow-color { color: var(--primary-color); }

select:disabled {
    background: none;
    opacity: 25%;
}

#app-header {
    width: 100%;
    height: 83px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--neutral-1000);
    position: fixed;
    z-index: 99;
    border-bottom: 1px solid var(--neutral-800);
}

.app-main {
    padding: 110px 0;
}

.app-menu-desktop {
    display: flex;
}

.app-width-menu {
    width: 1005px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-width-menu > a > img {
    width: 231px;
    height: 32px;
    margin: 4px 0 0 4px;
}

.app-ul-menu {
    display: flex;
    list-style: none;
    margin-right: 15px;
}

.app-ul-menu a {
    font-family: var(--secundary-font);
    padding: 20px;
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.app-menu-mobile {
    display: none;
    width: 28px;
    height: 100%;
}

.menu-hamb {
    width: 100%;
    height: 3px;
    background: var(--neutral-000);
    margin: 6px 0;
    transition: all linear;
}

.app-menu-box-mobile {
    position: absolute;
    top: 66px;
    left: 0;
    width: 100%;
    background: var(--secundary-color-v2);
    z-index: 9;
    border-bottom: 2px solid var(--secundary-color-v2);
    height: 354px;
    overflow: hidden;
    transform-origin: top;
    transform: scaleY(0);
}

.app-open-menu-mobile {
    top: 66px;
    animation: .3s forwards openMenu;
}


@keyframes openMenu {
    from { transform: scaleY(0);}
    to { transform: scaleY(1);}
}

.app-menu-box-mobile ul {
    display: flex;
    flex-direction: column;
    list-style: none;
}

.app-menu-box-mobile a {
    font-family: var(--secundary-font);
    color: var(--primary-color);
    padding: 28px;
    display: block;
    font-size: 2.4rem;
    border-bottom: 1px solid var(--primary-color);
}

.app-menu-box-mobile a:hover {
    background: var(--neutral-000);
}

.app-width-content {
    width: 1025px;
    margin: 0 auto;
}

.app-simulation-one {
    display: flex;
    gap: 48px;
}

.app-simulation-one > section {
    width: 100%;
}

.app-simulation-results {
    flex-grow: 1;
}

.app-simulation-results {
    text-align: center;
}

.app-instructions {
    width: 100%;
    display: flex;
    border-radius: 24px;
    margin-top: 20px;
    position: relative;
    gap: 16px;
    align-items: flex-end;
}

.number-absolute {
    display: block;
    width: 80px;
    font-size: 6.8rem;
    color: var(--primary-color);
    font-weight: 700;
    position: absolute;
    top: 10px;
    left: -72px;
    text-align: right;
}

.app-instructions-simule-fgts {
    font-family: var(--primary-font);
    font-size: 5.6rem;
    color: var(--neutral-000);
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 80%;
}

.app-instructions > div > p {
    color: var(--neutral-200);
    font-weight: 500;
    display: flex;
}

.app-instructions > button {
    height: 40px;
    border-radius: 0.8rem;
    border: 1px solid var(--gray-v3);
    padding: 12px;
    color: var(--primary-color);
    background: none;
    font-family: var(--primary-font);
    line-height: 100%;
    transition: all ease-in-out .2s;
    font-weight: 700;
    cursor: pointer;
}

.app-instructions > button:hover {
    background: var(--primary-color);
    color: var(--secundary-color-v3);
    border-color: var(--primary-color);
}

.app-instructions > button:active {
    filter: brightness(0.5);
}

.img-logo-banco {
    margin: 16px 8px 0 0;
}

.app-texto-simule-fgts {
    font-size: 2rem;
    color: var(--gray-v4);
    margin-bottom: 2.4rem;
}

.app-simulation-results {
    width: 100%;
    display: flex;
    padding: 24px 32px 16px;
    border: 1px solid var(--gray-v3);
    border-radius: 24px;
    flex-direction: column;
    margin-bottom: 30px;
}

.app-simulation-results > p {
    color: var(--primary-color);
}

.app-simulation-results-description {
    font-size: 3rem;
}

.app-simulation-form-title-description {
    width: 100%;
    font-size: 1.2rem;
    color: var(--secundary-color-v2);
    margin: 12px;
    padding: 12px;
    background-color: rgb(250, 229, 173);
    border: 1px solid rgb(206, 180, 110);
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
}

.app-simulation-results-value {
    font-size: 6.8rem;
    font-weight: 800;
}

.app-form-simulation-one {
    border-radius: 16px;
    padding: 32px 32px 32px 32px;
    background: var(--neutral-1000);
    border: 1px solid var(--neutral-700);
}

.app-area-input-form {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    position: relative;
}

.currency-input-prefix {
    position: absolute;
    top: 45px;
    left: 16px;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--secundary-color-v3);
}

.app-area-button-form {
    display: flex;
    flex-direction: row;
    gap: 48px;
}

.app-area-button-form img {
    width: 24%;
    align-self: flex-start;
}

.app-form-simulation-one label {
    font-size: 1.5rem;
    color: var(--neutral-100);
    margin-bottom: 8px;
    font-weight: 400;
}

input[type="date"] {
    display:block;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    min-height: 1.2em;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    color: rgba(0, 0, 0, 0);
    opacity: 1;
    display: block;
    background: url(/static/img/calendar.svg) no-repeat;
    width: 20px;
    height: 20px;
    border-width: thin;
}

.app-form-simulation-one input[type=text],
.app-form-simulation-one input[type=date],
.app-form-simulation-one input[type=tel],
.app-form-simulation-one input[type=email] {
    width: 100%;
    border: 1px solid var(--neutral-700);
    border-radius: 1rem;
    height: 56px;
    align-items: center;
    padding: 16px;
    background: var(--gray-v4);
    font-family: var(--primary-font);
    font-size: 1.6rem;
    color: var(--neutral-000);
    font-weight: 700;
    transition: all ease-in-out .3s;
}

.app-form-simulation-one input[type=text]::placeholder,
.app-form-simulation-one input[type=date]::placeholder,
.app-form-simulation-one input[type=number]::placeholder,
.app-form-simulation-one input[type=email]::placeholder {
    color: var(--neutral-400);
    font-weight: 500;
}

.app-form-simulation-one input[type=text]:focus,
.app-form-simulation-one input[type=date]:focus,
.app-form-simulation-one input[type=number]:focus,
.app-form-simulation-one input[type=email]:focus {
    box-shadow: 0 0 0 4px var(--neutral-800);
    border: 1px solid var(--neutral-600)
}

.app-form-simulation-one input[type=checkbox] {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.app-form-description {
    display: flex;
    position: relative;
    justify-content: space-between;
    color: var(--gray-v6);
    font-size: 12px;
    margin-bottom: 10px;
}

.app-limit-arrived {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 8px;
    border-radius: 4px;
    background: var(--gray-v4);
    font-size: 11px;
    font-weight: bold;
    color: #d22;
    animation: showLimitArrived 3s ease-in-out forwards;
    display: none;
}

.show-limit-arrived {
    display: block;
}

@keyframes showLimitArrived {
    0% { transform: translateY(20px); opacity: 0; }
    10% { transform: translateY(0); opacity: 1; }
    90% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(20px); opacity: 0; }
}

.form-value-input {
    padding-left: 48px !important;
}

.app-terms-initial {
    display: flex;
    align-items: center;
}

.app-terms-initial a {
    text-decoration: underline;
    cursor: pointer;
}

.app-terms-initial label {
    margin-bottom: 0;
}

.app-form-simulation-one input[type=submit] {
    width: 100%;
    height: 56px;
    border: none;
    background: var(--primary-color);
    color: var(--secundary-color-v3);
    font-family: var(--primary-font);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    line-height: 100%;
    border-radius: 1rem;
    font-weight: 700;
    justify-content: center;
    cursor: pointer;
    transition: all ease-in-out .3s;
    position: relative;
}

.app-form-simulation-one input[type=submit]:disabled {
    background: var(--neutral-700);
    color: var(--neutral-500);
    cursor: not-allowed;
}

.app-form-simulation-one input[type=submit]:disabled:hover::after {
    content: 'Você deve aceitar os termos antes de continuar.';
    display: flex;
    position: absolute;
    top: 50%;
    margin-top: -32px;
    left: calc(100% + 12px);
    width: 50%;
    border-radius: 4px;
    color: var(--secundary-color-v2);
    background: var(--primary-color);
    font-weight: 600;
    font-size: 1.3rem;
    align-items: center;
    padding: 8px 12px;
    justify-content: center;
}

.app-form-simulation-one input[type=submit]:disabled:hover {
    transform: none;
}

.app-form-simulation-one input[type=submit]:hover {
    transform: scale(1.05);
}

.app-form-simulation-one input[type=submit]:active {
    filter: brightness(0.8);
}

.overlay-loading {
    width: 100vw;
    height: 100vh;
    background: var(--neutral-1000);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-direction: column;
}

.overlay-loading > p {
    color: var(--neutral-300);
    font-size: 1.8rem;
    font-weight: 500;
}

#logo-first, #logo-second, #trace-one, #trace-two {
    animation: .75s infinite test;
    stroke-dasharray: 130%;
    transition: stroke-dashoffset 2s;
}

@keyframes test {
    0% {stroke-dashoffset: 140;}
    100% {stroke-dashoffset: 0;}
}

.overlay-terms {
    width: 100vw;
    min-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.4);
    backdrop-filter: blur(2px);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
}

@keyframes fetchData {
    from {
        opacity: 0;
        transform: scale(1.05);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.app-box-terms {
    max-width: 800px;
    max-height: 80vh;
    border-radius: 20px;
    padding: 40px;
    background: var(--gray-v4);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.app-box-terms > h3 {
    font-size: 3.4rem;
    text-align: center;
    width: 100%;
    color: var(--neutral-000);
}

.app-terms-content {
    overflow-y: auto;
}

.app-box-terms p {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--neutral-000);
    margin: 10px 0;
    text-align: left;
}

.app-inside-title {
    font-size: 3.6rem;
    color: var(--neutral-000);
    margin-bottom: 24px;
    text-align: left;
}

h2.app-inside-title {
    text-align: center;
}

.app-inside-title img {
    max-width: 300px;
}

.app-simulation-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    background: var(--gray-v4);
    border: 1px solid var(--neutral-700);
}

.app-simulation-proposal {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-simulation-proposal > div, .app-simulation-proposal > aside {
    flex-basis: 100%;
    color: var(--neutral-000);
    font-weight: 500;
    height: fit-content;
}

.app-financial-value {
    width: 100%;
    padding: 32px;
    border-bottom: 1px solid var(--neutral-700);
    text-align: center;
}

.app-financial-value-p {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--neutral-000);
}

.app-financial-value-value {
    font-size: 6.4rem;
    font-weight: 800;
    color: var(--secundary-color-v1);
}

.app-financial-details {
    width: 100%;
    padding: 24px 48px 48px 48px;
}

.app-financial-details-top {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: center;
}

.app-financial-details-title {
    font-size: 2rem;
}
.app-financial-details-description {
    font-size: 1.2rem;
}

.app-financial-details-bank {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-basis: 50%;
    justify-content: flex-end;
}

.show-installment {
    font-weight: 600;
    text-decoration: underline;
}

.app-financial-details-bank div {
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--gray-v3);
    width: 50%;
    text-align: center;
}

.app-financial-details-bank-text {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--gray-v2);
}

.app-financial-details-bank-interest {
    font-size: 2.4rem;
    color: var(--secundary-color-v1);
    font-weight: 900;
}

.app-financial-interest-mobile {
    width: 100%;
    text-align: center;
    border: 1px solid var(--gray-v3);
    padding: 1.6rem;
    border-radius: 0.8rem;
    display: none;
}

.app-financial-details-installments {
    display: none;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    padding: 48px 0;
    border-bottom: 1px solid var(--gray-v3);
}

.show-detail-installments {
    display: grid;
}

.each-installment {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.each-installment-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 100%;
    border: 1px solid var(--gray-v3);
    font-weight: 800;
    color: var(--secundary-color-v3);
}

.each-installment-value, .each-installment-date {
    font-size: 1.4rem;
    color: var(--secundary-color-v3);
}

.each-installment-date {
    font-weight: 500;
}

.each-installment-value {
    font-weight: 800;
}

.app-financial-details-footer {
    display: flex;
    flex-direction: row;
    padding: 40px 0 0 0;
    align-items: center;
}

.app-financial-details-footer-each {
    display: flex;
    flex-direction: row;
}

.app-financial-details-footer-each p {
    width: 100%;
    font-size: 1.2rem;
    color: var(--secundary-color-v2);
    margin: 4px 0;
}

.app-financial-details-footer-button {
    width: 100%;
    background: var(--primary-color);
    text-transform: uppercase;
    color: var(--neutral-000);
    height: 64px;
    border: 0;
    border-radius: 8px;
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--primary-font);
    cursor: pointer;
    transition: all ease-in-out .2s;
    padding: 0 24px;
}

.app-financial-details-footer-button:hover {
    transform: scale(1.05);
}

.app-simulation-details {
    display: flex;
    flex-direction: column;
    font-size: 2.2rem;
    margin: 24px 0;
    color: var(--neutral-000);
}

.value-color-results {
    color: var(--secundary-color-v1);
    font-weight: 500 !important;
}

.app-table-parcel {
    display: flex;
    flex-direction: column;
    font-size: 1.6rem;
    border-radius: 10px;
    overflow: hidden;
}

.app-table-parcel .app-row:nth-child(even) {
    background: #F3F0FF;
}

.app-thead, .app-row {
    display: flex;
    flex-direction: row;
}

.app-thead > .th, .app-row > .td {
    flex-basis: 100%;
    text-align: center;
    padding: 4px;
}

.app-thead > .th {
    background: var(--neutral-000);
    color: var(--gray-v4);
}

.app-simulation-caption {
    font-size: 1.3rem;
    display: flex;
    margin: 16px 0;
}

.app-value-detail > p {
    display: flex;
    font-size: 1.6rem;
}

.app-value-detail > p > span {
    flex-basis: 40%;
}

.app-value-detail > p > strong {
    flex-basis: 60%;
}

.app-bar-table > p {
    display: flex;
    margin: 8px 0;
    align-items: center;
}

.app-info-subtitle {
    font-weight: 800;
    flex-basis: 50%;
}

.app-info-bar {
    display: flex;
    flex-basis: 100%;
    position: relative;
    width: 100%;
    height: 10px;
    background: var(--gray-v3);
    margin: 0 16px;
    border-radius: 80px;
    overflow: hidden;
}

.app-info-bar > span {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: var(--neutral-000);
    border-radius: 80px;
}

.highlight-fgts .app-info-subtitle, .highlight-fgts .app-info-percent {
    color: var(--secundary-color-v1);
}

.highlight-fgts .app-info-bar span {
    background: var(--secundary-color-v1);
}

.app-button-confirm {
    background: var(--neutral-000);
    border: none;
    padding: 24px 48px;
    border-radius: 12px;
    font-family: var(--primary-font);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--gray-v4);
    width: fit-content;
    margin: 0 auto;
    transition: all ease-in-out .2s;
    text-align: center;
}

.app-button-confirm:hover , .app-button-continue:hover{
    background: var(--primary-color);
    color: var(--secundary-color-v3);
    transform: scale(1.05);
    cursor: pointer;
}

.app-simulation-form {
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.app-form-steps {
    width: 75%;
    background: var(--neutral-1000);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--neutral-700);
}

.app-form-steps h4 {
    font-size: 2rem;
    color: var(--neutral-000);
    padding: 12px;
    width: 100%;
}

.app-form-final {
    display: flex;
    flex-wrap: wrap;
}

.app-public-person__radio {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.app-public-person__radio label {
    margin-bottom: 0 !important;
}

/* .app-form-row {
    width: 100%;
    display: flex;
    gap: 20px;
} */

.app-form-final label {
    width: 100%;
    display: flex;
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 400;
    color: var(--neutral-200);
    font-family: var(--secundary-font);
}

.app-form-final input, .app-form-final select {
    width: 100%;
    border: 1px solid var(--neutral-700);
    border-radius: 1rem;
    height: 56px;
    align-items: center;
    padding: 16px;
    background: var(--gray-v4);
    font-family: var(--primary-font);
    font-size: 1.6rem;
    color: var(--neutral-000);
    font-weight: 700;
    transition: all ease-in-out .3s;
}

.app-form-final input::placeholder {
    font-weight: 400;
    color: var(--neutral-400);
}

.app-form-final select {
    -webkit-appearance: none;
    -moz-appearance:    none;
    appearance:         none;
    background: var(--gray-v4) url('/static/img/chevron-down.svg') 95% 50% no-repeat;
}

.app-form-final input:focus, .app-form-final select:focus {
    box-shadow: 0 0 0 4px var(--neutral-800);
    border: 1px solid var(--neutral-600);
}

.labels-radio-p {
    display: flex;
    flex-direction: row;
}

.app-form-final .label-radio {
    display: flex;
    flex-basis: 0;
    align-items: center;
    margin-right: 24px;
}

.app-form-final .description-form {
    font-size: 1.2rem;
    color: var(--neutral-300);
    font-style: italic;
}

.app-form-final input[type="radio"] {
    height: 24px;
    width: 24px;
    margin-right: 8px;
}

.app-form-row-buttons {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding: 12px;
}

.app-check-public-person {
    display: flex;
    align-items: center;
}

.app-check-public-person input {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.app-check-public-person label {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--neutral-000);
    margin-bottom: 0;
}

.app-button-continue {
    height: 56px;
    background: var(--primary-color);
    color: var(--secundary-color-v3);
    font-family: var(--primary-font);
    font-size: 1.8rem;
    font-weight: 700;
    padding: 0 24px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all ease-in-out .2s;
}

.app-button-back {
    height: 56px;
    font-family: var(--primary-font);
    font-size: 1.8rem;
    font-weight: 700;
    padding: 0 24px;
    border-radius: 10px;
    background: none;
    border: 1px solid var(--neutral-000);
    color: var(--neutral-000);
    cursor: pointer;
}


.app-form-validation input, .app-form-validation select {
    border: 1px solid red !important;
    color: red !important;
}

.app-form-validation label {
    font-weight: 800;
    color: red;
}

.app-text-validation, .errorlist {
    list-style-type: none;
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 8px;
    color: red;
    font-family: var(--secundary-font);
}

.app-resume {
    width: 25%;
    height: fit-content;
    background: var(--gray-v4);
    border-radius: 16px;
    padding: 24px;
    color: var(--secundary-color-v2);
    font-size: 1.6rem;
    border: 1px solid var(--neutral-700);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.app-resume__title {
    font-size: 1.6rem;
    font-weight: 600;
}

.app-resume__highlight {
    border-top: 1px solid var(--neutral-700);
    padding: 16px 0;
    background: var(--gray-v4);
    border-bottom: 1px solid var(--neutral-700);
}

.app-resume__highlight .app-value-summary {
    font-size: 2.4rem;
    color: var(--secundary-color-v1);
    font-weight: 800;
}

.app-resume__auxiliar {
    font-size: 1.2rem;
    color: var(--neutral-300);
}

.app-resume__main {
    font-size: 1.6rem;
    font-weight: 600;
}

.app-data-confirm {
    display: flex;
    border-top: 1px solid var(--neutral-800);
    padding: 16px 0;
    flex-direction: column;
    position: relative;
    margin-left: -1px;
    margin-top: -1px;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--neutral-000);
}

.app-data-confirm p:first-child {
    font-size: 1.2rem;
    color: var(--neutral-300);
    font-weight: 400;
}

.app-data__infos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 12px;
    width: 100%;
}

.app-confirms {
    width: 100%;
    border-radius: 20px;
    padding: 40px;
    background: var(--gray-v3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.app-icon-send-sms {
    width: 142px;
}

.app-confirms > h3 {
    font-size: 3.6rem;
    text-align: center;
    width: 100%;
    color: var(--neutral-000);
    margin-bottom: 24px;
}

.app-confirms p {
    width: 100%;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--neutral-000);
    margin: 12px 0;
}

.app-send-sms {
    display: flex;
    max-width: 400px;
    flex-direction: column;
    margin: 40px auto 0;
    color: var(--neutral-000);
}

.app-send-sms > label {
    font-size: 1.3;
    margin-bottom: 10px;
}

.app-send-sms > input {
    width: 100%;
    height: 56px;
    padding: 12px;
    font-family: var(--primary-font);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--neutral-000);
    border: 1px solid var(--neutral-000);
    border-radius: 10px;
    margin-bottom: 20px;
}

.app-send-sms > input:focus {
    border: 1px solid var(--secundary-color-v1);
}

.app-send-sms > button {
    width: 100%;
}

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

.app-box-return {
    max-width: 560px;
    border-radius: 32px;
    padding: 64px;
    background: var(--gray-v4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    border: 1px solid var(--neutral-700);
}

.app-box-return h3 {
    font-size: 3.2rem;
    text-align: center;
    width: 100%;
    color: var(--neutral-000);
    font-weight: 700;
}

.app-box-return p {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 2.4rem;
    color: var(--secundary-color-v2);
    margin: 10px 0;
    text-align: center;
}

.app-actions-return {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.app-actions-return button {
    width: 100%;
}

.app-button-secundary {
    background: none;
    border: 1px solid var(--secundary-color-v1);
    padding: 24px 48px;
    border-radius: 12px;
    font-family: var(--primary-font);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--secundary-color-v1);
    width: fit-content;
    margin: 0 auto;
    transition: all ease-in-out .2s;
    text-align: center;
}

.app-button-secundary:hover {
    color: var(--secundary-color-v3);
    border: 1px solid var(--secundary-color-v3);
    transform: scale(1.05);
    cursor: pointer;
}

.app-button-resend {
    background: none;
    border: none;
    padding: 24px 48px;
    border-radius: 12px;
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 1.8rem;
    color: var(--neutral-000);
    width: fit-content;
    margin: 0 auto;
    transition: all ease-in-out .2s;
    text-align: center;
    text-decoration: underline;
    cursor: pointer;
}

.app-final-desktop {
    width: 100%;
}

.app-final-mobile {
    display: none;
}

.app-button-returns-p {
    background: var(--primary-color);
    color: var(--neutral-000);
    border: none;
    padding: 8px 48px;
    border-radius: 12px;
    font-family: var(--primary-font);
    font-weight: 800;
    font-size: 1.8rem;
    width: fit-content;
    margin: 0 auto;
    transition: all ease-in-out .2s;
    text-align: center;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-button-returns-p:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.app-button-returns-s {
    background: transparent;
    border: 2px solid var(--primary-color);
    padding: 0 48px;
    border-radius: 12px;
    font-family: var(--primary-font);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--neutral-000);
    width: fit-content;
    margin: 0 auto;
    transition: all ease-in-out .2s;
    text-align: center;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-button-returns-s:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.app-button-returns-l {
    background: none;
    border: none;
    text-decoration: underline;
    padding: 24px 48px;
    font-family: var(--primary-font);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--secundary-color-v2);
    margin: 0 auto;
    transition: all ease-in-out .2s;
    text-align: center;
    cursor: pointer;
}

.app-button-returns-l:hover {
    color: var(--neutral-000);
}

.app-talk-to-consult-whatsapp {
    width: 100%;
    height: 64px;
    background: #00bf66;
    color: var(--gray-v4);
    border: none;
    padding: 24px 48px;
    border-radius: 12px;
    font-family: var(--primary-font);
    font-weight: 800;
    font-size: 1.8rem;
    margin: 0 auto;
    transition: all ease-in-out .2s;
    text-align: center;
    text-shadow: 1px 1px 5px rgba(0,0,0,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.app-talk-to-consult-whatsapp:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.app-overlay-popup-instructions {
    width: 100vw;
    min-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.4);
    backdrop-filter: blur(2px);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
}

.app-popup-instructions {
    display: flex;
    width: 800px;
    height: 480px;
    background: var(--gray-v3);
    border-radius: 20px;
    align-items: center;
}

.app-popup-steps {
    display: flex;
    gap: 30px;
    padding: 0 60px 0 80px;
}

.app-popup-col {
    justify-content: center;
    display: flex;
    flex-direction: column;
    width: 50%;
}

.app-popup-col-right {
    text-align: center;
}

.app-popup-instructions h4 {
    font-size: 3.6rem;
    margin-bottom: 12px;
}

.app-popup-instrucions-infos {
    display: flex;
}

.app-popup-number-step {
    font-size: 6.8rem;
    font-weight: 800;
    margin-right: 20px;
    line-height: 100%;
}

.app-popup-text-step {
    font-size: 1.8rem;
}

.app-popup-subdescription {
    font-size: 1.3rem;
    color: var(--secundary-color-v2);
}

.app-close-popup {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 999;
}

.show-overlay {
    display: flex;
    animation: .25s forwards fetchData;
}

.logo-loading {
    animation: rotatelogo infinite 1s linear;
    /* transition: all linear 1s; */
}

.loading-steps {
    display: none;
}

.loading-step-01 {
    display: block;
    animation: showStep 4s infinite ease-in-out;
}

@keyframes showStep {
    0% { opacity: 0; transform: translateY(-100%); }
    10% { opacity: 1; transform: translateY(0); }
    90% { opacity: 1; transform: translateY(0); }
    95% { opacity: 0; transform: translateY(-100%); }
    100% { opacity: 0; transform: translateY(-100%); }
}

@keyframes rotatelogo {
    from { transform: rotateY(0) }
    to { transform: rotateY(360deg) }
}

/* -- SWIPER -- */

.swiper-button-prev { left: 20px !important; }
.swiper-button-next { right: 20px !important; }

.swiper-button-next:after { color: var(--secundary-color-v2) !important }
.swiper-button-prev:after { color: var(--secundary-color-v2) !important }

/* -- SELECT 2 -- */

/* .select2-container {
    width: 100% !important;
}

.select2-dropdown {
    border: 1px solid var(--neutral-000) !important;
    border-radius: 10px !important;
    box-shadow: 0 5px 10px 0 rgba(0,0,0,.4) !important;
}

.select2-search--dropdown {
    padding: 12px !important;
}

.select2-container--default .select2-selection--single {
    background-color: #fff !important;
    border: 1px solid #000 !important;
    border-radius: 10px !important;
    padding: 12px !important;
    height: 56px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50% !important;
    margin-top: -13px !important;
    right: 5px !important;
}

.select2-search--dropdown .select2-search__field {
    border-radius: 4px !important;
    padding: 12px 12px 12px 44px !important;
    font-family: 'Raleway' !important;
    background: url(/static/img/search.svg) no-repeat 10px 7px;
}

.select2-results__option {
    padding: 12px !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: var(--primary-color) !important;
    color: var(--neutral-000) !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #000 !important;
    line-height: 29px !important;
    font-size: 1.6rem !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: none !important;
    left: 0 !important;
    background: url(/static/img/chevron-down.svg) no-repeat !important;
    width: 14px !important;
    height: 10px !important;
    display: block !important;
} */

.app-simule-section-banco-pan {
  display: flex;
  background: #4b4b4b;
  border-radius: 0.8rem;
  padding: 2.4rem;
  align-items: center;
}

.app-simule-section-banco-pan img {
  align-self: flex-start;
  margin-right: 1.6rem;
  padding-bottom: 1.6rem;
}

.app-simule-section-banco-pan p {
  color: var(--gray-v4);
  font-size: 1.4rem;
}

@media screen and (max-width: 900px) {

    html {
        font-size: 62.5%;
    }

    .m-app-col-1 { width: 25%; }
    .m-app-col-2 { width: 50%; }
    .m-app-col-3 { width: 75%; }
    .m-app-col-4 { width: 100%; }

    .app-form-simulation-one input[type=submit] {
        max-width: 100%;
    }

    #app-header {
        height: 75px;
    }

    #app-header > div {
        padding: 0 4%;
    }

    .app-menu-desktop {
        display: none;
    }

    .app-menu-mobile {
        display: block;
    }

    .app-width-menu > a > img {
        width: 190px;
        height: 25.77px;
        margin: 4px 0 0 1px;
    }

    #icon-open-menu img {
        width: 20px;
    }

    .app-instructions-simule-fgts {
        font-size: 4rem;
        line-height: 90%;
    }

    .app-texto-simule-fgts {
        font-size: 1.6rem;
    }

    .app-main {
        width: 100%;
        padding: 120px 8% 80px 8%;
    }

    .app-simulation-one {
        display: flex;
        flex-direction: column;
        gap: 24px
    }

    .app-simulation-one > section {
        width: 100%;
        justify-content: center;
    }

    .app-title-simulation > p {
        margin: 0;
    }

    .app-form-simulation-one {
        width: 100%;
        border: none;
        padding: 2rem 0;
        background: none;
        box-shadow: none;
    }

    .app-instructions {
        width: calc(100%);
        flex-direction: column;
        align-items: stretch;
        margin: 0;
    }

    .app-simulation-results-value {
        font-size: 4.8rem;
    }

    .app-financial-details-bank {
        display: none;
    }

    .app-simulation-results-description {
        font-size: 2.4rem;
    }

    .app-title-simulation {
        order: 1;
    }

    .app-simulation-results {
        order: 0;
        margin-bottom: 0;
    }

    .app-form-simulation-one button:disabled:hover::after {
        top: calc(100% + 12px);
        left: 0;
        margin-top: 0;
    }

    .app-simulation-info {
        padding: 0;
    }

    .app-financial-details {
        padding: 24px;
    }

    .app-financial-details-description {
        flex-direction: column;
        display: flex;
    }

    .app-financial-details-installments {
        grid-template-columns: repeat(2, 1fr);
        padding: 24px 0;
        gap: 16px;
    }

    .each-installment-number {
        width: 32px;
        height: 32px;
    }

    .app-financial-details-footer {
        flex-direction: column;
        padding: 24px 0 0 0;
        gap: 24px;
    }

    .app-financial-details-footer-each {
        justify-content: space-between;
    }

    .app-financial-details-footer-each p:nth-child(2) {
        width: 40%;
    }

    .app-financial-details-footer-button {
        padding: 24px;
        height: auto;
    }

    .app-simulation-proposal {
        flex-direction: column;
        gap: 0;
    }

    .app-financial-value {
        width: 100%;
        text-align: center;
    }

    .app-financial-value-value {
        font-size: 4.8rem;
    }

    .app-financial-details-top {
        flex-direction: column;
    }

    .app-financial-details-top div:first-child {
        text-align: center;
    }

    .app-resume {
        display: none;
    }

    .app-form-steps {
        width: 100%;
    }

    .app-form-row {
        flex-direction: column;
    }

    .app-final-desktop {
        display: none;
    }

    .app-final-mobile {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .app-popup-instructions {
        margin: 10px;
        height: auto;
        justify-content: center;
    }
    .app-popup-steps {
        flex-direction: column;
        padding: 50px;
    }
    .swiper-wrapper {
        align-items: center !important;
    }
    .app-popup-col {
        width: 100%;
    }

    .app-popup-col-right img {
        max-width: 100%;
    }

    .app-financial-interest-mobile {
        display: block;
    }

    .app-box-return {
        padding: 40px;
        gap: 12px;
    }
    
    .app-box-return h3 {
        font-size: 2.8rem;
    }
    
    .app-data__infos {
        grid-template-columns: 1fr;
    }

}
