#start {
    display: flex;
    min-height: 100vh;
    background-color: #fff;
}

.steps {
    position: fixed;
    width: 30%;
    height: 100%;
    padding: 2rem;
    border-right: 2px solid rgba(var(--gray), .2);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 15px;
    /* alinha com centro da borda do ícone */
    top: 40px;
    width: 2px;
    height: calc(100% - 22px);
    background-color: #ccc;
    z-index: 0;
}

.icon-wrapper {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border: 2px solid rgba(var(--gray), .3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    z-index: 1;
}

.steps-list {
    gap: 24px;
}

.step-item.active .icon-wrapper {
    border-color: #000;
    background-color: #000;
}

.step-item i {
    font-size: 18px;
    color: #777;
}

.step-item.active i {
    color: #fff;
}


.step-item-content {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    position: relative;
    top: -3px;
}

.step-item strong {
    font-weight: 600;
    color: #222;
    font-size: 15px;
}

.step-details {
    font-size: 14px;
    color: rgba(var(--gray), .6);
    margin-top: 4px;
}

.content {
    width: 70%;
    height: 100%;
    /* flex: 1; */
    padding: 40px;
    background: rgba(var(--dead-white));
    position: fixed;
    right: 0;
    overflow-y: auto;
}

.step-item.completed .icon-wrapper {
    border-color: rgba(var(--gray), .6);
    background-color: rgba(var(--dead-white));
}

.step-item.completed i {
    color: #000;
}

.content .md-input input,
.content .md-input textarea {
    background: white;
}

.finish-bg {
    background: rgba(var(--primary-color)) !important;
    color: rgba(var(--dead-white)) !important;
}

.finish-step {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.content-step {
    display: none;
}

div[data-content="3"] {
    height: 100%;
}

.content-step h1 {
    font-size: 6rem;
    margin-bottom: 0;
}

.content-step h2 {
    font-size: 2rem;
    font-weight: 700;
}

.content-step p {
    font-size: 1rem;
    margin-top: 1rem !important;
    max-width: 70%;
    margin: 0 auto;
}

.steps-list {
    /* vertical align */
    position: relative;
    top: 25%;
    transform: translateY(-50%);
}

.steps-bottom {
    position: absolute;
    bottom: 5rem;
    background: white;
    width: 80%;
    padding: 1rem;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 12px;
    border: 2px solid rgba(var(--gray), .3);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.steps-bottom img {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(var(--dead-white));
    border: 2px solid rgba(var(--gray), .1);
}

.steps .user-info {
    margin-right: auto;
    margin-left: 1rem;
    margin-bottom: 0;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logout-btn {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logout-btn i {
    position: relative;
    left: -2px;
}

#user-name-span {
    font-weight: 600;
    color: #222;
    font-size: 15px;
}

#user-email-span {
    font-size: 14px;
    color: rgba(var(--gray), .6);
    margin-top: 4px;
}

#user-name,
#user-email {
    margin-bottom: 0;
    display: flex;
}

.ai-preview {
    background: rgba(var(--dead-white));
    padding: 1rem;
    border-radius: 30px;
    /* border: 2px solid rgba(var(--gray), .3); */
    min-height: 100%;
    position: relative;
}

.ai-preview .messages {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 1rem;
    height: 30rem;
    overflow-y: auto;
    scrollbar-width: none;
    /* Firefox */
}

.ai-preview .messages::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.ai-preview .input-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.content-step .ai-preview .input-wrapper {
    bottom: 3rem;
}

.payment-resume-footer {
    width: 70%;
    position: fixed;
    bottom: 0;
    right: 0;
    background: rgba(var(--gray), .9);
    padding: 1.5rem;
    /* border-top: 2px solid rgba(var(--gray), .2); */
    z-index: +1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(6px);
}

#payment-total {
    font-size: 2rem;
    font-weight: 600;
    color: rgba(var(--dead-white));
    margin-bottom: 0;
}

#goto-payment-btn {
    max-width: max-content;
    padding: 1rem 2rem;
}

.payment-resume-right {
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 1rem;
    margin-left: auto;
    margin-right: 4rem;
    width: 100%;
}

.payment-resume {
    display: flex;
    align-items: center;
    justify-content: right;
    width: 100%;
}

.payment-resume span {
    font-size: .9rem;
    font-weight: 500;
    color: rgba(var(--dead-white), .8);
    margin-bottom: 0;
    margin-left: .5rem;
    margin-right: 1rem;
}

#goto-payment-btn i {
    font-size: 1.4rem;
    position: relative;
    top: -2px;
}

.payment-step {
    padding-bottom: 7.5rem;
}

