@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100..1000&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap');


@media only screen and (max-width:400px) {
    html {
        font-size: 14px;
    }
}


body {
    background: #2a2828;
    font-family: "Roboto Flex", sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    color: #545454;
    margin: 0;
    padding: 0;
}



h1,
h2,
h3,
.h1,
.h2,
.h3 {
    font-family: "Roboto Flex", sans-serif;
    font-weight: 600;
    color: #ffffff;
    text-rendering: optimizeLegibility;
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
    margin-top: 6rem;
    margin-bottom: 1.6rem;
}

@media only screen and (max-width:600px) {

    h1,
    .h1,
    h2,
    .h2,
    h3,
    .h3 {
        margin-top: 5.6rem;
    }
}


h1,
.h1 {
    font-size: 3.6rem;
    line-height: normal;
    letter-spacing: normal;
}

@media only screen and (max-width:600px) {

    h1,
    .h1 {
        font-size: 3.3rem;
        letter-spacing: normal;

    }
}

h2,
.h2 {
    font-size: 3rem;
    line-height: normal;
}

h3,
.h3 {
    font-size: 2.1rem;
    line-height: normal;
}


p img {
    margin: 0;
}

p.lead {
    font-family: "Roboto Flex", sans-serif;
    font-weight: 300;
    font-size: 2.1rem;
    line-height: normal;
    margin-bottom: 3.6rem;
    color: #898989;
}


em,
i,
strong,
b {
    font-size: inherit;
    line-height: inherit;
}

em,
i {
    font-family: "Roboto Flex", sans-serif;
    font-style: italic;
}

strong,
b {
    font-family: "Roboto Flex", sans-serif;
    font-weight: 700;
}

small {
    font-size: 1.2rem;
    line-height: inherit;
}

abbr {
    font-family: "Roboto Flex", sans-serif;
    font-weight: 700;
    font-variant: small-caps;
    text-transform: lowercase;
    letter-spacing: normal;
    color: #898989;
}

var,
kbd,
samp,
code,
pre {
    font-family: Consolas, "Andale Mono", Courier, "Courier New", monospace;
}

pre {
    padding: 2.4rem 3.2rem 3.2rem;
    background: #eaeaea;
    overflow-x: auto;
}

code {
    font-size: 1.4rem;
    margin: 0 .2rem;
    padding: .3rem .7rem;
    white-space: nowrap;
    background: #eaeaea;
    border: 1px solid #d6d6d6;
    color: #000000;
    border-radius: 4px;
}

pre>code {
    display: block;
    white-space: pre;
    line-height: 2;
    padding: 0;
    margin: 0;
}

pre.prettyprint>code {
    border: none;
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
    text-decoration: none;
}

mark {
    background: #00f0bc;
    color: #000000;
}


/* ------------------------------------------------------------------- 
 * ## Lists
 * ------------------------------------------------------------------- */
ol {
    list-style: decimal;
}

ul {
    list-style: disc;
}

li {
    display: list-item;
}

ol,
ul {
    margin-left: 1.6rem;
}

ul li {
    padding-left: .4rem;
}

ul ul,
ul ol,
ol ol,
ol ul {
    margin: .8rem 0 .8rem 1.6rem;
}

ul.disc li {
    display: list-item;
    list-style: none;
    padding: 0 0 0 .8rem;
    position: relative;
}

ul.disc li::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00D000;
    position: absolute;
    left: -16px;
    top: 11px;
    vertical-align: middle;
}

dt {
    margin: 0;
    color: #00D000;
}

dd {
    margin: 0 0 0 2rem;
}

/* ------------------------------------------------------------------- 
 * ## floated image
 * ------------------------------------------------------------------- */
img.pull-right {
    margin: 1.2rem 0 0 2.8rem;
}

img.pull-left {
    margin: 1.2rem 2.8rem 0 0;
}



/* ------------------------------------------------------------------- 
 * ## Blocos
 * ------------------------------------------------------------------- */

.container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    padding: 60px 20px;
    flex-wrap: wrap;
}

.card {
    background: #002900;
    width: 350px;
    min-height: 700px;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.20);
    border-radius: 24px 24px 24px 24px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    padding: 36px 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.card,
