.line_time {
    width: 100%;
    height: 100%;
}

.line_time .time_display {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 3rem 0;
    align-items: center;
}

.line_time .time_display .line_bar {
    width: 100%;
    justify-content: space-between;
    display: flex;
    margin-bottom: 4rem;
    justify-content: center;
}

.line_time .time_display .line_bar .timeline {
    width: 60%;
}

.line_time .time_display h1{
     font-size: clamp(1.7rem, 1.5vw, 4rem);
    color: #00AEEE;
    margin-bottom: 2rem;
    text-align: center;
    margin: 3rem;
}
.line_time .time_display strong{
    font-weight: bold;
}
#time {
    display: flex;
    width: 17%;
    align-items: center;
}

#time .time_sec {
    font-size: 5rem;
    line-height: 5rem;
    color: #353843;
    text-transform: uppercase;
}

#time .text {
    font-size: 1.4rem;
    line-height: 1.8rem;
    color: #353843;
    text-transform: uppercase;
}

.line_time .time_display .line_bar nav .tabs {
    width: 100%;
    display: flex;
    justify-content: space-around;
    margin-bottom: 1.5rem;
}

.line_time .time_display .line_bar nav .tabs li p {
    font-size: 1.3rem;
    line-height: 1.8rem;
    color: #353843;
    text-transform: uppercase;
}