.animated-btn {
    animation: floatBtn 1.5s ease-in-out infinite alternate;
    box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0);
    position: relative;
    z-index: 10;
    transition: .3s ease-in-out;
}

.shine-text {
    display: inline-flex;
    position: relative;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(var(--dead-white), 0.6) 0%, rgba(var(--dead-white), 0.6) 40%, rgba(var(--dead-white), 1) 50%, rgba(var(--dead-white), 0.6) 60%, rgba(var(--dead-white), 0.6) 100%);
    background-size: 250% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shine 6s linear infinite;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

@keyframes shine {
    0% {
        background-position: 150% 0;
    }

    100% {
        background-position: -150% 0;
    }
}

.animated-btn:hover {
    background: rgba(var(--primary-color), 1);
    color: rgba(var(--dead-white), 1);
    opacity: 1 !important;
    box-shadow: 0 32px 64px 0 rgba(var(--primary-color), .8) !important;
    transform: translateY(-2px) scale(1.02) !important;
    transition: .3s ease-in-out;
}

.payment-resume-left p {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(var(--dead-white), .1);
    margin-bottom: 0;
    margin: 0;
    margin-left: 4rem;
    margin-top: 0 !important;
    max-width: 100%;
}

#selected-plan-name {
    margin-left: .5rem;
}

.payment-resume-left {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: left;
}

@keyframes floatBtn {
    0% {
        transform: translateY(0) scale(1);
        box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0);
    }

    100% {
        transform: translateY(0) scale(1.02);
        box-shadow: 0 32px 64px 0 rgba(255, 255, 255, 0.5);
    }
}

@media only screen and (max-width: 480px) {
    #preview-reset-session {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        width: 4rem !important;
        height: 60px !important;
        min-width: 60px !important;
    }

    .ai-preview .input-wrapper {
        width: 100%;
    }

    .content {
        width: 100%;
    }

    .content-step p {
        max-width: 95%;
        margin-bottom: .5rem !important;
        display: block;
        margin: 0 auto;
    }

    .payment-resume-footer {
        width: 100%;
        text-align: center;
        padding: 1rem;
        display: block;
    }

    .payment-resume-right {
        display: block;
        margin-right: 0;
        text-align: center;
    }

    .content {
        padding: 2rem 0rem;
    }

    .payment-resume {
        margin-bottom: 1rem;
        justify-content: center;
    }

    .payment-step {
        padding-bottom: 7.5rem;
    }

}

.ai-message .button-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0;
    margin-left: 2.5rem;
    margin-bottom: 1rem;
}

.ai-list-btn {
    display: block;
    width: 100%;
    background: none;
    border: 0;
    color: rgba(var(--dead-white));
    padding: .5rem;
    transition: .3s ease-in-out;
    border-radius: 7px;
    text-align: left;
}

#play-voice-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
}

.tippy-box {
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, .3);
}

.ai-list-btn:hover {
    background: rgba(var(--dead-white), .2);
    cursor: pointer;
}



.ai-preview .input-wrapper input {
    background: white;
    margin-right: 1rem;
    color: rgba(var(--gray));
    border: 1px solid rgba(var(--gray), .2);
    margin-top: 0;
}

.ai-preview .input-wrapper input::placeholder {
    color: rgba(var(--gray), .6);
}

.ai-preview .input-wrapper button {
    height: 60px;
    width: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    padding: 0;
}

.ai-preview .input-wrapper button i {
    font-size: 1.75rem;
}

.ai-preview h3 {
    font-size: 16px;
    font-weight: 600;
    color: rgba(var(--gray), 1);
}

.loader {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
    border-top: 3px solid rgba(var(--dead-white));
    border-right: 3px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.no-message {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-message img {
    width: 3rem;
    height: 3rem;
    object-fit: cover;
    border-radius: 50%;
    background: white;
    animation: pulse 3s infinite;
    border: 2px solid rgba(var(--gray), .3);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        /* box-shadow: 0 0 0 rgba(0, 0, 0, 0.0); */
    }

    50% {
        transform: scale(1.25);
        /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); */
    }

    100% {
        transform: scale(1);
        /* box-shadow: 0 0 0 rgba(0, 0, 0, 0.0); */
    }
}

.content-step .ai-preview .messages {
    height: calc(65vh) !important;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.ai-preview .input-wrapper input {
    background: white;
    margin-right: 1rem;
    color: rgba(var(--gray));
    border: 2px solid rgba(var(--gray), .3);
    margin-top: 0;
}

#notifications-login [data-content="2"] {
    height: 100%;
}