.card2 {
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.card:hover,
.card2:hover {
    background-color: #005300;
    /* cor clara ao passar o rato */
    transform: scale(1.05);
    /* ligeiro zoom */
}


.card2 {
    background: #002900;
    border-radius: 28px;
    width: 350px;
    min-height: 700px;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.20);
    border-radius: 24px 24px 24px 24px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    padding: 0px 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.card img {
    max-width: 310px;
    bottom: 0;
    position: absolute;
}


.card .card2,
h2 {
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 16px;
    margin-top: 0;
    color: #fff;
    text-align: left;
    width: 100%;
    padding: 0 !important;
}

.card .card2,
p {
    font-size: 1.2em;
    color: #f1f1f1f1;
    text-align: left;
    width: 100%;
    margin-bottom: 30px;
    line-height: 1.4;
}



/* ------------------------------------------------------------------- 
 * ## tables
 * ------------------------------------------------------------------- */
table {
    border-width: 0;
    width: 100%;
    max-width: 100%;
    font-family: "Roboto Flex", sans-serif;
    border-collapse: collapse;
}

th,
td {
    padding: 1.6rem 3.2rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid #eaeaea;
}

th {
    color: #000000;
    font-family: "Roboto Flex", sans-serif;
    font-weight: 700;
}

th:first-child,
td:first-child {
    padding-left: 0;
}

th:last-child,
td:last-child {
    padding-right: 0;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}


/* ------------------------------------------------------------------- 
 * ## Spacing 
 * ------------------------------------------------------------------- */
fieldset,
button,
.btn {
    margin-bottom: 1.6rem;
}

input,
textarea,
select,
pre,
blockquote,
figure,
table,
p,
ul,
ol,
dl,
form,
.video-container,
.ss-custom-select {
    margin-bottom: 3.2rem;
}



/* ===================================================================
 * # preloader 
 *
 * ------------------------------------------------------------------- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #2a2828;
    z-index: 800;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.no-js #preloader,
.oldie #preloader {
    display: none;
}

#loader {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 6px;
    padding: 0;
    display: inline-block;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

#loader>div {
    content: "";
    background: #00D000;
    width: 6px;
    height: 6px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
}

#loader>div:nth-of-type(1) {
    left: 15px;
}

#loader>div:nth-of-type(3) {
    left: -15px;
}



/* ------------------------------------------------------------------- 
 * ## Style Placeholder Text
 * ------------------------------------------------------------------- */
::-webkit-input-placeholder {

    /* WebKit, Blink, Edge */
    color: #9c9c9c;
}

:-moz-placeholder {

    /* Mozilla Firefox 4 to 18 */
    color: #9c9c9c;
    opacity: 1;
}

::-moz-placeholder {

    /* Mozilla Firefox 19+ */
    color: #9c9c9c;
    opacity: 1;
}

:-ms-input-placeholder {

    /* Internet Explorer 10-11 */
    color: #9c9c9c;
}

::-ms-input-placeholder {

    /* Microsoft Edge */
    color: #9c9c9c;
}

::placeholder {

    /* Most modern browsers support this now. */
    color: #9c9c9c;
}

.placeholder {
    color: #9c9c9c !important;
}


/* ------------------------------------------------------------------- 
 * ## Change Autocomplete styles in Chrome
 * ------------------------------------------------------------------- */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: #00D000;
    transition: background-color 5000s ease-in-out 0s;
}



/* ===================================================================
 * # buttons
 *
 * ------------------------------------------------------------------- */
.btn,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    display: inline-block;
    font-family: "Roboto Flex", sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: normal;
    height: 6rem;
    line-height: 5.6rem;
    padding: 0 3.2rem;
    margin: 0 .4rem 1.6rem 0;
    color: #000000;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 50px;
    background-color: #d6d6d6;
    border: 0.2rem solid #d6d6d6;
}

.btn:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.btn:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
    background-color: #c2c2c2;
    border-color: #c2c2c2;
    color: #000000;
    outline: 0;
}

/* button primary
 * ------------------------------------------------- */
.btn.btn--primary,
button.btn--primary,
input[type="submit"].btn--primary,
input[type="reset"].btn--primary,
input[type="button"].btn--primary {
    background: #00D000;
    border-color: #00D000;
    color: #ffffff;
}

.btn.btn--primary:hover,
button.btn--primary:hover,
input[type="submit"].btn--primary:hover,
input[type="reset"].btn--primary:hover,
input[type="button"].btn--primary:hover,
.btn.btn--primary:focus,
button.btn--primary:focus,
input[type="submit"].btn--primary:focus,
input[type="reset"].btn--primary:focus,
input[type="button"].btn--primary:focus {
    background: #CCF5CC;
    border-color: #CCF5CC;
    color: #002900;
}