.line_time .time_display .line_bar .tabs_timeline {
    width: 100%;
    height: 1rem;
    position: relative;
    background: #F3F3F3;
    border-radius: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.line_time .time_display .line_bar .tabs_timeline .tabs_point {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #F3F3F3;
    border-radius: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.line_time .time_display .line_bar .tabs_timeline .tabs_point::after {
    content: "";
    position: absolute;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 100%;
    opacity: 0;
    background-color: #FF9100;
    transition: all 0.3s linear;
}

.line_time .time_display .line_bar .tabs_timeline .tabs_point.current::after {
    width: 100%;
    height: 100%;
    opacity: 1;
}

.line_time .time_display .line_bar .tabs_timeline .tabs_line {
    position: absolute;
    left: 0;
    top: 0;
    max-width: 100%;
    width: 25%;
    height: 100%;
    border-radius: 2rem;
    border-top-right-radius: 4rem;
    border-bottom-right-radius: 0;
    background-color: #FF9100;
    transition: all 0.3s linear;
}

.slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.slides .slide {
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    position: absolute;
    align-items: center;
}

.slides .slide .question {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slides .slide.active {
    display: flex;
}

.slides .slide h3 {
    font-size: 2.3rem;
    line-height: 2.3rem;
    color: #353843;
    padding-bottom: 2rem;
    text-align: center;
}

.slides .slide .option.radio {
    width: 45rem;
}

.slides .slide .option.radio label {
    min-width: 45rem;
    line-height: 2.4rem;
    border: 0.1rem solid #FF9100;
    border-radius: 4.3rem;
    color: #FF9100;
    font-size: 2.2rem;
    font-weight: 500;
    padding: 3rem 8rem 3rem 4rem;
    margin: 1.5rem 0;
    display: inline-block;
    position: relative;
    transition: all 0.3s linear;
    cursor: pointer;
}

.slides .slide .option.tel,
.slides .slide .name {
    width: 50rem;
    line-height: 2.4rem;
    border: 0.1rem solid #FF9100;
    border-radius: 4.3rem;
    background-color: #FF9100;
    justify-content: space-between;
    color: #FF9100;
    font-size: 2.2rem;
    font-weight: 500;
    margin: 1.5rem 0;
    display: flex;
    position: relative;
    transition: all 0.3s linear;
    cursor: pointer;
    flex-direction: row-reverse;
}

.slides .slide .option.tel input,
.slides .slide .name input {
    width: 30rem;
    background-color: #FFFFFF;
    border-radius: 4.3rem;
    color: #353843;
    padding: 3rem;
    font-size: 1.7rem;
    line-height: 1.7rem;
}

.slides .slide .option.tel input::placeholder,
.slides .slide .name input::placeholder {
    color: #353843;
    font-size: 1.7rem;
    line-height: 1.7rem;
}

.slides .slide .option.tel button,
.slides .slide .name button {
    line-height: 2.4rem;
    border: unset;
    border-radius: 4.3rem;
    padding: 3rem;
    color: #FFFFFF;
    font-size: 2.2rem;
    font-weight: 500;
    display: inline-block;
    position: relative;
    transition: all 0.3s linear;
    cursor: pointer;
    padding-right: 7rem;
}

.slides .slide .option.tel button::after,
.slides .slide .name button::after {
    content: "";
    width: 2.5rem;
    height: 2.5rem;
    background-position: center center;
    background-repeat: no-repeat;
    display: inline-block;
    background-image: url(../img/ico/icon-white.svg);
    margin-left: 2rem;
    position: absolute;
    right: 3rem;
    top: calc(50% - 12.5px);
    transition: all 0.3s linear;
}

.slides .slide .option.radio label:hover {
    background-color: #FF9100;
    color: #FFFFFF;
    font-weight: 500;
}

.slides .slide .option.radio label::after {
    content: "";
    width: 2.5rem;
    height: 2.5rem;
    background-position: center center;
    background-repeat: no-repeat;
    display: inline-block;
    background-image: url(../img/ico/icono-orange.svg);
    margin-left: 2rem;
    position: absolute;
    right: 3rem;
    top: calc(50% - 12.5px);
    transition: all 0.3s linear;
}

.slides .slide .option.radio label:hover::after {
    background-image: url(../img/ico/icon-white.svg);
}

.image_value_preco_desktop img {
    object-fit: cover;
    object-position: center;
    max-width: unset;
    width: 100%;
    user-select: none;
    pointer-events: none;
    height: auto;
}
.image_value_preco_mobile {
    display: none;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    justify-content: center;
    column-gap: 4rem;
    row-gap: 2rem;
    margin: 2rem auto;
}


.checkbox-item {
    display: inline-flex;
    align-items: center;
    font-size: 1.8rem;
    color: #353843;
    line-height: 1;
}


.checkbox-item input[type="checkbox"] {
    width: 1.8rem;
    height: 1.8rem;
    margin-right: 0.6rem;
    accent-color: #FF9100;
    cursor: pointer;
}

.button-container {
    text-align: center;
    margin-top: 2.5rem;
}

.inputs-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.inputs-container input {
    border: 1px solid #ccc;
    border-radius: 0.4rem;
    padding: 1rem 1.2rem;
    font-size: 1.6rem;
    width: 35%;
    max-width: 100%;
    outline: none;
    transition: border-color .2s;
}

.inputs-container input:focus {
    border-color: #FF9100;
}

.btn-next {
    background-color: #FF9100;
    color: #fff;
    border: none;
    border-radius: 1rem;
    padding: 1.5rem 9rem;
    font-size: 2.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s ease-in-out;
    margin: 5rem 0;
}

.btn-next:hover {
    opacity: 0.9;
}

.checkbox-item input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 1.8rem;
    height: 1.8rem;
    margin-right: 0.8rem;
    border: 0.2rem solid #797979;
    border-radius: 0.3rem;
    position: relative;
    cursor: pointer;
    vertical-align: middle;
    transition: background-color 0.2s;
}

.checkbox-item input[type="checkbox"]:checked {
    background-color: #FF9100;
    border-color: #FF9100;
}

.checkbox-item input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 0.45rem;
    top: 0.15rem;
    width: 0.4rem;
    height: 0.8rem;
    border: solid #fff;
    border-width: 0 0.2rem 0.2rem 0;
    transform: rotate(45deg);
}

.checkbox-item {
    display: inline-flex;
    align-items: center;
    font-size: 1.8rem;
    color: #353843;
    line-height: 1;
}

.final-buttons {
    display: flex;
    justify-content: center;
    gap: 30%;
    margin: 3% 5%;
    /* margin-top: 10rem; */
}

.final-buttons a {
    text-decoration: none;
    text-align: center;
    border-radius: 0.8rem;
    /* padding: 1.2rem 3rem; */
    font-size: 1.8rem;
    font-weight: 600;
    width: 20rem;
    color: #fff;
    justify-content: center;
    align-items: center;
    transition: opacity 0.2s ease;
    display: flex;
    flex-direction: column;
    width: 90%;
    height: 5rem;
}

.final-buttons a:hover {
    opacity: 0.9;
}

.btn-whatsapp {
    background-color: #25D366;
}

.btn-phone {
    background-color: #FF9100;
}

.btn-phone small {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.2;
}
.image_value_preco_desktop , .image_value_preco_mobile{
    position: relative;
}
.banner
{
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;

}
.plan_description
{
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: inherit;
    gap: clamp(0.6rem, 1vw, 1.5rem);
  width: min(600ch, 55%);                  
  margin-left: clamp(0rem, 6vw, 12rem);
}
.plan_description .plans_text {
    width: 75%;
    gap: 1rem;
    display: flex;
    flex-direction: column;
}
.plan_description .plans_texts {
    width: 100%;
    gap: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.plan_description .plan_text {
    width: 75%;
    gap: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.plan_text .qualificou{
    color: #ff9100;
    font-size: clamp(1.6rem, 2.4vw, 6rem) !important;
    margin-top: -3rem !important;
    text-align: center !important;
}

.plan_description span{
    color: #0071bf;
    font-size: clamp(2rem, 8.8vw, 4rem);
}
.plans_text .plano{
    color: #01b0e5;
    font-size: clamp(3rem, 8.8vw, 6rem);
    font-weight: bold;
}
.plans_texts .plano{
    color: #01b0e5;
    font-size: clamp(3.2rem, 8.8vw, 7rem);
    font-weight: bold;
}
.plans_text .plano strong{
    font-size: clamp(3.2rem, 18.8vw, 10rem);
    color: #0071bf;
    font-family: "P22 Allyson Pro";
    font-weight: 100;
}
.plans_texts .plano strong{
    font-size: clamp(3.6rem, 6.8vw, 8rem);
    color: #0071bf;
}
.ganhadores{
    color: #434344;
    font-size: clamp(1.2rem, 1.4vw, 3rem);
    font-weight: 400;
    line-height: 120%;
}
.plans_texts .ganhadores{
    color: #6a6b6e;
    font-size: clamp(1.2rem, 1.2vw, 2rem);
    text-align: center;
    line-height: 120%;
}
.ganhadores strong{
    color: #434344;
    font-weight: bold;
}
.plans_texts .ganhadores strong{
    color: #6a6b6e;
    font-size: clamp(1.2rem, 1.2vw, 2rem);
    font-weight: bold;
}


.plans_text strong{
    color: #ff9100;
}
.plans_texts strong{
    color: #ff9100;
}
.plans_text .planos{
    color: #01b0e5;
    font-size: clamp(2.8rem, 3vw, 10rem);
    font-weight: bold;
}
.plans_texts .planos{
    color: #01b0e5;
    font-size: clamp(3.6rem, 8vw, 14rem);
    font-weight: bold;
    margin-bottom: 1%;
}
.plans_text .qualificou{
    color: #ff9100;
    font-size: clamp(1.6rem, 2.4vw, 4rem);
}
.plans_texts .qualificou{
    color: #ff9100;
     font-size: clamp(2.3rem, 5vw, 6rem);
    margin-top: 0rem;
}


@media screen and (max-width: 1250px) {
    .line_time .time_display .line_bar {
        flex-wrap: wrap;
    }

    .line_time .time_display .line_bar .timeline {
        width: 80%;
    }

    #time {
        width: 100%;
        justify-content: center;
        align-items: center;
        padding: 4rem 0 3rem;
    }

    #time .text {
        padding-left: 1rem;
    }

    .checkbox-grid {
        grid-template-columns: repeat(2, max-content);
    }

    .final-buttons {
        gap: 25%;
    }

    .btn-phone small {
        display: block;
        font-size: 1.3rem;
        font-weight: 400;
        line-height: 1;
    }
    .final-buttons a {
        font-size: 1.8rem;
        /* width: 20rem; */
    }
}
@media screen and (max-width: 890px) {
    .plan_description
{
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: inherit;
    gap: clamp(0.6rem, 1vw, 1.5rem);
    margin-top: 40%;
    width: 100%;            
    margin-left: clamp(0rem, 6vw, 12rem);
}
.final-buttons a{
    font-size: 2.4rem;
}
.btn-phone small{
    font-size: 1.5rem;
}
.plan_description .plan_text {
    margin-top: -3rem;
}
.plan_description .plan_text .qualificou {
    margin: 1rem 0;
    font-size: clamp(2.2rem, 1.2vw, 6rem) !important;
}
.plan_description .plan_text .planos {
    font-size: clamp(5rem, 1.2vw, 7rem) !important;
}
.plan_description .plan_text .ganhadores {
    font-size: clamp(1.5rem, 1.2vw, 5rem) !important;
}
.plan_description .plan_text .ganhadores strong {
    font-size: clamp(1.5rem, 1.2vw, 5rem) !important;
}
.plan_description span{
    color: #0071bf;
    font-size: clamp(1.4rem, 1.2vw, 6rem);
}
.plans_text .plano{
    color: #01b0e5;
    font-size: clamp(3.2rem, 5vw, 7rem);
    font-weight: bold;
}
.plans_text .plano strong{
    font-size: clamp(3.2rem, 12vw, 10rem);
    color: #0071bf;
    font-family: "P22 Allyson Pro";
    font-weight: 100;

}
.slides .slide h3{
    font-size: clamp(1.6rem, 2.5vw, 4rem);
}
.plans_texts .qualificou{
    margin-top: 0 !important;
}
.plan_description .plans_texts{
    display: flex;
    gap: 0.3rem !important;
}
.ganhadores{
    color: #434344;
    font-size:clamp(2.2rem, 1.5vw, 3rem);
    font-weight: 400;
}
    .final-buttons {
        gap: 5rem;
        flex-direction: column;
        align-items: center;
    }
    .image_value_preco_mobile img {
    object-fit: cover;
    object-position: center;
    max-width: unset;
    width: 100%;
    user-select: none;
    pointer-events: none;
    height: auto;
}
.image_value_preco_mobile{
    display: block;
}
.image_value_preco_desktop {
    display: none;
}}

@media screen and (max-width: 600px) {
    .line_time .time_display .line_bar nav .tabs li p {
        font-size: 1.1rem;
        line-height: 1.5rem;
    }

    .line_time .time_display .line_bar .tabs_timeline {
        height: 0.7rem;
    }

    .line_time .time_display .line_bar .tabs_timeline .tabs_point {
        width: 2rem;
        height: 2rem;
    }

    #time .time_sec {
        font-size: 4rem;
        line-height: 4rem;
    }

    #time .text {
        font-size: 1.2rem;
        line-height: 1.7rem;
    }

    .slides .slide .option.radio label {
        width: 100%;
        min-width: unset;
    }

    .slides .slide h3 {
        text-align: center;
    }

    #time {
        padding-bottom: unset;
    }

    .checkbox-grid {
        grid-template-columns: repeat(1, max-content) !important;
    }

    .inputs-container {
        flex-direction: column;
    }

    .inputs-container input {
        width: 30rem;
    }
}

