/*===== GOOGLE FONTS =====*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

/*===== VARIABLES CSS =====*/

:root {
    --header-height: 3rem;
    /*========== Colors ==========*/
    --surface-color: #fff;
    --curve: 40;
    --bg-pink: #373132;
    --black-color: #6a515e;
    --first-color: #e00109;
    --first-color-alt: #67758a;
    --title-color: #e00109;
    --text-color: #0074b4;
    --text-color-light: #A6A6A6;
    --body-color: #FBFEFD;
    --container-color: #fdfdfd;
    /*========== Font and typography ==========*/
    --body-font: 'Poppins', sans-serif;
    --biggest-font-size: 2.25rem;
    --h1-font-size: 1rem;
    --h2-font-size: 1rem;
    --h3-font-size: 1rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;
    /*========== Font weight ==========*/
    --font-medium: 500;
    --font-semi-bold: 600;
    /*========== Margenes ==========*/
    --mb-1: .5rem;
    --mb-2: 1rem;
    --mb-3: 1.5rem;
    --mb-4: 2rem;
    --mb-5: 2.5rem;
    --mb-6: 3rem;
    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}


/*========== BASE ==========*/

html {
    overflow-x: hidden !important;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-family: 'Raleway', sans-serif !important;
}

body {
    border: 0;
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif !important;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

body.dark-theme {
    --title-color: #fff;
    --body-color: #1D2521;
    --container-color: #232c28;
    --bg-pink: #ffffff;
    --text-color: rgb(199, 209, 204, .1);
}

.body-inner {
    position: relative;
    overflow: hidden;
}

.btn-primary {
    border: 2px solid #e00109 !important;
    border-radius: 20px !important;
    padding: 0px 20px;
    font-weight: bold !important;
    text-transform: uppercase !important;
    color: #fff;
    transition: 350ms;
    font-size: 14px;
    -webkit-border-radius: 20px !important;
    -moz-border-radius: 20px !important;
    -ms-border-radius: 20px !important;
    -o-border-radius: 20px !important;
}

@media (max-width: 767px) {
    .btn-primary {
        font-size: 13px;
        margin: 10px 0;
    }
}

.btn-white.btn-primary {
    background: #fff;
    color: #e00109;
}

.btn-primary {
    background: #e00109;
}

.btn-primary:hover,
.btn-dark:hover,
.btn-white.btn-primary:hover {
    background: transparent;
    color: #fff;
}

.btn-primary:hover:active,
.btn-primary:hover:focus,
.btn-dark:hover:active,
.btn-dark:hover:focus,
.btn-white.btn-primary:hover:active,
.btn-white.btn-primary:hover:focus {
    color: #fff;
    background-color: transparent !important;
}

.general-btn {
    margin-top: 50px;
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
}

h1,
h2,
h3,
p,
ul {
    margin: 0;
}

h1 {
    font-size: 2rem;
}

ul {
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.scroll-header {
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
}


/*========= SCROOL TOP ==========*/

.scrolltop {
    position: fixed;
    right: 2rem;
    bottom: -20%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .3rem;
    background: #e00109;
    border-radius: .4rem;
    z-index: var(--z-tooltip);
    transition: .4s;
    visibility: hidden;
    box-shadow: 0 1px 4px #ccc;
}

.scrolltop:hover {
    transform: translateY(-10px);
    text-decoration: none;
}

.scrolltop__icon {
    font-size: 2rem;
    color: white
}

.show-scroll {
    visibility: visible;
    bottom: 1rem;
}


/*========= END SCROOL TOP ==========*/


/* ======== Whatsapp =========*/

.action a {
    color: #000;
    text-decoration: none;
}

.action {
    position: fixed;
    bottom: 65px;
    right: 50px;
    width: 80px;
    height: 80px;
    background: rgb(8, 245, 146);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
    z-index: 9999999;
}

.action span img {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* ALTERE AQUI A COR DO ÍCONE DO BOTÃO */
    /*font-size: 60px;*/
    transition: 0.3s ease-in-out;
}

.action.active span {
    transform: rotate(720deg);
}

.action ul {
    font-family: 'Raleway', sans-serif !important;
    font-size: 1em;
    position: absolute;
    margin-bottom: 20px;
    right: 0px;
    background: #fff;
    min-width: 200px;
    padding: 10px;
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
}

.action.active ul {
    font-family: 'Raleway', sans-serif !important;
    bottom: 65px;
    opacity: 1;
    visibility: visible;
    transition: 0.3s;
}

.action.active ul li {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 0;
    transition: 0.3s;
    font-size: 1em;
}

.action ul li:hover {
    font-weight: 600;
}

.action ul li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.action ul li img {
    margin-right: 10px;
    transform: scale(0.8em);
}

.action ul li:hover img {
    opacity: 0.8;
}

.msg {
    position: fixed;
    bottom: 75px;
    right: 110px;
    width: 200px;
    height: 55px;
    background: rgb(8, 245, 146);
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
    visibility: hidden;
    z-index: 999999;
}

.msg span {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #6a515e;
    font-size: 1em;
    transition: 0.5s ease-in-out;
    font-weight: bold;
}


/* STYLE DO FRAME DO BLIP CHAT */

#blip-chat-open-iframe {
    display: none !important;
}

#blip-chat-container {
    height: 100% !important;
    bottom: 0 !important;
    right: 0 !important;
}

