.container {
    background: #F8F7FF;
    overflow: hidden;
}

::-webkit-scrollbar {
    /*width: 0px;*/
}

/* BANNER CONTAINER */
.banner-container {
    padding-top: 20px;
    max-width: 1440px;
    margin: 0 auto;
}

.banner-container-grid {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
}

.text-container {
    text-align: center;
    width: 70%;
    margin-bottom: 4rem;
}

.banner-title {
    font-size: 2.7rem;
    font-weight: bold;
    line-height: 1.2;
    color: var(--primary-color);
}

    .banner-title .text-primary {
        color: var(--primary-color);
    }

    .banner-title .text-secondary {
        color: var(--secondary-color);
    }

.banner-description {
    margin-top: 16px;
    width: 95%;
    font-size: 1.125rem;
    color: var(--accent-color);
}

.try-button {
    margin-top: 40px;
    padding: 10px 20px;
    background: linear-gradient(246deg, #FA98FF 15.35%, #E3911C 84.65%);
    color: white;
    border-radius: 100px;
    cursor: pointer;
    border: none;
    display: inline-block;
}

.image-container {
    position: relative;
    display: flex;
    gap: 40px;
    align-items: center;
    border: 10px solid transparent;
}

.gradient-background {
    position: absolute;
    top: -20px;
    right: -10px;
    width: 300px;
    height: 200px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    background-color: rgba(76, 69, 173, 0.6);
    filter: blur(175px);
    z-index: 1;
}

.phone-image-1 {
    margin-top: -50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .phone-image-1 img {
        width: 78%;
    }



@media (min-width: 1024px) {
    .banner-title {
        font-size: 3.5rem;
    }

    .banner-container-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-items: start;
        margin-top: 100px;
    }

    .text-container {
        text-align: left;
        padding-left: 20px;
    }

    .banner-description {
        margin-top: 16px;
        width: 80%;
        font-size: 1.125rem;
        color: var(--accent-color);
    }
}


.bg-curve {
    background: url('/images/site/banner_bg.png') no-repeat;
    padding-top: 400px;
    padding-bottom: 24px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: -400px;
}

@media (min-width: 1024px) {
    .bg-curve {
        padding-left: 100px;
        padding-right: 100px;
        height: 100%;
        background-position: left bottom;
        background-size: cover;
    }
}

.banner-footer-title {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    padding: 0 1.25rem;
    margin-left: 5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 24px;
    padding: 1.25rem;
    max-width: 100%;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    background: linear-gradient(180deg, #B6A9F1 0%, #9381E5 100%);
    padding: 16px;
    border-radius: 16px;
    max-width: fit-content;
    margin: 0 auto;
}

.feature-text {
    font-size: 1rem;
    color: #fff;
    margin-top: 16px;
    text-align: center;
}

/* END BANNER CONTAINER */


/* PARTNER AREA */
.partner-area {
    margin-top: 150px;
}

    .partner-area .bg-overlay {
        background: url('/images/site/rectangle-girl-pointing.png') no-repeat;
        background-size: cover;
        background-position: center center;
        height: 500px;
        border-radius: 0;
        position: relative;
    }

        .partner-area .bg-overlay > img {
            position: absolute;
            right: 0;
            max-height: 100%;
            max-width: 45%;
            bottom: 0;
        }

.bg-overlay .texts {
    padding: 2rem;
    max-width: 80%;
    margin: 0 auto;
    height: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

    .bg-overlay .texts .button {
        width: 200px;
        padding: 1rem;
        border-radius: 50px;
        background: #272046;
        border: none;
        color: #fff;
        font-weight: 600;
        text-align: center;
    }

.break-row {
    display: none;
}

.bg-overlay .texts h2 {
    font-size: 3em;
}

@media(max-width: 800px) {
    .partner-area {
        margin-top: 0;
    }

    .bg-overlay .texts {
        padding: 1rem 0 0;
        max-width: 90%;
    }

    .bg-overlay .texts h2 {
        font-size: 2.5em;
    }

    .break-row {
        display: block;
    }

    .partner-area .bg-overlay > img {
        width: auto;
        max-height: 300px;
        max-width: 60%;
    }
}



/* .partner-area figure {
    max-width: 1400px;
    margin: 0 auto;
}

.partner-area figure img {
    width: 100%;
} */

/* END PARTNER AREA */

/* DEVICE DISPLAY */
.device-display {
    padding-top: 620px;
    max-width: 1440px;
    margin: 0 auto;
}

    .device-display .content {
        position: relative;
    }

        .device-display .content .heading {
            text-align: center;
            margin-top: -530px;
            margin-bottom: 24px;
            space-between: 18px;
        }

    .device-display .title {
        font-size: 32px;
        font-weight: 700;
        max-width: 50%;
        margin: 0 auto;
    }

.highlight {
    color: var(--primary-color);
}

.description {
    color: #9C9C9C;
    padding-left: 20px;
    padding-right: 20px;
}

.display-container {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.background-overlay {
    position: absolute;
    inset: 0;
    width: 75%;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: rgba(165, 160, 230, 0.6);
    filter: blur(35px);
    z-index: 1;
}

.device-image {
    z-index: 10;
    /*width: 100%;*/
    width: 80%;
}

.tablet-overlay {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    align-items: center;
}

.tablet-image {
    /* width: 7rem; */
    width: 60%;
    margin: 0 auto;
}

.phone-overlay {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 20;
    display: flex;
    align-items: center;
}

.phone-image {
    width: 9rem;
    /* width: 30%; */
    margin: 0 auto;
}


.card-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    padding: 50px 1rem 0;
}

.card-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: #F5F3FF;
    border-radius: 1.5rem;
}

.card-icon {
    width: 2.5rem;
}

.card-text {
    color: #9C9C9C;
}


@media (max-width: 517px) {
    .phone-overlay {
        bottom: -35px !important;
    }

    .phone-image {
        width: 3rem !important;
    }
}

@media (max-width: 800px) {
    .phone-overlay {
        bottom: -80px;
    }

    .phone-image {
        width: 6rem;
    }
}

@media (min-width: 800px) {
    .phone-overlay {
        bottom: -140px;
    }
}

@media (min-width: 1024px) {
    .partner-area .bg-overlay {
        position: relative;
        max-width: 1450px;
        margin: 0 auto;
        background: url('/images/site/rectangle-girl-pointing.png') no-repeat;
        background-size: cover;
        background-position: center center;
        height: 400px;
        border-radius: 50px;
        overflow: visible;
    }

        .partner-area .bg-overlay > img {
            position: absolute;
            bottom: 0;
            max-height: 120%;
            max-width: 40%;
            width: auto;
            right: 10px;
        }


    /* Ajustes para padding e margem em telas grandes */
    .custom-container {
        padding-top: 720px;
        /* Margem superior de 720px */
        margin-top: -720px;
        /* Margem negativa de 720px */
    }

    .device-display .title {
        font-size: 40px;
    }

    .description {
        padding-left: 0;
        padding-right: 0;
    }

    .card-grid {
        grid-template-columns: repeat(4, 1fr);
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }

    .device-image {
        width: 65%;
    }

    .tablet-image {
        /* width: 20rem; */
        width: 50%;
    }

    .phone-overlay {
        bottom: -160px;
    }

    .phone-image {
        width: 10.5rem;
    }


    /* Ajuste na posição da sobreposição do fundo */
    .background-overlay {
        filter: blur(85px);
    }
}

/* END DEVICE DISPLAY */

/* HOW IT WORKS */
.how-it-works-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
    margin-top: 120px;
}

.how-it-works-container-content {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.how-it-works-container-content-heading {
    text-align: center;
    margin-bottom: 16px;
}

    .how-it-works-container-content-heading h3 {
        font-size: 32px;
        font-weight: 600;
        padding: 0 .5rem;
    }



.highlight {
    color: var(--primary-color);
}

.sub-title {
    color: var(--secondary-color);
}

.description {
    font-size: 16px;
    color: #9C9C9C;
    width: 100%;
    max-width: 60%;
    margin: 0 auto;
}

.how-it-works-container-content .services-container {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 1.25rem;
}

.services-container-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}



.text-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .text-content h4 {
        font-size: 1.5rem;
        color: #272046;
        font-weight: 600;
    }

    .text-content .subtitle {
        color: #374151;
        font-weight: 500;
    }

    .text-content p {
        color: #6b7280;
    }

/* Ícones de download */
.icon-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

    .icon-group img {
        background-color: #EAE5FF;
        padding: 1rem;
        border-radius: 50%;
        width: 50px;
        height: 50px;
    }

.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.service-image-container {
    background-color: #EAE5FF;
    padding: 1.75rem;
    border-radius: 30px;
}

    .service-image-container img {
        width: 100%;
        display: block;
    }



/* SERVICE 1 */

.service-1 {
}



.circle-service-1 {
    background-color: #DDD8F5;
    height: 125px;
    width: 125px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    order: 1;
    /* padding-right: .5rem; */
    margin: 0 auto;
    border-radius: 50%;
}


    .circle-service-1 > span {
        color: var(--primary-color);
        position: absolute;
        font-size: 28px;
        font-weight: bold;
    }

    .circle-service-1 .line-top {
        display: none;
        align-items: center;
        transform: rotate(-90deg);
        margin-bottom: 18rem;
    }

        .circle-service-1 .line-top span {
            background: var(--tertiary-color);
            width: .5rem;
            height: .5rem;
            margin-right: -90px;
            border-radius: 50%;
        }

        .circle-service-1 .line-top hr {
            width: 5rem;
            margin: 0 auto;
            height: 2px;
            background: var(--tertiary-color);
        }

    .circle-service-1 .line-bottom {
        display: none;
        align-items: center;
        transform: rotate(90deg);
        margin-top: 125px;
    }

        .circle-service-1 .line-bottom hr {
            width: 300px;
            margin: 0 auto;
            position: absolute;
            background-color: var(--tertiary-color);
        }


/* SERVICE 2 */
.service-2 .service-image-container {
    /* order: 2; */
}

.circle-service-2 {
    background-color: #DDD8F5;
    height: 125px;
    width: 125px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding-right: .5rem; */
    margin: 0 auto;
    border-radius: 50%;
    /* order: 1; */
}

    .circle-service-2 span {
        color: var(--primary-color);
        position: absolute;
        font-size: 28px;
        font-weight: bold;
    }

    .circle-service-2 .line-bottom {
        display: none;
        align-items: center;
        align-items: center;
        transform: rotate(90deg);
        margin-top: 125px;
    }

        .circle-service-2 .line-bottom hr {
            width: 300px;
            margin: 0 auto;
            position: absolute;
            background: var(--tertiary-color);
        }

/* SERVICE 3 */
.service-3 {
}

.circle-service-3 {
    background-color: #DDD8F5;
    height: 125px;
    width: 125px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* order: 1; */
    /* padding-right: .5rem; */
    margin: 0 auto;
    border-radius: 50%;
}

    .circle-service-3 > span {
        color: var(--primary-color);
        position: absolute;
        font-size: 28px;
        font-weight: bold;
    }

    .circle-service-3 .line-bottom {
        display: none;
        align-items: center;
        transform: rotate(90deg);
        margin-top: 18rem;
    }

        .circle-service-3 .line-bottom span {
            background: var(--tertiary-color);
            width: .5rem;
            height: .5rem;
            margin-right: -90px;
            border-radius: 50%;
        }

        .circle-service-3 .line-bottom hr {
            width: 5rem;
            margin: 0 auto;
            background: var(--tertiary-color);
        }


.right-align {
    text-align: center;
}

.left-align {
    text-align: center;
}



@media(max-width: 1024px) {

    .service-1 > .circle-service-1 {
        order: 1;
    }

    .service-1 > .service-image-container {
        order: 2;
    }

    .service-2 > .circle-service-2 {
        order: 1;
    }

    .service-2 > .service-image-container {
        order: 2;
    }

    .service-2 > .text-content {
        order: 3;
    }

    .services-container-grid > div:nth-child(1) {
        order: 3;
    }

    .service-image-container {
        max-width: 350px;
        margin: 0 auto;
    }

    .services-container-grid img {
        max-width: 350px;
        margin: 0 auto;
        background-color: #EAE5FF;
    }

    .icon-group {
        max-width: 350px;
        margin: 0 auto;
    }
}



/* PRICING PLAN */

.container-content-pricing-plan {
    padding: 2rem 1rem;
    margin-bottom: -25rem;
}

.container-content-pricing-plan-heading {
    text-align: center;
    margin-bottom: 4rem;
}

    .container-content-pricing-plan-heading h3 {
        font-size: 32px;
        font-weight: 600;
    }

        .container-content-pricing-plan-heading h3 span:nth-child(1) {
            color: var(--primary-color);
        }

        .container-content-pricing-plan-heading h3 span:nth-child(2) {
            color: var(--secondary-color);
        }

    .container-content-pricing-plan-heading > p {
        margin: 0 auto;
        color: var(--accent-color);
        padding: .5rem 0;
    }

.container-content-pricing-plan-cards {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
    padding: 0 1.25rem;
    margin: 0 auto;
    justify-content: center;
}

.container-content-pricing-plan-cards-item {
    padding: 2rem;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
}

/* .icon-container {
    position: relative;
    background: #DDD8F5;
    height: 124px;
    width: 124px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-container img {
    width: 48px;
    height: 48px;
} */

.item-title {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: capitalize;
    margin-top: 2rem;
    margin-bottom: .5rem;
}

.item-description {
    color: var(--accent-color);
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.item-price {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: bold;
    color: #F5A534;
    text-transform: capitalize;
    margin: 2rem 0;
}

.features-list {
    width: 100%;
    margin-bottom: 2rem;
}

    .features-list > div:not(:last-child) {
        margin-bottom: .75rem;
    }

.features-list-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: var(--accent-color);
}

.price-button {
    border: 1px solid var(--primary-color);
    border-radius: 100px;
    color: var(--primary-color);
    padding: .7rem .5rem;
    width: 100%;
    font-weight: 600;
    background: transparent;
    font-size: 1.1rem;
    font-family: 'Poppins';
    text-align: center;
}

.dynamic-pricing-class {
    margin-bottom: -24rem;
    margin-top: 2.5rem;
}

.pricing-plan {
}

/* LG */
@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        margin-top: 3.5rem;
        padding: 0;
    }

    /* SERVICE 1    */
    .circle-service-1 {
        order: 3;
    }

        .circle-service-1 .line-top {
            display: flex;
        }

        .circle-service-1 .line-bottom {
            display: flex;
        }

    .service-1 .service-image-container {
        order: 3;
    }



    /* SERVICE 2 */
    .circle-service-2 {
        margin-bottom: 1.5rem;
    }

        .circle-service-2 .line-bottom {
            display: flex;
        }

    /* SERVICE 3 */
    .circle-service-3 .line-bottom {
        display: flex;
    }

    .services-container-grid {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
        padding: 0;
    }

    .text-content p {
    }

    .icon-group {
        justify-content: flex-end;
    }



    .right-align {
        text-align: right;
    }

    .left-align {
        text-align: left;
    }


    /* END HOW IT WORKS */




    /* PRICING PLAN */
    .dynamic-pricing-class {
        margin-top: 10rem;
    }
}


/* LG */
@media (min-width: 1024px) {


    .container-content-pricing-plan-cards {
        padding: 0;
        width: 75%;
    }
}

/* XL */
@media (min-width: 1280px) {



    .container-content-pricing-plan-cards {
        width: 60%;
    }
}

/* MD */
@media (min-width: 768px) {


    .how-it-works-container-content-heading h3 {
        font-size: 40px;
        padding: 0;
    }

    .container-content-pricing-plan-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 750px) {
    .banner-footer-title {
        margin: 0;
        text-align: center;
    }
}
