.sub-menu {
    float: right;
    left: 0;
    top: 0;
    transition: all 0.3s ease;
    height: 100%;
    width: 0;
    right: 100%;
    position: fixed;
    margin: 0;
    background-color: #e77099;
    border-radius: 0;
    z-index: 0;
    overflow: hidden;
}

.sub-menu img {
    position: absolute;
    top: 40px;
    right: 50%;
    transform: translateX(calc(50% + 20px));
}

.sub-menu.oppenned {
    left: 0;
    right: 0;
    width: 100%;
    z-index: 6;
}

.sub-menu ul {
    margin: 0 auto;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 6;
}

.sub-menu li {
    display: block;
    list-style: none;
    height: auto;
    margin-left: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.sub-menu li:first-child {
    margin-top: 100px;
}

.sub-menu li a {
    text-align: center;
    color: white;
    font-size: 16px;
    width: 100%;
    display: block;
    float: left;
    text-transform: capitalize;
    line-height: 30px;
    font-weight: bold;
    padding: 10px;
    text-decoration: none;
    padding-left: 50px;
    text-align: left;
}

.sub-menu li a:hover {
    font-weight: bold;
    text-decoration: none;
}

.c-hamburger {
    display: block;
    position: relative;
    overflow: hidden;
    margin: 10px;
    padding: 0;
    width: 36px;
    height: 36px;
    z-index: 7;
    font-size: 0;
    text-indent: -9999px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    box-shadow: none;
    border-radius: none;
    border: none;
    cursor: pointer;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
}

.c-hamburger:focus {
    outline: none;
}

.c-hamburger span {
    display: block;
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 4px;
    background: #cc004a;
    border-radius: 8px;
}

.c-hamburger span:before, .c-hamburger span:after {
    border-radius: 8px;
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #fff;
    background: #cc004a;
    content: "";
}

.c-hamburger span:before {
    top: -10px;
}

.c-hamburger span:after {
    bottom: -10px;
}

.c-hamburger--htx span {
    -webkit-transition: background 0s 0.3s;
    transition: background 0s 0.3s;
}

.c-hamburger--htx span:before, .c-hamburger--htx span:after {
    -webkit-transition-duration: 0.3s, 0.3s;
    transition-duration: 0.3s, 0.3s;
    -webkit-transition-delay: 0.3s, 0s;
    transition-delay: 0.3s, 0s;
}

.c-hamburger--htx span:before {
    -webkit-transition-property: top, -webkit-transform;
    transition-property: top, transform;
}

.c-hamburger--htx span:after {
    -webkit-transition-property: bottom, -webkit-transform;
    transition-property: bottom, transform;
}

.c-hamburger--htx.is-active span {
    background: none;
}

.c-hamburger--htx.is-active span:before, .c-hamburger--htx.is-active span:after {
    -webkit-transition-delay: 0s, 0.3s;
    transition-delay: 0s, 0.3s;
}

.c-hamburger--htx.is-active span:before {
    top: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: white;
}

.c-hamburger--htx.is-active span:after {
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background-color: white;
}

* {
    box-sizing: border-box;
    font-family: "SinkinSans", Verdana, Tahoma, sans-serif !important;
    outline-color: #e77099;
}

html,
body {
    overflow-x: hidden;
}

body {
    padding-top: 134.5px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

@media screen and (max-width: 768px) {
    body {
        padding-top: 116px;
    }
}


.container {
    width: 100%;
    padding: 0 15px;
    max-width: 1165px;
    margin: 0 auto;
}

main {
    margin: 30px auto;
}

.main-container {
    padding-top: 200px;
}

.flex {
    display: flex;
}

.centered {
    align-items: center;
}

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

.row {
    margin-left: -15px;
    margin-right: -15px;
}

header {
    z-index: 10;
    padding: 30px 0;
    transition: ease-in 200ms;
    background-color: transparent;
    box-shadow: 0px 0px 0px 0px rgba(231, 112, 153, 0.3019607843);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

header .logo-topo {
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    header {
        z-index: 10;
    }

    header img {
        width: 86px;
        display: block;
        padding-right: 46px;
        margin: 0 auto;
    }
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    position: fixed;
    box-shadow: 0px 0px 15px 0px rgba(231, 112, 153, 0.3019607843);
    padding: 10px 0;
}

@media screen and (max-width: 768px) {
    header.scrolled {
        box-shadow: 0px 0px 15px 0px rgba(231, 112, 153, 0.3019607843);
    }
}

h1 {
    color: #4d2f68;
    font-size: 46px;
    line-height: 55px;
    font-weight: bold;
}

h1 img {
    display: block;
    margin-top: 34px;
    margin-bottom: 77px;
}

h2 {
    color: #4d2f68;
    font-size: 30px;
    line-height: 55px;
    font-weight: bold;
}

h2 img {
    display: block;
    margin-top: 34px;
    margin-bottom: 77px;
}

@media screen and (max-width: 768px) {
    h2 {
        font-size: 26px;
        line-height: 31px;
    }

    h2 img {
        margin-top: 15px;
        margin-bottom: 30px;
    }
}

strong {
    font-weight: 700;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: #362e29;
}

nav {
    z-index: 5;
    width: 100%;
    display: block;
    margin-left: 300px;
}

@media screen and (min-width: 1200px) {
    nav {
        margin-left: 486px;
    }
}

nav ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0;
}

nav ul li button,
nav ul li a {
    color: #e77099;
    font-size: 14px;
    border: none;
    background: none;
    cursor: pointer;
    outline: none;
    text-decoration: none;
    line-height: 20px;
}

nav ul li button .underline,
nav ul li a .underline {
    display: flex;
}

nav ul li button .underline img,
nav ul li a .underline img {
    display: inline-block;
    margin-right: 3px;
    opacity: 0;
    transition: ease-in-out 200ms;
}

nav ul li button .underline::after,
nav ul li a .underline::after {
    content: "";
    display: inline-block;
    width: 0;
    border-radius: 10px;
    height: 8px;
    background-color: transparent;
    transition: ease-in 200ms;
}

nav ul li button.active .underline img,
nav ul li a.active .underline img {
    opacity: 1;
}

nav ul li button.active .underline::after,
nav ul li a.active .underline::after {
    background-color: #cc004a;
    width: 100%;
}

nav ul li button:hover .underline img, nav ul li button:focus .underline img,
nav ul li a:hover .underline img,
nav ul li a:focus .underline img {
    opacity: 1;
}

#presentation {
    padding: 200px 0;
    padding-top: 205px;
    margin-top: -105px;
}

#presentation .column {
    width: 100%;
    height: 100%;
}