@media screen and (max-width: 530px) {
    .slides .slide .name {
        width: 43rem;
        margin: 0 auto;
    }

    .slides .slide .name input {
        width: 23rem;
    }
}

@media screen and (max-width: 500px) {
    .slides .slide .option.radio {
        width: 100%;
    }

    .slides .slide .option.tel:hover {
        width: 29rem;
    }

    .slides .slide .option.tel {
        width: 30rem;
    }

    .slides .slide .option.tel button {
        padding: 0;
        padding-right: 2rem;
        font-size: 1.7rem;
    }

    .slides .slide .option.tel input {
        padding: 2rem;
        font-size: 1.6rem;
        width: 17rem;
    }

    .slides .slide .option.tel button::after {
        display: none;
    }
}

@media screen and (max-width: 450px) {
    .slides .slide .option.radio label::after {
        background-image: unset;
        display: none;
    }

    .slides .slide .option.radio label {
        text-align: center;
        padding: 2rem;
        width: 100%;
        margin: unset;
        margin-bottom: 1.5rem;
    }

    .image_value_preco img {
        height: 30rem;
    }

    .slides .slide .name button {
        font-size: 1.8rem;
    }

    .slides .slide .name {
        width: 38rem;
    }

    .slides .slide .name input {
        width: 19rem;
    }
}

@media screen and (max-width: 400px) {
    .slides .slide .name button {
        padding: 1rem;
        padding-right: 3rem;
    }

    .slides .slide .name input {
        width: 22rem;
        padding: 3rem 2rem;
    }

    .slides .slide .name {
        width: 100%;
    }

    .slides .slide .name button::after {
        display: none;
    }
}

@media screen and (max-width: 360px) {
    .slides .slide .name input {
        width: 60%;
    }
}