.custom-input {
    width: 100%;
    padding: 1rem;
    background: rgba(var(--dead-white), .15);
    border: none;
    border-radius: 10px;
    margin-top: 1rem;
    resize: none;
    font-weight: 400;
    color: rgba(var(--dead-white));
    border: 1px solid rgba(var(--dead-white), .2);
}


.custom-input::placeholder {
    font-weight: 500;
    color: rgba(var(--dead-white), .6);
}

.custom-input:active,
.custom-input:focus {
    outline: none;
}

.btn-md {
    padding: .8rem 2rem;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: .2s ease-in-out;
}

.user-message {
    width: 100%;
    display: flex;
    justify-content: end;
}

.user-message .message-box {
    padding: 1rem;
    background: white;
    border-radius: 10px;
    font-size: .9rem;
    background: white;
    color: rgba(var(--gray));
    font-weight: 500;
    margin-bottom: 1rem;
    width: fit-content;
    max-width: 90%;
}

.message img {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    object-fit: cover;
    background: white;
    transition: .3s ease-in-out;
}

.ai-message {
    display: flex;
}

.ai-message .message-box {
    padding: 1rem;
    background: white;
    border-radius: 10px;
    font-size: .9rem;
    background: rgba(var(--gray));
    color: rgba(var(--dead-white));
    font-weight: 400;
    margin-bottom: 1rem;
    width: fit-content;
    max-width: 100%;
}

.user-message img {
    margin-left: .5rem;
    border: 2px solid rgba(var(--gray), .2);
}

.ai-message img {
    margin-right: .5rem;
}

.confirm-email-wrapper {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    width: 100%;
    margin: 0 auto;
}

.centralize {
    display: flex;
    align-items: center;
    justify-content: center;
}

#confirm-email-title {
    font-size: 16px;
    font-weight: 600;
    color: rgba(var(--gray), 1);
}

.confirm-email-desc {
    margin: 0 !important;
    font-size: .9rem !important;
    opacity: .6;
    font-weight: 500;
    max-width: 100% !important;
}

.wait-email-desc {
    margin: 0;
    font-size: .9rem !important;
    font-weight: 500;
    max-width: 100% !important;
    margin-top: 2rem !important;
    display: none;
}

#formatted-email-span {
    font-weight: 600;
    color: #222;
    font-size: 15px;
}

.btn-md:disabled {
    cursor: not-allowed;
    background: rgba(var(--gray), .3);
    color: rgba(var(--dead-white));
}

.content .custom-input {
    width: 100%;
    padding: 1rem;
    background: rgba(var(--dead-white), 1);
    border: none;
    border-radius: 10px;
    margin-top: 1rem;
    resize: none;
    font-weight: 400;
    color: rgba(var(--gary));
    border: 1px solid rgba(var(--dead-white), .2);
}


.content .custom-input::placeholder {
    font-weight: 500;
    color: rgba(var(--gray), .6) !important;
}

.confirm-email-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    border: 2px solid rgba(var(--gray), .3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    border-color: #000;
    background-color: #000;
}

.confirm-email-icon i {
    font-size: 24px;
    color: rgba(var(--dead-white));
}

.confirm-email-btns {
    display: flex;
    gap: 1rem;
}

#goto-payment-btn:disabled {
    cursor: not-allowed;
    background: rgba(var(--dead-white), .4) !important;
    color: rgba(var(--dead-white)) !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500 !important;
    opacity: 1;
}

.content #notifications-login {
    /* position: absolute; */
    top: 1rem;
    /* left: 50%; */
    /* transform: translateX(-50%); */
    width: 50%;
    right: 0;
    position: fixed;
    z-index: +1;
    /* text-align: center; */
    display: flex;
    align-items: center;
    justify-content: right;
}

.content #notifications-login .notification {
    width: fit-content;
    /* margin: 0 auto; */
}

.plan-card {
    background: rgba(var(--dead-white));
    border-radius: 40px;
    position: relative;
}


.plan-card .plan-card-header {
    padding: 2rem;
    border-radius: 40px 40px 0 0;
    background: rgba(var(--gray), .1);
}

.plan-card .plan-card-header h2 {
    font-size: 1.2rem;
    color: rgba(var(--gray), 1);
    font-weight: 700;
}

.plan-card .plan-card-header .plan-subtitle {
    font-size: .875rem;
    font-weight: 500;
    line-height: 125%;
    margin-bottom: 0;
    margin-left: 0;
    max-width: 100%;
    margin-top: 1rem;
}

.center-sub-headline {
    text-align: center;
    max-width: 45%;
    margin: 0 auto;
}