#presentation .column:first-of-type {
    max-width: 470px;
}

#presentation .column:first-of-type p {
    max-width: 386px;
}

@media screen and (max-width: 768px) {
    #presentation .column:first-of-type p {
        max-width: 100%;
    }
}

#presentation .column:last-child {
    position: relative;
}

#presentation .column:last-child img {
    position: absolute;
    top: 50%;
    transform: translate(-50px, calc(-50% + 30px));
}

#presentation .column .apps {
    display: flex;
    justify-content: space-between;
    align-content: center;
    margin-top: 60px;
}

@media screen and (max-width: 768px) {
    #presentation .column .apps {
        margin-top: 20px;
    }
}

#presentation .column .apps a {
    background: none;
    border: 1px solid #e77099;
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 48%;
    color: #e77099;
    line-height: 14px;
    font-size: 12px;
    cursor: pointer;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    #presentation .column .apps a {
        width: 100%;
        justify-content: center;
        margin-bottom: 15px;
    }

    #presentation .column .apps a img {
        margin-right: 15px;
    }
}

@media screen and (max-width: 768px) {
    #presentation .column {
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    #presentation {
        padding: 100px 0;
    }
}

#testimony {
    background: #fdf0f5;
    margin-bottom: 220px;
    padding: 85px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    #testimony {
        flex-direction: column;
        margin-bottom: 120px;
    }
}

#testimony picture {
    margin-right: 50px;
}

#testimony picture img {
    width: 420px;
}

@media screen and (max-width: 768px) {
    #testimony picture {
        margin: 0 auto 30px;
    }

    #testimony picture img {
        width: 90vw;
    }
}

#testimony article {
    width: 738px;
}

@media screen and (max-width: 768px) {
    #testimony article {
        width: 100vw;
        padding: 0 20px;
    }
}

