@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap);:root {
    --header-height: 3rem;
    --hue: 0;
    --first-color: hsl(var(--hue), 0%, 0%);
    --first-color-alt: hsl(var(--hue), 0%, 0%);
    --title-color: hsl(var(--hue), 0%, 0%);
    --text-color: hsl(var(--hue), 0%, 0%);
    --text-color-light: hsla(0, 0%, 60%, 1);
    --body-color: #fff;
    --container-color: #fff;
    --body-font: 'Roboto',sans-serif;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1.125rem;
    --normal-font-size: 0.938rem;
    --small-font-size: 0.813rem;
    --smaller-font-size: 0.75rem;
    --font-medium: 500;
    --font-semi-bold: 600;
    --mb-1: 0.5rem;
    --mb-2: 1rem;
    --mb-3: 1.5rem;
    --mb-4: 2rem;
    --mb-5: 2.5rem;
    --mb-6: 3rem;
    --z-tooltip: 10;
    --z-fixed: 100
}

@media screen and (min-width: 1076px) {
    :root {
        --h1-font-size:3.25rem;
        --h2-font-size: 2rem;
        --h3-font-size: 1.5rem;
        --normal-font-size: 1.25rem;
        --small-font-size: 1rem;
        --smaller-font-size: 0.875rem
    }
}

*,::after,::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    padding: var(--header-height) 0 0 0;
    font-size: var(--normal-font-size);
    font-family: var(--body-font);
    background-color: var(--body-color);
    color: var(--text-color);
    min-height: 100vh;
    line-height: 1.4;
    overflow: scroll-y
}

h1,h2,h3 {
    font-weight: var(--font-medium);
    color: var(--title-color)
}

ul {
    list-style: none
}

a {
    display: inline-block;
    -webkit-tap-highlight-color: transparent;
    text-decoration: none
}

img {
    max-width: 100%;
    height: auto
}

.container {
    max-width: 1028px;
    margin-left: 1rem;
    margin-right: 1rem
}

.flex {
    display: flex
}

.flex-column {
    flex-direction: column
}

.section {
    padding: 2rem 0
}

.section-title {
    font-size: var(--h2-font-size);
    text-align: center;
    margin-bottom: var(--mb-4)
}

.main {
    flex-grow: 1
}

.button {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    padding: .8rem 1.6rem;
    border-radius: .4rem;
    color: var(--text-color);
    background-color: var(--body-color)
}

.black_round_button {
    display: inline-block;
    padding: 15px 60px;
    font-size: 16px;
    color: #fff;
    background-color: #000; /* 黑色背景 */
    text-align: center;
    text-decoration: none; /* 去掉下划线 */
    border-radius: 25px; /* 圆角 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 可选：按钮阴影效果 */
    transition: background-color 0.3s ease, transform 0.3s ease; /* 可选：添加过渡效果 */
}

.black_round_button_1 {
    display: inline-block;
    font-size: 22px;
    font-weight: 100;
    color: #fff;
    background-color: #000; /* 黑色背景 */
    text-align: center;
    text-decoration: none; /* 去掉下划线 */
    border-radius: 29px; /* 圆角 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 可选：按钮阴影效果 */
    transition: background-color 0.3s ease, transform 0.3s ease; /* 可选：添加过渡效果 */
    width: 160px;
    height: 58px;
    margin-top: 15px;
    padding-top: 13px;
    margin-left: 10px;
}

.title-underline {
    position: relative
}

.title-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    border-bottom-width: .34em;
    border-style: solid;
    border-color: #6fdd95;
    transition: all .2s
}

.title-underline:hover::after {
    border-bottom-width: .44em
}

.text-center {
    text-align: center
}

.card__list {
    flex-direction: column;
    justify-content: space-between;
    align-items: center
}

.card__group {
    margin-bottom: var(--mb-3);
    width: 280px;
    padding: 2.5rem 1.5rem 7rem;
    border-radius: 4px;
    position: relative
}

.card__group:nth-child(odd) {
    background-color: #eff9ff
}

.card__group:nth-child(even) {
    background-color: #eafaff
}

.card__group::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 128px;
    height: 100px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover
}

.card__title {
    position: relative;
    padding-bottom: var(--mb-2);
    margin-bottom: var(--mb-3)
}


/* .card__description::after {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 0;
    height: .25rem;
    width: 80%;
    border-radius: 4px;
    background: 0 0
}

.card__group:nth-child(odd) .card__description::after {
    background-color: #237F52
}

.card__group:nth-child(even) .card__description::after {
    background-color: #237F52
} */


.header {
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--body-color);
    width: 100%;
    z-index: var(--z-fixed)
}

.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center
}

.nav__logo {
    display: inline-flex;
    align-items: center;
    transition: color .3s;
    font-weight: var(--font-medium);
    color: var(--title-color)
}

.nav__logo:hover {
    color: var(--first-color-alt)
}

.nav__logo img {
    width: 15rem;
    height: 2.3rem;
    margin-right: .5rem
}

.nav__toggle {
    font-size: 1.25rem;
    cursor: pointer
}