#blip-chat-iframe {
    position: absolute !important;
    top: 0 !important;
    right: -400px !important;
    bottom: 0 !important;
    height: 100% !important;
    max-height: 100% !important;
    transform: none !important;
    opacity: 1 !important;
    box-shadow: none !important;
    transition: 0.5s !important;
}

#blip-chat-iframe.blip-chat-iframe-opened {
    right: 0 !important;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.2) !important;
}


/* ======== End Whatsapp =========*/


/*========= INDICATIONS ===========*/

.indication {
    width: 100%;
    height: 6.4vh;
    top: 10rem;
    padding-left: 7.5rem;
    font-size: 1rem;
    position: absolute;
    display: flex;
    padding-top: 1rem;
    z-index: 100;
}

.indication a {
    margin: 0px 5px;
    list-style: none;
    color: var(--bg-pink);
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    list-style: none;
}

.indication a:hover {
    list-style: none;
    color: #e00109;
}

.indication p {
    color: var(--bg-pink);
    font-weight: 600;
    border-bottom: 2px solid #e00109;
    text-transform: uppercase;
}

@media screen and (max-width:900px) {
    .indication {
        width: 100%;
        padding: 0;
        padding-left: 1rem;
        margin-top: -1rem;
        align-items: center;
    }
    .indication a {
        font-size: .9rem;
        margin: 0.3rem;
    }
    .indication p {
        font-size: .9rem;
    }
}


/*======== END INDICATIONS =========*/


/*=========== APRESENT PRODUCT ========*/

.container1 {
    margin-top: 3rem;
    margin-bottom: 3rem;
    display: flex;
    max-width: 100%;
    width: 100%;
    height: 40vh;
    /*background-color: var(--body-color);*/
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.container2 {
    width: 60%;
    height: 40vh;
    background-color: transparent;
    display: flex;
    align-items: center;
}

.title {
    display: flex;
    width: 100%;
    text-align: center;
    justify-content: center;
}

.title h1 {
    font-size: 3rem;
    color: var(--title-color);
}

.container3 {
    width: 40%;
    height: 40vh;
    background-color: transparent;
    display: flex;
    align-items: center;
}

.card {
    width: 50%;
    text-align: center;
    justify-content: center;
}

@media screen and (max-width:900px) {
    .container1 {
        height: 10vh;
        display: flex;
        margin-bottom: 3rem;
    }
    .container2 {
        height: 10vh;
        display: flex;
    }
    .title h1 {
        font-size: 1.4rem;
    }
    .container3 {
        height: 10vh;
        display: flex;
    }
    .card {
        width: 70%;
    }
}


/*=========== APRESENT PRODUCT ========*/

.container-video {
    margin-bottom: 5rem;
    width: 100%;
    height: 70vh;
    display: flex;
    justify-content: center;
}

.container-video1 {
    display: flex;
    width: 70%;
    justify-content: center;
}

@media screen and (max-width:900px) {
    .container-video {
        margin-bottom: 3rem;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        padding: 0 2rem;
    }
    .container-video1 {
        display: flex;
        width: 100%;
        justify-content: center;
    }
}


/*=========== APRESENT PRODUCT ========*/

.container-center {
    background-color: var(--bg-pink);
    margin-bottom: 5rem;
    width: 100%;
    height: 100%;
    display: flex;
    padding: 0 5rem;
    justify-content: center;
    box-shadow: 0px 0px 5px rgb(255, 255, 255, .2);
}

.container-center1 {
    width: 100%;
    justify-content: center;
    display: flex;
}

.container-title {
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    padding: 5rem 0 2rem 0;
}

.container-title h2 {
    font-size: 2rem;
    color: var(--surface-color);
    font-weight: bold;
}

.container-descrition {
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    padding: 1rem;
    padding-bottom: 5rem;
}

.container-descrition p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--surface-color);
}