#testimony article div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

@media screen and (max-width: 768px) {
    #testimony article div {
        flex-direction: column;
    }

    #testimony article div img {
        margin: 20px auto;
    }
}

#testimony article div span {
    font-weight: bold;
    font-size: 20px;
}

#testimony article div span:first-child {
    color: #6aaaf5;
}

#testimony article div span:last-child {
    color: #e77099;
}

#testimony article p {
    text-align: center;
}

@media screen and (max-width: 768px) {
    #testimony article p {
        text-align: justify;
        font-size: 14px;
        line-height: 26px;
    }
}

#functionalities {
    padding: 200px 0;
    padding-top: 105px;
    margin-top: -105px;
}

#functionalities .column {
    width: 100%;
    position: relative;
}

#functionalities .column .coracoes {
    position: absolute;
}

#functionalities .column .coracoes:first-child {
    top: 70px;
    right: 60px;
}

#functionalities .column .coracoes:last-child {
    bottom: -20px;
    right: 70px;
}

#functionalities .column:first-of-type {
    max-width: 500px;
    position: relative;
}

#functionalities .column:first-of-type .background {
    position: absolute;
    top: 50%;
    transform: translate(-40%, calc(-50% - 85px));
}

@media screen and (max-width: 768px) {
    #functionalities .column:first-of-type .background {
        width: 620px;
        top: auto;
        bottom: 50%;
        transform: translate(50%, 104%);
        right: 50%;
    }
}

#functionalities .column:first-of-type .content {
    display: flex;
    position: absolute;
    bottom: 50%;
    transform: translate(calc(50% + 23px), 50%);
    right: 50%;
}

#functionalities .column:first-of-type .content img {
    margin-right: 45px;
}

#functionalities .column:first-of-type .phone-container {
    position: relative;
    overflow: hidden;
}

#functionalities .column:first-of-type .phone {
    margin: 0 auto;
    display: block;
    z-index: 3;
    position: relative;
}

@media screen and (max-width: 768px) {
    #functionalities {
        padding: 0 0 200px;
    }
}

#exclusive {
    padding-top: 105px;
    margin-top: -105px;
    padding-bottom: 135px;
    position: relative;
}

@media screen and (max-width: 768px) {
    #exclusive {
        padding-top: 86px;
        margin-top: -86px;
        padding-bottom: 0;
    }
}

#exclusive .tree {
    opacity: 0.2;
    position: absolute;
    bottom: 170px;
    width: 100%;
    border-bottom: 5px solid #cc004a;
    right: 50%;
    transform: translateX(-150px);
    z-index: 2;
}

@media screen and (max-width: 768px) {
    #exclusive .tree {
        top: -20px;
        bottom: auto;
        right: 0;
        transform: none;
    }

    #exclusive .tree img {
        width: 221px;
    }
}

#exclusive .tree img {
    float: right;
}

#exclusive .column {
    width: 100%;
    position: relative;
}

#exclusive .column:first-of-type {
    max-width: 470px;
    padding-bottom: 200px;
}

@media screen and (max-width: 768px) {
    #exclusive .column:first-of-type {
        padding-bottom: 30px;
    }
}

#exclusive .column > img {
    position: absolute;
    bottom: 50%;
    transform: translate(225px, calc(50% - 78px));
}

@media screen and (max-width: 768px) {
    #exclusive .column > img {
        width: 271px;
        bottom: 50%;
        right: 50%;
        transform: translate(50%, calc(50% - 70px));
    }
}

#exclusive .column .benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 0 0px 0px 90px;
}

#exclusive .column .benefits .item {
    width: 100%;
    flex: 0 1 50%;
    z-index: 2;
}

@media screen and (max-width: 768px) {
    #exclusive .column .benefits .item {
        margin: 0;
    }
}

#exclusive .column .benefits .item img {
    margin: 0 auto;
    display: block;
}

#exclusive .column .benefits .item strong {
    display: block;
    color: #4d2f68;
    text-align: center;
    margin-top: 23px;
    margin-bottom: 15px;
}

#exclusive .column .benefits .item p {
    font-size: 12px;
    display: block;
    text-align: center;
    line-height: 20px;
}