.nav__menu {
    z-index: -1
}

.nav__item {
    margin-bottom: var(--mb-2)
}

.nav__link,.nav__toggle {
    color: var(--text-color-light);
    font-weight: var(--font-medium)
}

.nav__link {
    transition: color .3s
}

.nav__link.active-link,.nav__link:hover {
    color: var(--title-color)
}

.scroll-header {
    box-shadow: 0 2px 4px rgba(0,0,0,.1)
}

.scrolltop {
    position: fixed;
    right: 1rem;
    bottom: -100%;
    z-index: 99;
    background-color: rgba(0,0,0,.5);
    padding: .3rem;
    font-size: 1.3rem;
    color: #fff;
    border-radius: .2rem;
    display: flex;
    align-items: center;
    box-shadow: 0 0 4px rgba(0,0,0,.1);
    transition: .3s;
    visibility: hidden
}

.show-scrolltop {
    bottom: 1.5rem;
    visibility: visible
}

.footer {
    background-color: var(--first-color);
    padding-top: var(--mb-3);
    padding-bottom: var(--mb-3);
    overflow: hidden
}

.footer .container {
    position: relative
}

.footer__content {
    display: inline-flex;
    flex-direction: column
}

.footer__link {
    margin-bottom: var(--mb-2);
    font-size: var(--small-font-size);
    transition: .3s
}

.footer__link a {
    color: rgba(255,255,255,.68)
}

.footer__link a:hover {
    color: #fff
}

.footer__download {
    display: inline-flex;
    flex-direction: column
}

.footer__download>a:not(:last-child) {
    margin-bottom: var(--mb-3)
}

.footer__download .button-download {
    width: 11.375rem;
    background-color: rgba(255,255,255,.9);
    transition: .3s
}

.footer__download .button-googleplay {
    display: inline-flex;
    overflow: hidden
}

.footer__download .button-googleplay img {
    height: 3.375rem;
    float: left
}

.footer__download .button-download:hover {
    color: var(--title-color);
    background-color: #fff
}

.footer__download .button-download i {
    color: var(--first-color);
    margin-left: .75rem;
    font-size: 1.1rem
}

.footer-shape {
    position: absolute;
    width: 88px;
    height: 88px;
    border-radius: 16px;
    background-color: rgba(255,255,255,.18)
}

.footer-shape0 {
    transform: rotate(30deg);
    left: 30%;
    bottom: -85px
}

.footer-shape1 {
    transform: rotate(45deg);
    left: 80%;
    top: -85px
}

@media screen and (max-width: 768px) {
    .nav__menu {
        position:fixed;
        background-color: var(--body-color);
        top: -100%;
        left: 0;
        width: 100%;
        padding: 1.5rem 0 1rem;
        text-align: center;
        box-shadow: 0 4px 4px rgba(0,0,0,.1);
        border-radius: 0 0 1rem 1rem;
        transition: .3s
    }

    .show-menu {
        top: var(--header-height)
    }
}

.home {
    margin-top: 3rem;
    margin-bottom: 3rem
}

.home .container {
    align-items: center
}

.home__data {
    display: flex;
    flex-direction: column;
    justify-content: center
}

.home__data h1 {
    font-size: var(--h1-font-size);
    color: var(--title-color);
    margin-top: var(--mb-2);
    margin-bottom: var(--mb-2);
    text-align: center
}

.home__data p {
    margin-bottom: var(--mb-2)
}

.home-0 .home__img {
    width: 300px;
    align-self: center
}

.home-1 .home__img {
    width: 200px;
    align-self: center;
    margin-bottom: var(--mb-3)
}

.home-1 .home__data {
    border: 2px solid rgba(120,178,251,.42);
    background: rgba(239,253,244,.42);
    border-radius: 10px;
    padding-left: var(--mb-2);
    padding-right: var(--mb-2)
}

.product__group::after {
    width: 146px;
    height: 100px
}

.product__group-01::after {
    background-image: url(../assets/images/01.png)
}

.product__group-02::after {
    background-image: url(../assets/images/02.png)
}

.product__group-03::after {
    background-image: url(../assets/images/03.png)
}

.product__group-04::after {
    background-image: url(../assets/images/04.png)
}

/* .contact__group-01::after {
    background-image: url(../assets/images/contact_phone.png)
} */

/* .contact__group-02::after {
    background-image: url(../assets/images/contact_email.png)
}

.contact__group-03::after {
    background-image: url(../assets/images/contact_whatsapp.png)
} */

.privacy {
    padding: 3.5rem 0
}

.privacy .section-title {
    margin-bottom: 2rem
}

.privacy h3 {
    margin: 2rem 0 1.5rem
}

.terms {
    padding: 3.5rem 0
}

.terms .section-title {
    margin-bottom: 2rem
}

.terms h3 {
    margin: 2rem 0 1.5rem
}

.terms ul li P {
    margin: 0
}

