<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Banner */
.banner {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 75px;
}

.banner .img-banner {
    width: 100%;
    display: flex;
}

.banner .img-banner img {
    width: 100%;
    transition: ease-in-out 1s;
}

.banner .content-container {
    z-index: 2;
    position: absolute;
    width: 100%;
    max-width: 1200px;
    bottom: calc(50% - 72px);
    margin: auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1 {
    color: #000;
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 30px;
}

/* Infos */
.infos {
    max-width: 350px;
}

/* How It Works Section */
#how-it-works {
    padding: 50px 40px;
    background-color: #E8E7E5;
}

#how-it-works .content {
    max-width: 1440px;
    margin: auto;
}

#how-it-works .content .cards .card {
    width: 100%;
    max-width: 315px;
    height: 289px;
    background-color: #007B8B;
    border-radius: 23px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
    margin-right: 20px;
}

#how-it-works .content .cards .card:last-of-type {
    margin-right: 0px;
}

#how-it-works .content .cards .card .step {
    font-size: 135px;
    font-weight: lighter;
    line-height: 110%;
}

#how-it-works .content .cards .card .text-part {
    font-weight: lighter;
}

/* Make The Difference Section */
#make-the-diff {
    padding: 60px 40px;
}

#make-the-diff .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: auto;
}

#make-the-diff .content .text-ctn {
    max-width: 600px;
}

#make-the-diff .form-ctn {
    flex-direction: column;
    max-width: 550px;
    width: 100%;
    display: flex;
    border-radius: 20px;
    box-shadow: 0px 4px 10px rgb(0 0 0 / 15%);
    padding: 30px;
}

#make-the-diff .form-ctn form {
    width: 100%;
}

#make-the-diff .form-ctn form input,
#make-the-diff .form-ctn form textarea {
    width: 100%;
    height: 40px;
    border-radius: 50px;
    border: 2px #8E8E8E solid;
    padding-left: 15px;
}

.pop-ups .form-ctn form input:focus,
.pop-ups .form-ctn form select:focus,
.pop-ups .form-ctn form textarea:focus {
    border: 2px #40C982 solid;
}


#make-the-diff .form-ctn form textarea {
    border-radius: 12px;
    max-width: 100%;
    max-height: 400px;
    min-height: 100px;
    padding-top: 6px;
    resize: vertical;
}

#make-the-diff .form-ctn form input[type='checkbox'] {
    width: 20px;
    height: 20px;
    border-radius: 2px;
    padding: unset;
}

#make-the-diff .form-ctn .content-checkbox label {
    line-height: 20px;
}

.content-checkbox input[type="checkbox"]:checked~.checkmark {
    background-color: #40c982;
}

.slick-prev {
    display: inline-block;
    position: absolute;
    left: 30px;
    bottom: 51%;
    z-index: 1;
}
.slick-next {
    display: inline-block;
    position: absolute;
    right: 7px;
    bottom: 59%;
    z-index: 1;
}
.slick-prev:after,
.slick-next:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: solid white;
    cursor: pointer;
}
.slick-prev:after {
    right: 58px;
    top: -3px;
    border-width: 4px 0px 0px 4px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(-45deg);
}
.slick-next:after {
    right: 28px;
    top: -3px;
    border-width: 0 4px 4px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(-45deg);
}
.slick-prev:hover:after,
.slick-prev:focus:after,
.slick-next:hover:after,
.slick-next:focus:after
{
    opacity: 1;
}
.slick-prev.slick-disabled:after,
.slick-next.slick-disabled:after
{
    opacity: 0;
    pointer-events: none !important;
}
[aria-disabled] {
    touch-action: unset !important;
    pointer-events: unset !important;
    color: unset !important;
}

.slick-prev:before, .slick-next:before {
    content: '' !important;
}

.slick-dots {
    top: unset !important;
    bottom: -50px !important;
    left: -15px !important;
    display: none !important;
}

.slick-next {
    right: 0px !important;
}

.mobile-view {
    display: none;
}

p.retorno_form.warning {
    background: var(--orange);
}

/* Media Queries */
@media (max-width: 800px) {
    .banner .content-container {
        justify-content: center;
    }

    .desktop-view {
        display: none;
    }

    .mobile-view {
        display: block;
    }

    .infos.mobile-view {
        padding: 60px 40px;
        width: 100%;
        text-align: center;
        max-width: unset;
    }

    .infos.mobile-view p {
        line-height: 140%;
    }
}

@media (max-width: 1000px) {
    #how-it-works .content .cards .card {
        height: 225px;
        padding-top: 12px;
    }
    #how-it-works .content .cards .card .step {
        font-size: 100px !important;
    }
    #how-it-works .content .cards .card .text-part {
        font-size: 12px !important;
    }
}

@media (max-width: 1300px) {
    .banner .template {
        width: 320px;
    }
    .banner .template img {
        width: 100%;
    }
    #how-it-works .cards {
        display: block;
        margin-bottom: 60px !important;
        width: 100%;
    }
    #how-it-works .content .cards .card {
        max-width: unset;
    }
    #make-the-diff .content {
        flex-direction: column;
    }
    #make-the-diff .content .text-ctn {
        max-width: 550px;
        margin-bottom: 50px;
    }
}

@media (max-width: 500px) {

    .infos.mobile-view {
        padding: 60px 30px;
    }

    .cards {
        display: block;
        width: 300px;
    }
    #how-it-works {
        padding: 60px 30px;
    }
    #how-it-works h2 {
        text-align: center;
    } 
    #how-it-works .content .cards {
        max-height: 225px;
        overflow: hidden;
    }
    #how-it-works .content .cards .card {
        width: 100%;
        height: 225px;
        max-width: unset !important;
        margin-right: 0px;
    }

    .content .slick-dots {
        display: block !important;
    }
    #how-it-works small {
        display: flex;
        width: 100%;
        text-align: center;
        font-size: 10px !important;
    }
    .button-radius {
        white-space-collapse: preserve;
        font-size: 12px !important;
    }

    #make-the-diff {
        padding: 60px 30px;
    }
    #make-the-diff .form-ctn form input, #make-the-diff .form-ctn form textarea {
        height: 30px;
        padding-left: 10px;
    }

    .parceiros .fs-32 {
        font-size: 20px !important;
    }
    .parceiros .fs-24 {
        font-size: 14px !important;
    }
    .parceiros .fs-14, .parceiros p {
        font-size: 12px !important;
        line-height: 140%;
    }

    .slick-next:after {
        right: 8px;
    }
}

</pre></body></html>