@media screen and (max-width: 768px) {
    #exclusive .column .benefits .item strong {
        font-size: 20px;
        line-height: 24px;
        margin-top: 68px;
        margin-bottom: 13px;
    }
}

#contact {
    padding-top: 105px;
    margin-top: -105px;
    padding-bottom: 140px;
}

@media screen and (max-width: 768px) {
    #contact {
        padding-bottom: 80px;
    }
}

#contact .column {
    width: 100%;
    min-height: 500px;
    position: relative;
}

#contact .column > img {
    position: absolute;
    bottom: 50%;
    transform: translate(calc(50% - 315px), calc(50% - 65px));
    right: 50%;
}

@media screen and (max-width: 768px) {
    #contact .column > img {
        width: 518px;
        right: 50%;
        transform: translate(calc(50% - 65px), 50%);
    }
}

#contact .column:last-child {
    max-width: 535px;
}

#contact .column form .inputs {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex: 0 1 48%;
    position: relative;
}

@media screen and (max-width: 768px) {
    #contact .column form .inputs {
        flex: 0 0 100%;
    }
}

#contact .column form .inputs .full {
    width: 100%;
}

#contact .column form .inputs .half {
    width: 48%;
}

@media screen and (max-width: 768px) {
    #contact .column form .inputs .half {
        width: 100%;
    }
}

#contact .column form .inputs .half,
#contact .column form .inputs .full {
    margin-bottom: 30px;
}

#contact .column form .inputs .half label,
#contact .column form .inputs .full label {
    color: #e77099;
    font-size: 14px;
    line-height: 17px;
}

#contact .column form .inputs .half label.error,
#contact .column form .inputs .full label.error {
    color: #dc3545;
}

#contact .column form .inputs .half textarea,
#contact .column form .inputs .full textarea {
    min-height: 90px;
    resize: none;
}

#contact .column form .inputs .half input,
#contact .column form .inputs .half select,
#contact .column form .inputs .half textarea,
#contact .column form .inputs .full input,
#contact .column form .inputs .full select,
#contact .column form .inputs .full textarea {
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid #969696;
    padding: 12px 0;
    margin-top: 10px;
    color: #362e29;
    max-width: 535px;
    outline: none;
}

#contact .column form .inputs .half input:focus,
#contact .column form .inputs .half select:focus,
#contact .column form .inputs .half textarea:focus,
#contact .column form .inputs .full input:focus,
#contact .column form .inputs .full select:focus,
#contact .column form .inputs .full textarea:focus {
    border-bottom: 1px solid #e77099;
}

#contact .column form .inputs .half input ::placeholder,
#contact .column form .inputs .half select ::placeholder,
#contact .column form .inputs .half textarea ::placeholder,
#contact .column form .inputs .full input ::placeholder,
#contact .column form .inputs .full select ::placeholder,
#contact .column form .inputs .full textarea ::placeholder {
    color: #aeaeae;
}

#contact .column form button {
    padding: 23px 54px;
    background-color: #e77099;
    color: white;
    font-size: 14px;
    border: none;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
    width: 271px;
    height: 69px;
}

#contact .column form button svg {
    margin-top: -8px;
}

#contact .column form button svg path {
    fill: white;
}

@media screen and (max-width: 768px) {
    #contact .column form button {
        width: 100%;
        text-align: center;
    }
}

#contact #form-title {
    padding-top: 86px;
    margin-top: -86px;
}

#slick,
#benefits {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 535px;
    margin: 140px auto 0;
    position: relative;
}

@media screen and (max-width: 768px) {
    #slick,
    #benefits {
        margin: 50px auto 0;
    }
}

#slick .card-container,
#benefits .card-container {
    padding: 50px;
    outline: none;
}

@media screen and (max-width: 768px) {
    #slick .card-container,
    #benefits .card-container {
        padding: 40px 20px;
    }
}

#slick .card-container .card,
#benefits .card-container .card {
    width: 100%;
    max-width: 405px;
    background-color: white;
    box-shadow: 0px 23px 26px rgba(231, 112, 153, 0.3019607843);
    height: 356px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-radius: 8px;
}

@media screen and (max-width: 768px) {
    #slick .card-container .card,
    #benefits .card-container .card {
        height: 286px;
        margin: 0 auto;
    }
}