.headline {
    font-size: 2.5rem;
    color: rgba(var(--gray), 1);
    font-weight: 700;
    line-height: 40px;
}

.sub-headline {
    font-size: 1rem;
    color: rgba(var(--gray), .6);
    font-weight: 500;
    line-height: 125%;
    margin-top: 2rem !important;
}

.white-feature {
    color: rgba(var(--dead-white), .6) !important;
}

#logo-img {
    cursor: pointer;
}


.primary-header-plan .plan-title {
    color: rgba(var(--dead-white), 1) !important;
}

.plan-card .plan-price {
    padding: 2rem;
    border-right: 2px solid rgba(var(--gray), .2);
    border-left: 2px solid rgba(var(--gray), .2);
}

.plan-card .plan-features {
    padding: 2rem;
    background: rgba(var(--dark-gray));
    border-radius: 0 0 40px 40px;
    color: rgba(var(--dead-white));
}

.primary-header-plan {
    background: rgba(var(--primary-color), 1) url(../img/plan-bg.svg) no-repeat center !important;
    background-size: contain !important;
    background-position: bottom !important;
    color: rgba(var(--dead-white)) !important;
    border: 0 !important;
}


.plan-card .primary-card-header .plan-subtitle {
    color: rgba(var(--dead-white), .8) !important;
}

.plan-card .plan-features ul {
    list-style-type: none;
    padding-left: 0;
    margin-left: 0;
    margin-bottom: 0;
    font-size: .875rem;
}

.plan-card .plan-features ul li {
    margin-bottom: 1rem;
    display: flex;
}

.plan-card .plan-features ul li i {
    color: rgba(var(--primary-color), 1);
    font-size: 1.5rem;
    margin-right: 1rem;
}

.plan-card .plan-price-value {
    font-size: 2.25rem;
    color: rgba(var(--dark-gray), 1);
    font-weight: 800;
    /* espaçamento das letras */
    letter-spacing: -.15rem;
}

.plan-price-month {
    font-size: .9rem;
    color: rgba(var(--dark-gray), .6);
    font-weight: 600;
    margin-top: -.5rem;
    /* text-transform: uppercase; */
    display: block;
    margin-top: 0;
}

.plan-subtitle {
    margin-top: 1rem;
}

.recommended-plan {
    background: rgba(var(--dark-gray), 1) !important;
    color: rgba(var(--dead-white));
    border-radius: 7px !important;
    width: fit-content;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -.8rem;
    padding: .25rem 1rem;
    text-transform: uppercase;
    font-weight: 600;
    font-size: .75rem;
    box-shadow: 0 0 10px rgba(var(--dark-gray), .2);
}

.month-free {
    width: fit-content;
    background: rgba(var(--primary-color), 1);
    color: rgba(var(--dead-white));
    padding: .2rem .8rem;
    border-radius: 7px;
    font-weight: 600 !important;
    font-size: .85rem;
    text-transform: uppercase;
    margin-bottom: 0;
    margin-top: 1.5rem;
}

.free-white {
    background: rgba(var(--dead-white), 1);
    color: rgba(var(--dark-gray), 1) !important;
}


.plan-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    /* gap: 2rem; */
    margin-bottom: 2rem;
    width: fit-content;
    /* margin: 0 auto; */
    margin-bottom: 0;
    margin-left: auto !important;
    margin-right: 2rem;
    padding-right: 2rem;
    border-right: 4px solid rgba(var(--gray), .2);
}

.plan-selector #annual-plan {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    display: flex;
}

.plan-selector #monthly-plan {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border: 0;
}


.plan-selector button {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 7px;
    transition: all 0.3s ease-in-out;
}

.plan-selector button:hover {
    cursor: pointer;
    opacity: .8;
}

.discount-tag {
    width: max-content;
    background: rgba(var(--dark-gray), 1);
    color: rgba(var(--dead-white));
    padding: .2rem .8rem;
    border-radius: 7px;
    font-weight: 600 !important;
    font-size: .85rem;
    text-transform: uppercase;
    margin-bottom: 0;
    margin-left: 1.5rem;
}

.plans-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.voice-selector {
    margin-right: auto;
    top: -5px;
    position: relative;
}

label[for="human-voice"] {
    position: relative;
    top: -4px;
    left: 0;
    margin-bottom: 2rem;
    margin-top: 1rem;
    color: rgba(var(--gray));
    font-weight: 500;
    display: inline-block !important;
}

label[for="human-voice"] a {
    color: rgba(var(--primary-color), 1);
}

.payment-bg {
    background: white !important;
}

.content-step[data-content="4"] {
    height: 100%;
}