@media screen and (min-width: 576px) {
    .container {
        margin-left:1.5rem;
        margin-right: 1.5rem
    }

    .footer .container {
        justify-content: space-between;
        flex-direction: row
    }

    .footer__download {
        flex-direction: row;
        align-items: center
    }

    .footer__download>a:not(:last-child) {
        margin: 0;
        margin-right: var(--mb-3)
    }

    .footer__download .button-download {
        width: auto
    }

    .card__list {
        flex-direction: row;
        align-items: stretch;
        gap: 1rem
    }
}

@media screen and (min-width: 768px) {
    body {
        padding-top:calc(var(--header-height) + 1.5rem)
    }

    .nav__menu {
        z-index: 0
    }

    .nav,.nav__link {
        height: calc(var(--header-height) + 1.5rem)
    }

    .nav__toggle {
        display: none
    }

    .nav__list {
        display: flex
    }

    .nav__item {
        margin-bottom: 0
    }

    .nav__link {
        padding: 0 var(--mb-3);
        display: flex;
        align-items: center;
        position: relative
    }

    .nav__link::after {
        content: '';
        position: absolute;
        left: 10%;
        bottom: 0;
        width: 80%;
        border-bottom-style: solid;
        border-bottom-width: 5px;
        border-radius: 4px;
        border-bottom-color: transparent;
        transform: scaleX(0);
        transition: all .2s ease-in-out
    }

    .nav__link.active-link::after,.nav__link:hover::after {
        transform: scaleX(1);
        border-bottom-color: var(--first-color)
    }

    .main {
        display: flex;
        flex-direction: column;
        justify-content: center
    }

    .home {
        margin-top: 0;
        margin-bottom: 0
    }

    .home-0 {
        margin-bottom: 1rem
    }

    .home-0 .container {
        flex-direction: row-reverse
    }

    .home-1 .container {
        flex-direction: row
    }

    .home__data h1 {
        text-align: initial
    }

    .home-0 .home__data h1 {
        font-size: 2rem
    }

    .home-0 .home__data p {
        font-size: 1.5rem
    }

    .home-0 .home__img {
        width: 36%;
        margin-bottom: 0
    }

    .home-1 .container {
        position: relative
    }

    .home-1 .home__data h1 {
        font-size: 1.5rem
    }

    .home-1 .home__data p {
        font-size: .938rem
    }

    .home-1 .home__img {
        margin-bottom: 0;
        position: absolute;
        left: 28px;
        top: -40px;
        width: 164px;
        z-index: 1
    }

    .home-1 .home__data {
        padding-left: 220px;
        padding-top: var(--mb-3);
        padding-bottom: var(--mb-3)
    }

    .home__download-googleplay {
        width: 245px
    }

    .footer__content {
        flex-direction: row;
        align-items: center
    }

    .footer__link {
        margin: 0;
        margin-right: var(--mb-5)
    }

    .section-title {
        margin-bottom: 2rem;
        text-align: left
    }

    .card__group {
        min-height: 380px;
        padding: 1.5rem 1.2rem 3rem
    }

    .card__title {
        padding-bottom: var(--mb-3);
        margin-bottom: var(--mb-4)
    }

    .card__title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        height: .35rem;
        width: 4rem;
        border-radius: 4px;
        background: 0 0
    }

    .product .card__group::after {
        width: 190px;
        height: 130px
    }

    .contact .card__group::after {
        width: 190px;
        height: 150px
    }

    .contact .card__group {
        padding-top: 3.5rem
    }
}

@media screen and (min-width: 1076px) {
    .container {
        margin-left:auto;
        margin-right: auto
    }

    .section-title {
        margin-bottom: 3rem
    }

    .card__group {
        width: 310px
    }

    .home-bg,.product-bg {
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover
    }

    .home-bg {
        background-image: url(../assets/images/bg_home.png)
    }

    .product-bg {
        background-image: url(../assets/images/bg_home.png)
    }
}

@media screen and (min-width: 1560px) {
    body {
        padding-top:calc(var(--header-height) + 2.5rem)
    }

    .section-title {
        margin-bottom: 4.5rem
    }

    .section-title:not(.--center) {
        text-align: left
    }

    .nav,.nav__link {
        height: calc(var(--header-height) + 2.5rem)
    }

    .container {
        max-width: 1440px
    }

    .home__data h1,.home__data p {
        margin-bottom: var(--mb-3)
    }

    .home-0 .home__data h1 {
        font-size: 3rem
    }

    .home-0 .home__data p {
        font-size: 2.2rem
    }

    .home-1 .home__data {
        padding-left: 318px
    }

    .home-1 .home__data h1 {
        font-size: 2.4rem
    }

    .home-1 .home__data p {
        font-size: 1.2rem
    }

    .home-1 .home__img {
        left: 54px;
        top: -53px;
        width: 210px
    }

    .card__list {
        flex-wrap: nowrap
    }

    .card__group {
        min-height: 300px;
        padding: 1.5rem 1.2rem 3rem
    }

    .card__group:not(:first-child) {
        margin-left: var(--mb-6);
        margin-right: 0
    }

    .contact .card__list {
        justify-content: space-between
    }
}