#slick .card-container .card img,
#benefits .card-container .card img {
    margin: 0 auto;
    display: block;
}

#slick .card-container .card strong,
#benefits .card-container .card strong {
    color: #4d2f68;
    text-align: center;
    display: block;
    margin: 30px auto;
}

#slick .card-container .card p,
#benefits .card-container .card p {
    text-align: center;
    font-size: 14px;
    line-height: 20px;
}

#slick .slick-list,
#benefits .slick-list {
    height: 100%;
}

#slick .slick-arrow,
#benefits .slick-arrow {
    border: none;
    background: none;
    cursor: pointer;
}

#slick .slick-arrow.slick-next,
#benefits .slick-arrow.slick-next {
    transform: rotate(180deg);
}

#slick ul,
#benefits ul {
    position: absolute;
    bottom: -30px;
    display: flex;
    right: 50%;
    transform: translateX(50%);
}

@media screen and (max-width: 768px) {
    #slick ul,
    #benefits ul {
        bottom: -10px;
    }
}

#slick ul li button,
#benefits ul li button {
    width: 20px;
    height: 22px;
    padding: 0;
    margin: 0;
    cursor: pointer;
    color: transparent;
    background: none;
    border: none;
    background-image: url("../imgs/ic-proximo.svg");
    background-position: center center;
    background-repeat: no-repeat;
}

#slick ul li.slick-active button,
#benefits ul li.slick-active button {
    background-image: url("../imgs/ic-ativo.svg");
}

#benefits .slick-arrow {
    display: none !important;
}

#benefits ul {
    position: absolute;
    bottom: 50px;
    display: flex;
    right: 50%;
    transform: translateX(50%);
}

@media screen and (max-width: 768px) {
    #benefits ul {
        bottom: -40px;
    }
}

#benefits ul li button {
    width: 20px;
    height: 22px;
    padding: 0;
    margin: 0;
    cursor: pointer;
    color: transparent;
    background: none;
    border: none;
    background-image: url("../imgs/ic-proximo-roxo-mob.svg");
    background-position: center center;
    background-repeat: no-repeat;
    outline: none;
}

#benefits ul li.slick-active button {
    background-image: url("../imgs/ic-ativo-roxo-mob.svg");
}

@media screen and (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }

    h1 {
        font-size: 26px;
        line-height: 31px;
    }

    h1 img {
        margin-top: 15px;
        margin-bottom: 30px;
    }

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

    footer {
        height: auto;
        padding: 30px 0;
    }

    footer p {
        margin: 20px 0 0;
        text-align: center;
    }

    footer .container {
        justify-content: space-around;
    }

    #exclusive .column .benefits {
        padding: 0;
    }

    #slick .slick-arrow {
        display: none !important;
    }
}

@media screen and (min-width: 768px) {
    .hide-medium {
        display: none !important;
    }
}

.alert-style {
    position: fixed;
    margin: 0 auto;
    max-width: 600px;
    width: 100%;
    left: 20px;
    right: 20px;
    bottom: 15px;
    text-align: center;
    font-family: "Montserrat";
    z-index: 5;
}

.alert {
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert-success {
    background-color: #dff0d8;
    border-color: #d0e9c6;
    color: #3c763d;
}

.alert-warning {
    background-color: #fcf8e3;
    border-color: #faf2cc;
    color: #8a6d3b;
}

.alert-danger {
    background-color: #f2dede;
    border-color: #ebcccc;
    color: #a94442;
}

.register-now {
    padding: 20px;
    width: 100%;
    display: block;
    text-align: center;
    max-width: 330px;
    background-color: #cc004a;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 30px;
    margin-top: -40px;
}

@media screen and (max-width: 768px) {
    .register-now {
        max-width: 100%;
    }
}

#back-top {
    position: fixed;
    display: none;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    color: #cc004a;
    box-shadow: 0px 23px 26px rgba(231, 112, 153, 0.3019607843);
    height: 50px;
    width: 50px;
    background-color: white;
    font-size: 25px;
    z-index: 5;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
    padding-bottom: 10px;
}

#back-top.scrolled {
    display: flex;
    bottom: 5rem;
}



/*# sourceMappingURL=landing.css.map */