/* button modifiers
 * ------------------------------------------------- */
.btn.full-width,
button.full-width {
    width: 100%;
    margin-right: 0;
}

.btn--medium,
button.btn--medium {
    height: 6.4rem !important;
    line-height: 6rem !important;
}

.btn--large,
button.btn--large {
    height: 6.8rem !important;
    line-height: 6.4rem !important;
}

.btn--stroke,
button.btn--stroke {
    background: transparent !important;
    border: 0.2rem solid #000000;
    color: #000000;
}

.btn--stroke:hover,
button.btn--stroke:hover {
    background: #000000 !important;
    border: 0.2rem solid #000000;
    color: #ffffff;
}

.btn--pill,
button.btn--pill {
    padding-left: 3.2rem !important;
    padding-right: 3.2rem !important;
    border-radius: 1000px !important;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}



/* ------------------------------------------------------------------- 
 * ## additional typo styles 
 * ------------------------------------------------------------------- */


/* line definition style 
 * ----------------------------------------------- */
.lining dt,
.lining dd {
    display: inline;
    margin: 0;
}

.lining dt+dt:before,
.lining dd+dt:before {
    content: "\A";
    white-space: pre;
}

.lining dd+dd:before {
    content: ", ";
}


.lining dd:before {
    content: ": ";
    margin-left: -0.2em;
}

/** 
 * Pull Quotes
 * -----------
 * markup:
 *
 * <aside class="pull-quote">
 *    <blockquote>
 *      <p></p>
 *    </blockquote>
 *  </aside>
 *
 * --------------------------------------------------------------------- */
.pull-quote {
    position: relative;
    padding: 2.4rem 3.2rem 2.4rem 0px;
}

.pull-quote:before,
.pull-quote:after {
    height: 1em;
    position: absolute;
    font-size: 10rem;
    font-family: Arial, Sans-serif;
    color: #00D000;
}

.pull-quote:before {
    content: "\201C";
    top: -2.8rem;
    left: -6px;
}

.pull-quote:after {
    content: '\201D';
    bottom: 3.4rem;
    right: 6px;
}

.pull-quote blockquote {
    margin: 0;
    padding-left: 4.8rem;
    padding-right: 0;
    position: relative;
}

.pull-quote blockquote p {
    font-family: "Roboto Flex", sans-serif;
    font-weight: 400;
    padding: 0;
    font-size: 2.6rem;
    line-height: 1.692;
    color: #000000;
}

.pull-quote blockquote:before {
    content: none;
}


.wide {
    max-width: 1400px;
}

.narrow {
    max-width: 1000px;
}


.display-1 {
    font-family: "Roboto Flex", sans-serif;
    font-weight: 600;
    font-size: 4.8rem;
    line-height: 1.236;
    letter-spacing: normal;
    margin-top: 0;
    margin-bottom: 2.8rem;
}


.item-title {
    font-weight: 600;
    font-size: 2em;
    line-height: 1.286;
    margin-top: 0;
    margin-bottom: 2rem;
}




/* ===================================================================
 * # home
 *
 * ------------------------------------------------------------------- */
.s-home {
    display: table;
    width: 100%;
    min-height: 1020px;
    position: relative;
    background-image: url(../images/pills_bg.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: contain;
    background-color: #2A2828;
}

.s-home::before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/pills_bg.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: contain;
    background-color: #2A2828;
}

.no-js .s-home {
    background: #2A2828;
    ;
}





/* ------------------------------------------------------------------- 
 * ## home content
 * ------------------------------------------------------------------- */
.home-content {
    z-index: 4;
    display: table-cell;
    vertical-align: bottom;
    padding-top: 5rem;
    width: 100%;
    position: relative;
}

.home-content h1 {
    font-family: "Roboto Flex", sans-serif;
    text-align: left;
    font-weight: 600;
    font-size: 7.2rem;
    line-height: 1.222;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 1.2rem;
    position: relative;
}


.home-content h3 {
    font-family: "Roboto Flex", sans-serif;
    font-weight: 300;
    font-size: 2.1rem;
    line-height: 1.5;
    font-style: normal;
    color: #ffffff;
    margin-top: 2rem;
    width: 85%;
}


.home-content__main {
    position: relative;
    padding-bottom: 5rem;
    max-width: 1300px;
}