@media screen and (max-width:900px) {
    .container-center {
        width: 100%;
        height: 100%;
        display: flex;
        padding: 0 1rem;
        justify-content: center;
        box-shadow: 0px 0px 5px rgb(255, 255, 255, .2);
    }
    .container-center1 {
        width: 100%;
        padding: 0 1rem;
        justify-content: center;
        display: flex;
    }
    .container-title {
        width: 100%;
        padding: 1rem;
    }
    .container-title h2 {
        font-size: 1.3rem;
        color: var(--surface-color);
        font-weight: bold;
    }
    .container-descrition {
        width: 100;
        display: flex;
        text-align: center;
        justify-content: center;
        padding-bottom: 2rem;
    }
    .container-descrition p {
        font-size: 1rem;
        font-weight: 600;
        color: var(--surface-color);
    }
}


/*================================*/

.container-comparativo {
    margin-bottom: 30rem;
    width: 100%;
    padding: 0 15rem;
    display: flex;
    justify-content: center;
}

.container-comparativo1 {
    width: 100%;
    height: 120vh;
    display: flex;
    justify-content: center;
    box-shadow: 1px 1px 5px 1px rgb(0, 0, 0, .1);
    padding: .5rem;
}

.container-comparativo2 {
    width: 100%;
    background-color: #fff;
}

.container-comparativo p {
    font-size: 1rem;
}

.container-tabela {
    width: 40%;
}

.container-topo {
    justify-content: center;
    text-align: center;
}

.coluna1 {
    background-color: #e8eaeb;
}

.coluna1 p,
.coluna2 p {
    margin-left: 1rem;
}

.css-1 {
    font-size: 1rem;
    color: #2c8005;
    display: flex;
    font-weight: bold;
    justify-content: center;
}

.css-2 {
    font-size: 1rem;
    display: flex;
    justify-content: center;
}

.css-3 {
    font-size: 2rem;
    text-align: center;
    justify-content: center;
}

.css-7 p {
    font-size: 1.2rem;
    margin-left: 1rem;
}

@media screen and (max-width:900px) {
    .container-comparativo {
        margin-bottom: 25rem;
        width: 100%;
        padding: 0 2rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .container-comparativo1,
    .container-comparativo2 {
        width: 100%;
    }
    .container-comparativo p {
        font-size: .85rem;
    }
    .css-1,
    .css-2 {
        font-size: 1rem;
    }
    .coluna1 {
        background-color: #e8eaeb;
        padding: .8rem 0;
    }
    .coluna2 {
        padding: .8rem 0;
    }
}


/*========== CARACT ==========*/

.bd-grid {
    display: grid;
    gap: 0.5rem;
    width: 100%;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.5);
    border-radius: 25px;
}

.services {
    padding: 0 2rem;
    width: 100%;
    background-color: transparent;
    margin-top: -25rem;
    justify-content: center;
    position: relative;
    align-items: center;
    text-align: center;
    display: flex;
}

.services .fas {
    margin-top: 8px;
    font-size: 3rem;
    color: var(--bg-pink);
}

.section-title {
    font-size: 2.3rem;
    width: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin-top: -3rem;
    color: var(--title-color);
}

.title h2 {
    left: 1.4rem;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    width: 98%;
}

.services__container {
    width: 100%;
    padding: 70px;
    row-gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    align-items: center;
    text-align: center;
    justify-content: center;
}

.services__content {
    width: 98%;
    height: 10rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0px 0px 10px .1px rgba(221, 145, 145, 0.8);
}

.services__img {
    margin-right: 200px;
    width: 64px;
    height: 64px;
    fill: var(--first-color);
}

.services__title {
    margin-top: 15px;
    text-align: center;
    font-size: var(--h3-font-size);
    color: var(--title-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: bold;
}

.services__description {
    padding: 0 1rem;
    color: var(--bg-pink);
    font-size: 1rem;
}

@media screen and (max-width:767px) {
    .bd-grid {
        display: grid;
        gap: 0.5rem;
        width: 100%;
    }
    .services {
        width: 100%;
        border-radius: 3px;
        margin-top: -15rem;
        padding: 0 1rem;
    }
    .title {
        width: 100%;
        color: var(--title-color);
    }
    .title h2 {
        display: flex;
        justify-content: center;
        text-align: center;
        align-items: center;
        width: 100%;
        font-size: 1.5rem;
        color: var(--title-color);
        margin-top: 0rem;
    }
    .services__container {
        width: 100%;
        padding: 30px;
        margin-top: -4rem;
        justify-content: center;
        align-items: center;
        row-gap: 2rem;
        grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    }
    .services__title {
        font-size: 1.2rem;
    }
    .services__description {
        font-size: 1rem;
    }
}


/*========== BUTTONS ==========*/

.button {
    font-weight: 600;
    font-size: 16px;
    margin-left: 20px;
    display: inline-block;
    background-color: #e00109;
    color: #FFF;
    padding: .75rem 1rem;
    border-radius: 2rem;
    transition: .3s;
}

.button:hover {
    color: #0074b4;
    text-decoration: none;
    background-color: transparent;
    border: 2px solid #e00109;
}