.home-content__left {
    width: calc(100% - (580px + 80px));
}

.home-content__right {
    z-index: 500;
    width: 50%;
    position: absolute;
    top: 27rem;
    right: 20px;
}

.home-content__right img {
    vertical-align: bottom;
    margin-top: 2.8rem;
}


/* ------------------------------------------------------------------- 
 * ## home button section
 * ------------------------------------------------------------------- */
.home-content__btn-wrap {
    margin-top: 1.2rem;
}

.home-content__btn-wrap .home-content__btn {
    width: 30rem;
    height: 5.4rem !important;
    line-height: 5rem !important;
    margin-right: 0;
}


/* ------------------------------------------------------------------- 
 * ## home scroll
 * ------------------------------------------------------------------- */
.home-scroll {
    z-index: 4;
    height: 5.6rem;
    position: absolute;
    right: 40px;
    bottom: 4.8rem;
}

.home-scroll:hover .home-scroll__text {
    border-bottom: 1px solid #ffffff;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px;
}

h1 {
    text-align: center;
    font-size: 3rem;
    color: #0D0C0C;
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: normal;
}

.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.side {
    width: 22%;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding: 16px 0;
}

.center {
    width: 34%;
    min-width: 325px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


.feature h2 {
    color: #fff;
    font-size: 1.18rem;
    font-weight: 500;
    margin: 0 0 8px 0;
}

.feature p {
    color: #a0a2a7;
    font-size: 0.96rem;
    margin: 0;
    max-width: 260px;
    font-weight: 400;
}

/* ===================================================================
 * # about
 *
 * ------------------------------------------------------------------- */

.s-about {
    padding-top: 10rem;
    padding-bottom: 5rem;
    background-color: #2a2828;
    color: #002a00;
    overflow: hidden;
    position: relative;
    background-image: url(../images/pills_bg2.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: contain;
    background-color: #2a2828
}

.s-about .section-header.has-bottom-sep::before {
    background-color: rgba(255, 255, 255, 0.1);
}

.s-about .display-1,
.s-about h3 {
    color: #ffffff;
}

.s-about p.lead {
    color: rgba(255, 255, 255);
    text-align: center;
}



/* ===================================================================
 * # features
 *
 * ------------------------------------------------------------------- */

.s-features {
    padding-top: 5rem;
    padding-bottom: 10rem;
    background-color: #2a2828;
    overflow: hidden;
    position: relative;
    background-image: url(../images/pills_bg2.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: contain;
    background-color: #2a2828
}

.s-features .content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px;
}

.s-features .side {
    display: flex;
    flex-direction: column;
    gap: 32px;
    /* espaçamento entre cards */
    flex: 1 1 0;
}

.s-features .center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}


.s-features .s-features {
    background: #002900;
    border-radius: 14px;
    padding: 32px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.s-features .s-features svg {
    margin-bottom: 18px;
}

.s-features .s-features h2 {
    margin: 0 0 9px;
    color: #36fd78;
    font-size: 1.18em;
    font-weight: 600;
}

.s-features .s-features p {
    color: #eaeaea;
    font-size: 1em;
    margin: 0;
}



/* ------------------------------------------------------------------- 
 * ## features list
 * ------------------------------------------------------------------- */
.features {
    margin-top: 7.2rem;
}

.item-feature {
    margin-bottom: 4rem;
}


.item-feature__icon {
    color: #00D000;
    font-size: 3.8rem;
}

.item-features__icon {
    color: #00D000;
    font-size: 2rem;
}





/* ===================================================================
 * # download
 * ------------------------------------------------------------------- */

.download-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 40px 0;
    flex-direction: column;
}

.download-badges {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    gap: 24px;
}


.logo_footer {
    width: 280px;
    height: auto;
    margin-bottom: 3.6rem;
}

.download-badges li {
    display: inline-block;
}

.download-badges li a img {
    height: 54px;
    /* Ajuste conforme o tamanho dos badges */
    display: block;
}



.s-download .download-badges {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;


}

.qr-section img {
    width: 120px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.qr-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 1.5em;

}

.qr-section2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 1.5em;

}




.s-download {
    color: rgba(255, 255, 255, .8);
    overflow: hidden;
    position: relative;
    padding-top: 10rem;
    padding-bottom: 3em;
    background-image: url(../images/pills_bg2.png);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: contain;
    background-color: #2a2828;
}

.t-download {
    color: rgba(255, 255, 255, 0.8);
    overflow: hidden;
    position: relative;
    padding-top: 0;

}

.s-download .display-1,
.s-download h3 {
    color: #ffffff;
}

.s-download p.lead {
    color: #ffffff;
    text-align: center;
}

.s-download .download-badges {
    list-style: none;
    margin: 1.2rem 0 0 -6px;
}

.s-download .download-badges li {
    display: inline-block;
    margin: 0 6px;
    padding-left: 0;
}

.s-download .download-badges li a {
    display: block;
    font: 0/0 a;
    text-shadow: none;
    color: transparent;
    background-repeat: no-repeat;
    background-position: center;

}

/* .badge-appstore img {
    border-radius: 50px;
}

.badge-googleplay img {
    border-radius: 50px;
} */

.col-block.item-feature {
    padding: 0 30px;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * download
 * ------------------------------------------------------------------- */
@media only screen and (max-width:1200px) {
    .s-download .download-content__badges {
        padding-top: 3em;
    }

    .s-download .download-content__image {
        position: static;
        margin: 0 auto;
        max-width: 480px;
        width: auto;
        height: 24rem;
    }

}

@media only screen and (max-width:1000px) {
    .s-download {
        padding-top: 3em;
    }

}

@media only screen and (max-width:800px) {
    .s-download {
        padding-top: 3em;
    }

    .s-download .download-content__badges li a {
        width: 206px;
        height: 64px;
        background-size: 206px 64px;
    }
}

@media only screen and (max-width:600px) {
    /*     .s-features {
        background-image: url(../images/pills_bg_mobile.png);
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-size: contain;
        background-color: #2a2828
    } */

    .download-badges {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .s-download .download-badges {
        list-style: none;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
        justify-content: center;
        align-items: center;
    }

    .s-download {
        padding-top: 3em;
    }

    .s-download .download-bottom-image {
        margin-top: 0;
    }

}

@media only screen and (max-width:400px) {

    .go-top a {
        height: 5.2rem;
        width: 5.2rem;
        background-size: 8px 12px;
    }

}

/* ------------------------------------------------------------------- 
 * responsive:
 * features
 * ------------------------------------------------------------------- */
@media only screen and (max-width:1200px) {
    .s-features {
        padding-top: 15rem;
    }

    .features {
        max-width: 900px;
    }

    .features .item-feature:nth-child(2n+1) {
        padding-right: 30px;
    }

    .features .item-feature:nth-child(2n+2) {
        padding-left: 30px;
    }

}

@media only screen and (max-width:1000px) {
    .s-features {
        padding-top: 1rem7.2;
        padding-bottom: 17.2rem;
    }

    .features .item-feature:nth-child(2n+1) {
        padding-right: 20px;
    }

    .features .item-feature:nth-child(2n+2) {
        padding-left: 20px;
    }

}

@media only screen and (max-width:800px) {
    .s-home::before {
        background-image: url(../images/pills_bg_mobile.png);
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-size: cover;
        background-color: #2A2828;
    }

    .s-features {
        padding-top: 16rem;
        padding-bottom: 16rem;
    }

    .features {
        margin-top: 4.4rem;
    }

    .features .item-feature:nth-child(n) {
        padding-right: 15px;
        padding-left: 15px;
    }

    .item-feature__icon {
        color: #00D000;
        font-size: 3.8rem;
    }

    .item-features__icon {
        color: #00D000;
        font-size: 2rem;
    }
}

.home-content__right video {
    display: block;
    /* padrão para desktop */
}

.home-content__right img {
    display: none;
    /* esconder imagem no desktop */
}

@media only screen and (max-width:700px) {
    .home-content__right video {
        display: none;
        /* padrão para desktop */
    }

    .home-content__right img {
        display: block;
        /* esconder imagem no desktop */
    }

    .s-home::before {
        background-image: url(../images/pills_bg_mobile.png);
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-size: cover;
        background-color: #2A2828;
    }

    .features {
        max-width: 500px;
        text-align: center;
    }

    .features .item-feature {
        width: 100%;
        clear: both;
    }

    .item-feature__icon {
        color: #00D000;
        font-size: 3.8rem;
    }

    .item-features__icon {
        color: #00D000;
        font-size: 2rem;
    }
}

@media only screen and (max-width:600px) {


    .s-features {
        padding-top: 5rem;
        padding-bottom: 14.8rem;
    }

    .features .item-feature:nth-child(n) {
        padding-right: 10px;
        padding-left: 10px;
    }

}

@media only screen and (max-width:400px) {
    .s-features {
        padding-top: 5rem;
        padding-bottom: 14rem;
    }

    .features .item-feature:nth-child(n) {
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 0;
    }

}

/* Responsividade para telas pequenas */
@media (max-width: 700px) {
    .download-section {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;
        margin: 40px 0;
        flex-direction: column;
    }

    .qr-section img {
        margin-top: 20px;
    }
}

/* Responsividade */
@media (max-width: 900px) {
    .s-features .content {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }

    .s-features .side {
        flex: 1 1 100%;
        flex-direction: row;
        gap: 18px;
        justify-content: center;
    }

    .s-features .center {
        order: -1;
        flex-direction: row;
        gap: 24px;
    }

    .phone {
        max-width: 140px;
    }
}

/* ------------------------------------------------------------------- 
 * responsive:
 * about-how
 * ------------------------------------------------------------------- */
@media only screen and (max-width:1400px) {
    .process {
        max-width: 1000px;
    }

    .card img {
        max-width: 310px;
    }

}

@media only screen and (max-width:1200px) {
    .btn-video {
        left: 9%;
    }

    .stats {
        padding: 0 10%;
    }

    .item-stats {
        font-size: 2.6rem;
    }

    .item-stats span {
        line-height: 7.2rem;
    }

    .item-stats__num {
        font-size: 6.6rem;
    }

    .process {
        max-width: 900px;
    }

    .card img {
        max-width: 310px;
    }

}

@media only screen and (max-width:1100px) {
    .process {
        max-width: 800px;
    }

    .card img {
        max-width: 310px;
    }

}

@media only screen and (max-width:1000px) {
    .item-stats {
        font-size: 2.2rem;
    }

    .item-stats span {
        line-height: 6rem;
    }

    .item-stats__num {
        font-size: 6rem;
    }

    .card img {
        max-width: 310px;
    }

}

@media only screen and (max-width:900px) {
    .stats {
        bottom: 5.6rem;
    }

    .item-stats {
        float: none;
        width: auto;
        font-size: 1.8rem;
        margin-bottom: 1.6rem;
    }

    .item-stats span {
        display: block;
        line-height: 1;
    }

    .item-stats__num {
        font-size: 5.4rem;
    }

    .item-stats__title {
        color: rgba(255, 255, 255, 0.5);
    }

    .process {
        max-width: 600px;
    }

    .process::after {
        display: none;
    }

    .process .step {
        width: 100% !important;
        float: none !important;
        clear: both !important;
        margin-left: 0;
        margin-right: 0;
        padding-right: 16px;
        min-height: auto;
        padding: 0 30px .9rem 50px;
    }

    .card img {
        max-width: 260px;
    }
}

@media only screen and (max-width:800px) {
    .process {
        left: 0;
    }

    .process::before {
        left: 30px;
    }

    .process .step {
        padding: 0 10px 0 80px;
    }

    .process .step::before {
        font-size: 1.6rem;
        height: 44px;
        width: 44px;
        line-height: 44px;
        top: -8px;
        left: 8px;
    }

    .card img {
        max-width: 260px;
    }

    .card .card2,
    p {
        font-size: 1em;
        color: #f1f1f1f1;
        text-align: left;
        width: 100%;
        line-height: 1.3;
    }

}

@media only screen and (max-width:600px) {
    .s-about-how {
        padding-bottom: 10.4rem;
    }

    .video-bg {
        height: 60rem;
        margin-top: calc((60rem/2) * -1);
    }

    .video-icon {
        height: 96px;
        width: 96px;
        background-size: 20px 22px;
    }

    .card img {
        max-width: 260px;
    }

    .card .card2,
    p {
        font-size: 1em;
        color: #f1f1f1f1;
        text-align: left;
        width: 100%;
        line-height: 1.3;
    }
}

@media only screen and (max-width:500px) {
    .video-bg {
        height: 52rem;
        margin-top: calc((52rem/2) * -1);
    }

    .btn-video {
        top: 4.8rem;
    }

    .item-stats__num {
        font-size: 5rem;
    }

    .card img {
        max-width: 260px;

    }

    .card .card2,
    p {
        font-size: 1em;
        color: #f1f1f1f1;
        text-align: left;
        width: 100%;
        line-height: 1.3;
    }
}

@media only screen and (max-width:400px) {
    .s-about-how {
        padding-bottom: 12rem;
    }

    .video-bg {
        height: 48rem;
        margin-top: calc((48rem/2) * -1);
    }

    .video-icon {
        height: 80px;
        width: 80px;
    }

    .process {
        text-align: center;
    }

    .process::before {
        display: none;
    }

    .process .step {
        padding: 60px 0 0 0;
    }

    .process .step::before {
        top: 0;
        left: 50%;
        -webkit-transform: translate3d(-50%, 0, 0);
        -ms-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }

    .card img {
        max-width: 260px;
    }

    .card .card2,
    p {
        font-size: 1em;
        color: #f1f1f1f1;
        text-align: left;
        width: 100%;
        line-height: 1.3;
    }
}



/* ------------------------------------------------------------------- 
 * responsive:
 * about
 * ------------------------------------------------------------------- */
@media only screen and (max-width:1400px) {
    .s-about {
        padding-bottom: 10rem;
    }

}

@media only screen and (max-width:1200px) {
    .s-about {
        padding-top: 18.4rem;
    }

}

@media only screen and (max-width:1000px) {
    .s-about {
        padding-top: 5rem;
    }

    .about-desc__slide {
        padding: 0 20px;
    }

}

@media only screen and (max-width:800px) {
    .s-about {
        padding-top: 8rem;
    }

}

@media only screen and (max-width:700px) {
    .about-desc {
        max-width: 550px;
    }

    .about-desc__slide {
        padding: 0 10px;
        text-align: center;
    }

}

@media only screen and (max-width:600px) {
    .s-about {
        padding-top: 9rem;
        padding-bottom: 5rem;
    }

    .about-desc {
        max-width: 500px;
    }

    .about-desc__slide {
        padding: 0;
    }

}

@media only screen and (max-width:500px) {
    .s-about {
        padding-bottom: 5rem;
    }

}

@media only screen and (max-width:400px) {
    .s-about {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

}

/* ------------------------------------------------------------------- 
 * responsive:
 * home
 * ------------------------------------------------------------------- */
@media only screen and (max-width:1700px) {
    .home-content h1 {
        font-size: 6.8rem;
    }

    .home-content h3 {
        width: 100%;
        line-height: 1.4;
        max-width: 500px;
        text-align: left;
    }

    .home-content__main {
        max-width: 1200px;
    }

}

@media only screen and (max-width:1600px) {
    .home-scroll__text {
        display: none;
    }

}

@media only screen and (max-width:1500px) {
    .home-content {
        padding-top: 10.2rem;
        position: absolute;
    }

    .home-content h1 {
        font-size: 5.4rem;
    }

    .home-content h3 {
        font-size: 2rem;
        max-width: 380px;
        text-align: left;
    }

    .home-content__main {
        max-width: 1140px;
    }

    .home-content__left {
        width: calc(100% - (570px + 60px));
    }

    .home-content__right {
        width: 820px;
    }

}

@media only screen and (max-width:1400px) {
    .home-content h1 {
        font-size: 6rem;
    }

    .home-content h3 {
        font-size: 2.1rem;
        width: 90%;
    }

    .home-content__left {
        width: calc(100% - (550px + 80px));
    }

    .home-content__right {
        width: 700px;
        right: 10px;
    }

}

@media only screen and (max-width:1300px) {
    .home-content {
        padding-top: 10rem;
    }

    .home-content h1 {
        font-size: 5.6rem;
    }

    .home-content h3 {
        font-size: 1.9rem;
    }

    .home-content__left {
        width: calc(100% - (530px + 90px));
    }

    .home-content__right {
        width: 650px;
        right: 10px;
    }

}

@media only screen and (max-width:1200px) {
    .s-home {
        min-height: 1280px;
        display: block;
        overflow: hidden;
        
    }

    .home-content {
        display: block;
    }

    .home-content br {
        display: none;
    }

    .home-content h1 {
        font-size: 4.2rem;
        padding-top: 0;
        text-align: center;
    }

    .home-content h1::before {
        display: none;
    }

    .home-content h3 {
        font-size: 2rem;
        width: 100%;
        text-align: center;
        max-width: 700px;

    }

    .home-content__main {
        max-width: 600px;
        padding-bottom: 44rem;
        text-align: center;
    }

    .home-content__left {
        width: 100%;
    }

    .home-content__right {
        top: 100%;
        right: auto;
        left: 50%;
        bottom: 0;
        -webkit-transform: translate3d(-50%, 0, 0);
        -ms-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
        margin-top: -40rem;
    }

    .home-content__right img {
        margin-top: 0;
    }

}

@media only screen and (max-width:900px) {
    .s-home {
        min-height: 1400px;;
    }

    .home-content {
        padding-top: 10rem;
    }

    .home-content h1 {
        font-size: 4.2rem;
    }

    .home-content h3 {
        font-size: 2.1rem;

        text-align: center;
        max-width: 630px;
    }

    .home-content__main {
        max-width: 500px;
    }

    .home-content__social {
        right: calc(30px + (5.6rem/2));
    }

    .home-scroll {
        right: 3rem;
    }

}

@media only screen and (max-width:800px) {
    .s-home {
        min-height: 1400px;
    }

    .home-content h1 {
        font-size: 4rem;
    }

    .home-content h3 {
        font-size: 2.1rem;
        text-align: center;
        max-width: 630px;
    }

    .home-content__right {
        width: 760px;
    }

}

@media only screen and (max-width:700px) {
    .s-home {
        min-height: 16vh;
    }

    .home-content h1 {
        font-size: 3.6rem;
    }

    .home-content h3 {
        font-size: 1.5rem;
    }

    .home-content__social,
    .home-scroll {
        display: none;
    }

}

@media only screen and (max-width:600px) {
    .home-content h1 {
        font-size: 5.2rem;
    }

    .home-content h3 {
        font-size: 1.5rem;
    }

    .home-content__main {
        padding-bottom: 40rem;
        padding-left: 35px;
        padding-right: 35px;
    }

    .home-content__right {
        width: 600px;
        margin-top: -43rem;
    }

    .home-content__btn-wrap {
        margin-top: 1rem;
    }

}

@media only screen and (max-width:500px) {
    .home-content {
        padding-top: 10rem;
    }

    .home-content h1 {
        font-size: 4.1rem;
    }

    .home-content__main {
        padding-bottom: 32rem;
    }

    .home-content__right {
        width: 400px;
        margin-top: -35rem;
    }

}

@media only screen and (max-width:400px) {
    .home-content {
        padding-top: 10rem;
    }

    .home-content h1 {
        font-size: 4.2rem;
        letter-spacing: normal;
        line-height: normal;
    }

    .home-content__main {
        padding-bottom: 28rem;
        padding-left: 25px;
        padding-right: 25px;
    }

    .home-content__right {
        width: 400px;
        margin-top: -30rem;
    }

    .home-content__btn-wrap .home-content__btn {
        width: 90%;
    }

}

@media only screen and (max-width:350px) {
    .home-content__right {
        width: 280px;
    }

}


@media only screen and (max-width:1200px) {
    p.lead {
        font-size: 2.6rem;
    }

}

@media only screen and (max-width:800px) {
    p.lead {
        font-size: 2.4rem;
    }

}


@media (max-width: 900px) {
    .content {
        flex-direction: column;
        align-items: center;
    }

    .side,
    .center {
        width: 96%;
        min-width: unset;
    }

    .side {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 32px;
    }

    .feature {
        margin: 24px;
        min-width: 200px;
    }

    .center {
        justify-content: center;
        align-items: center;
    }

}





/* ------------------------------------------------------------------- 
 * responsive:
 * reusable and common theme styles
 * ------------------------------------------------------------------- */
@media only screen and (max-width:1000px) {
    .display-1 {
        font-size: 5.2rem;
    }

    .section-header {
        max-width: 680px;
    }

}

@media only screen and (max-width:800px) {
    .display-1 {
        font-size: 4.4rem;
    }


    .item-title {
        font-size: 2.4rem;
    }

    .section-header {
        max-width: 580px;
    }

}

@media only screen and (max-width:600px) {
    .section-header.has-bottom-sep::before {
        width: 240px;
    }

}

@media only screen and (max-width:500px) {
    .display-1 {
        font-size: 3.2rem;
    }


}

@media only screen and (max-width:400px) {
    .mobile-top {
        padding-top: 10px;
    }
}

@media only screen and (max-width:400px) {
    .display-1 {
        font-size: 3.4rem;
    }

    .display-2 {
        font-size: 3.6rem;
    }

    .section-header.has-bottom-sep::before {
        width: 200px;
    }

}

@media only screen and (max-width:350px) {
    .display-1 {
        font-size: 3.1rem;
    }

    .display-2 {
        font-size: 3.4rem;
    }

}