@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    font-family: 'Poppins';
}

:root {
    --font-titles: 48px;
    --font-sub-titles: 18px;
    --text-color-1: #3A3839;
    --text-color-2: #2575FC;
    --text-color-3: #FFFFFF;
    --text-color-4: #393939;
    --bg-color-1: #F4F4F4;
    --bg-color-2: #2575FC;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #F5F9FC;
    margin: 0px;
    padding: 0px;
    overscroll-behavior-y: none;
    transition-duration: 300ms;
    transition-property: color, background-color;
    transition-timing-function: ease-out;
}


.animation {
    animation: pulsar 2.5s infinite;
}

@keyframes pulsar {
    0% {
        transform: scale();
    }

    70% {
        transform: scale();
        box-shadow: 0 0 0 10px rgba(69, 152, 27, 0);
    }

    100% {
        transform: scale();
        box-shadow: 0 0 0 0 rgba(69, 152, 27, 0);
    }
}


.animation_mude {
    animation: pulsar_mude 1.5s infinite;
}

@keyframes pulsar_mude {
    0% {
        transform: scale(1);
        /* box-shadow: 0 0 0 0 rgba(69, 152, 27, 0); */
    }

    50% {
        transform: scale(1.2);
        /* box-shadow: 0 0 0 10px rgba(69, 152, 27, 0.5); */
    }

    100% {
        transform: scale(1);
        /* box-shadow: 0 0 0 0 rgba(69, 152, 27, 0); */
    }
}

.area_whatsapp {
    display: flex;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1;
}

.area_whatsapp a {
    height: 68px;
}

.area_whatsapp img {
    width: 100%;
    max-width: 58px;
    height: 58px;
    transition: background, padding 400ms ease-in-out;
    box-shadow: 0 0 0 0 #03BF65;
    border-radius: 200px;
}

.area_whatsapp img:hover {
    animation: none;

}

/** COOKIES **/
#paragrafoInfo {
    background: var(--light);
    color: var(--dark);
    overflow-y: scroll;
    /* height: 200px; */
    display: none;
    scroll-behavior: smooth;
    transition: all 0.6s ease-in-out;
    /* margin: 20px; */
}

.my-1 {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 15px !important;
    margin: 10px !important;
}

.my-2 {
    font-size: 10px;
    font-weight: 400;
    /* letter-spacing: px; */
    margin-top: 15px !important;
    margin: 10px !important;
}

#cookie-message {
    position: fixed;
    bottom: 60px;
    margin: 3%;
    margin-right: 10%;
    z-index: 1000;
    transition: all 0.6s ease-in;
    width: 90vw;
    max-width: 550px;
    font-size: .8em;
    /* transform: translateX(-50%); */
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(6px) saturate(180%);
    border: 1px solid rgb(223 223 223 / 80%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;


}

#cookie-message>div.p-3.pt-1>h4 {
    font-size: 1.2em;
}

#cookie-message>div.p-3.pt-1>div.row.mt-3 {
    border-top: 1px solid #888;
}

#aceitarCookies {
    font-size: 1em;
    background-color: #4CAF50;
    /* Cor de fundo do botão (substitua pelo valor desejado) */
    color: #ffffff;
    /* Cor do texto do botão (substitua pelo valor desejado) */
    border: none;
    padding: .8em 1.2em;
    border-radius: 3em;
    box-shadow: 0.125em 0.313em 0.438em 0 rgba(0, 0, 0, 0.16);
    transition: transform .2s cubic-bezier(.02, .01, .47, 1), box-shadow .4s cubic-bezier(.02, .01, .47, 1), filter .2s cubic-bezier(.02, .01, .47, 1);
}

#aceitarCookies:hover {
    background-color: #45a049;
    /* Cor de fundo do botão ao passar o mouse (substitua pelo valor desejado) */
}


.recusarCookies a,
#aceitarCookies {
    cursor: pointer;
}

.recusarCookies a,
.recusarCookies p,
.recusarCookies i {
    color: #333333 !important;
}

#infoCookies,
#infoCookies i,
#infoCookies a {
    color: #2575FC !important;
}

.recusarCookies a:hover,
.recusarCookies i:hover,
#aceitarCookies:hover {
    color: #333333;
}

.button-primary,
.button-shadow {
    font-weight: 600;
    padding: .8em 1.2em;
    border: none;
    border-radius: 3em;
    background: var(--cta);
    color: var(--dark);
    box-shadow: 0.125em 0.313em 0.438em 0 rgba(0, 0, 0, 0.16);
    transition: transform .2s cubic-bezier(.02, .01, .47, 1), box-shadow .4s cubic-bezier(.02, .01, .47, 1), filter .2s cubic-bezier(.02, .01, .47, 1);
}


#cookie-message .aviso {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 25px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.recusarCookies,
#aceitarCookies {
    margin: 25px;
    /* Remover margens padrão */
}


.recusarCookies a,
.recusarCookies i {
    color: #333333 !important;
}

/** //COOKIES **/
.area_cookies {
    /* height: 100px; */
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.2);
    padding: 15px;
    text-align: center;
    z-index: 999;
    display: flex;
    justify-content: space-between;


}

.area_cookies p {
    width: 100%;
    /* height: 130px; */
    max-width: 600px;
    align-content: center;
}

#cookie-content {
    flex: 1;
}

#accept-cookies {

    height: 45px;
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    margin-left: 20px;
    margin-right: 90px;
}


.color-1 h2 {
    transition-duration: 400ms;
    transition-property: color;
    transition-timing-function: ease-out;
}

.color-2 p {
    transition-duration: 400ms;
    transition-property: color;
    transition-timing-function: ease-out;
}

.color-texts {
    transition-duration: 400ms;
    transition-property: color;
    transition-timing-function: ease-out;
}

a {
    max-width: max-content;
    text-decoration: none;
}

h1,
h2,
p {
    margin: 0px;
}

[data-animation] {
    opacity: 0;
    transition: all 200ms ease-in;
}

[data-delay-1] {
    transition-delay: 200ms;
}

[data-delay-2] {
    transition-delay: 300ms;
}

[data-delay-3] {
    transition-delay: 400ms;
}

[data-delay-4] {
    transition-delay: 500ms;
}

[data-animation="down"] {
    transform: translate3d(0, 20px, 0);
}

[data-animation="left"] {
    transform: translate3d(-20px, 0, 0);
}

[data-animation="right"] {
    transform: translate3d(20px, 0, 0);
}

[data-animation].animate {
    opacity: 1;
    transform: translate3d(0px, 0px, 0px);
}


/*Menu*/

header {
    width: 100%;
    position: relative;
    z-index: 1;
}

.menu_open {
    display: none;
}

.close {
    display: none;
}

.menu_mobile {
    display: none;
}

.container_menu {
    display: flex;
    justify-content: center;
    width: 100%;
    position: fixed;
    background: rgba(255, 255, 255, 0.5);
    /*rgba(201, 234, 254, 0.8); */
    backdrop-filter: blur(10px);
}

.container_menu_int {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1080px;
}

.area_menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 0px 10px 0px;
}

.area_menu a {
    display: flex;
}

nav {
    width: 100%;
    max-width: max-content;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0px;
    margin: 0px;
    width: 100%;
    max-width: max-content;
}

nav ul li {
    list-style: none;
}

nav ul li a {
    color: #222;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
}

.btn_menu {
    border-radius: 8px;
    border: 0.5px solid #F4F4F4;
    background: #2575FC;
    box-shadow: 0px 0px 25px -8px rgba(44, 124, 236, 1);
    padding: 8px 15px;
    transition: all ease 200ms;
    transform: scale3d(1, 1, 1);
}

.btn_menu h2 {
    color: #FEFEFE;
    font-size: var(--font-sub-titles);
    font-weight: 600;
    letter-spacing: 0.18px;
    text-rendering: optimizeLegibility;
}

.btn_menu:hover {
    transform: scale3d(1.06, 1.06, 1.06);
}

.logo_mobile {
    width: 100%;
    max-width: 100px;
    max-height: 40px;
}

.logo_lp {
    max-width: 150px;
    width: 100%;
    height: auto;
    padding-bottom: 15px;
}

.btn_menu_teste_gratis {
    border-radius: 8px;
    border: 0.5px solid #F4F4F4;
    background: #03BF65;
    box-shadow: 0px 0px 25px -8px rgba(44, 124, 236, 1);
    padding: 8px 15px;
    transition: all ease 200ms;
    transform: scale3d(1, 1, 1);
}

.btn_menu_teste_gratis h2 {
    color: #FEFEFE;
    font-size: var(--font-sub-titles);
    font-weight: 600;
    letter-spacing: 0.18px;
    text-rendering: optimizeLegibility;
}

.btn_menu_teste_gratis:hover {
    transform: scale3d(1.06, 1.06, 1.06);
}

.btn_menu_teste_gratis_m {
    border-radius: 8px;
    border: 0.5px solid #969696;
    background: #03BF65;
    box-shadow: 0px 0px 25px -8px rgb(140, 255, 201);
    padding: 6px 15px;
    transition: all ease 200ms;
    transform: scale3d(1, 1, 1);
}

.btn_menu_teste_gratis_m h2 {
    color: #FEFEFE;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.28px;
    text-rendering: optimizeLegibility;
}

.btn_menu_teste_gratis_m:hover {
    transform: scale3d(1.06, 1.06, 1.06);
}

/*Home*/


#home_lp {
    margin: 10px;
    /* height: 600px; */
}



#player-container {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    width: 100%;
    max-width: 360px;
    aspect-ratio: 9 / 16;
    padding: 5px;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto;
    /* Remova esses dois abaixo para evitar conflito */
    /* display: flex;
    justify-content: center;
    align-items: center; */
}

#video-placeholder {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    width: 100%;
    max-width: 360px;
    aspect-ratio: 9 / 16;
    padding: 5px;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto;
    /* Remova esses dois abaixo para evitar conflito */
    /* display: flex;
    justify-content: center;
    align-items: center; */
}

#player {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

#playButtonPre {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 10;
}

#playIconPre {
    width: 80px;
    animation: pulse 1.8s ease-in-out infinite;
}

#playButton {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 10;
}

#playIcon {
    width: 80px;
    animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

.video-lazy {
    position: relative;
    width: 100%;
    max-width: 360px;
    aspect-ratio: 9 / 16;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.video-lazy img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.btn-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulsePlay 1.8s infinite ease-in-out;
}

@keyframes pulsePlay {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}


#player-container {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    width: 100%;
    max-width: 360px;
    aspect-ratio: 9 / 16;
    padding: 5px;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto;
}

#playButton {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 10;
}

#playIcon {
    width: 80px;
    animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}



/* Modo paisagem para desktop */
/* @media screen and (min-width: 769px) {
    #player-container {
        max-width: 560px;
        aspect-ratio: 16 / 9;
    }
} */

#muteButton {
    position: absolute;
    /* background: black; */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* color: #FFFFFF; */
    font-size: 20px;
    font-weight: 400;
    padding: 10px;
    /* border: 3px solid #000; */
    /* width: 260px;
    height: 90px; */

}

#muteIcon {
    width: 80px;
    /* margin-right: 10px;
    padding-right: 10px; */
}



@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}



/* ===== Segunda Dobra - Social Proof ===== */
#social-proof {
    /* background-color: #f7fdfc; */
    padding: 60px 20px;
    text-align: center;
}

.container_social_proof {
    max-width: 1080px;
    margin: 0 auto;
}

#social-proof h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

#social-proof p {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

/* Cards com números */
.cards_metrics {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.metric_card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 20px;
    width: 100%;
    max-width: 220px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}



.metric_card h3 {
    font-size: 32px;
    color: #1e7eeb;
    margin: 0;
}

.metric_card p {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

@media screen and (max-width: 768px) {
    .metric_card {
        width: 90% !important;
        max-width: 320px;
        padding: 12px 16px;
    }

    .metric_card h3 {
        font-size: 22px;
    }

    .metric_card p {
        font-size: 13px;
    }
}

/* Carrossel de logos */
.client_logos_carousel {
    overflow-x: auto;
    display: flex;
    gap: 10px;
    padding: 00px 0 10px;
    scroll-behavior: smooth;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

.client_logos_carousel img {
    height: 40px;
    object-fit: contain;
    flex: 0 0 auto;

    transition: filter 0.3s ease;
}

.client_logos_carousel img:hover {
    transform: scale(1.05);
}

/* Responsividade */
@media (max-width: 768px) {
    .cards_metrics {
        flex-direction: column;
        align-items: center;
    }

    .metric_card {
        width: 100%;
        max-width: 300px;
    }

    #social-proof h2 {
        font-size: 22px;
    }

    #social-proof p {
        font-size: 15px;
    }
}

/*logos empresas*/
.logo_carousel_wrapper {
    overflow: hidden;
    white-space: nowrap;
    background: transparent;
    position: relative;
}

.logo_carousel_track {
    display: inline-flex;
    gap: 40px;
    animation: scrollInfinite 60s linear infinite;
}

.logo_carousel_track img {
    height: 80px;
    width: 80px;
    flex-shrink: 0;
    object-fit: contain;
    opacity: 0.9;
}

.logo_carousel_track img:hover {
    opacity: 1;
}

@keyframes scrollInfinite {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}



.container_space {
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 75px;

}

.container_home {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 10px 0px 00px 0px;
    /* max-height: 480px; */
}

.container_home_lp {
    border-radius: 10px;
    background: linear-gradient(135deg, #bde5ff 30%, #0e9bf8 100%);
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 30px 0px;
    /* margin-bottom: 60px; */
}


.container_home_int {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0px;
    width: 100%;
    max-width: 1080px;

}

.hero-title {
    font-size: 2.7rem;
    font-weight: bold;
    color: #111;
    margin-bottom: 16px;
}


.container_pp {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    /* box-shadow: 0 0 10px rgba(70, 69, 69, 0.1); */
    margin-top: 50px;
    margin-bottom: 50px;
}

.container_pp p {
    color: #353434;

}

.area_home {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.area_texts_Pp {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    width: 100%;
    padding-left: 20px;
    height: 200px;
    /* max-width: 440px; */
}

.area_texts_home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    width: 100%;
    padding: 30px;
    max-width: 440px;
}

.title_home h2 {
    color: #FFFFFF;
    font-size: 48px;
    font-weight: 800;
    line-height: 120%;
    letter-spacing: 0.42px;
}

.title_home h2 b {
    color: #000;
    font-size: 48px;
    font-weight: 800;
    line-height: 120%;
    letter-spacing: 0.42px;
}

.sub_title_home p {
    color: #FFFFFF;
    font-size: calc(var(--font-sub-titles) * 1.1);
    font-weight: 600;
    line-height: 130%;
    letter-spacing: 0.15px;
}


.area_texts_home_lp {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    width: 100%;
    padding-top: 20px;
    padding-left: 20px;
    max-width: 420px;
}

.title_home_lp h2 {
    color: #000000;
    font-size: 50px;
    font-weight: 630;
    line-height: 120%;
    letter-spacing: 0.42px;
}

.title_home_lp h2 b {
    color: #000;
    font-size: 32px;
    font-weight: 800;
    line-height: 120%;
    letter-spacing: 0.42px;
}

.sub_title_home_lp p {
    color: #000000;
    font-size: 22px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.15px;
    padding-bottom: 15px;
}

.sub_title_home_mini_lp {
    color: #252525 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 130% !important;
    letter-spacing: 0.15px !important;
    text-align: left;
    display: block !important;
}

.home_bg {
    max-width: 150px;
    width: 100%;
    height: auto;
}

.img_funcionalidade {
    max-width: 60px;
    width: 100%;
    height: auto;
}

/* Form Lead */

.area_form {
    /* background-color: #ffffff; */
    width: 100%;
    /* margin: 50px auto; */
    padding: 20px;
    border-radius: 10px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    max-width: 400px;
}

.title_form {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 18px;
    color: #ffffff
}

.title_form b {
    color: #000
}



form {
    display: flex;
    flex-direction: column;
}

input {
    width: calc(100% - 20px);
    /* Largura total do campo de entrada, considerando o padding */
    padding: 10px;
    /* Espaçamento interno */
    margin-bottom: 15px;
    /* Espaçamento inferior entre os campos de entrada */
    border: 1px solid #cccccc;
    /* Borda padrão dos campos de entrada */
    border-radius: 30px;
    /* Borda arredondada para os campos de entrada */
}

input:focus {
    border: 2px solid #2575FC;
    /* Cor da borda quando o campo está em foco */
    outline: none;
    /* Remove a borda padrão do navegador ao focar o elemento */
}

input[type="submit"] {
    width: 100%;
    background-color: #54cf58;
    color: #ffffff;
    border: 0.5px solid #ffffff;
    cursor: pointer;
    border-radius: 30px;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

/* .home_bg {
    max-width: max-content;
    width: 100%;
} */



#email_home {
    display: flex;
    gap: 20px;
    border-radius: 10px;
    background: linear-gradient(98deg, rgba(86, 172, 222, 0.30) -75.86%, rgba(71, 171, 228, 0.00) 219.5%);
    padding: 10px;
    max-width: 600px;
}


#email_home_lp {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 10px;
    background: linear-gradient(98deg, rgba(86, 172, 222, 0.30) -75.86%, rgba(71, 171, 228, 0.00) 219.5%);
    padding: 10px;
    max-width: 400px;
}


.email,
.nome,
.whatsapp {
    border-radius: 5px;
    border: 0.661px solid #F4F4F4;
    background: #FFF;
    box-shadow: 0px 13.21117px 26.42234px 0px rgba(0, 0, 0, 0.06);
    padding: 10px 10px;
    outline: none;
    width: 100%;
    max-width: 380px;
    color: #9a9a9a;
    font-size: var(--font-sub-titles);
    font-weight: 300;
    letter-spacing: 0.18px;
}

.email::placeholder,
.nome::placeholder,
.whatsapp::placeholder {
    color: #9a9a9a;
    font-size: var(--font-sub-titles);
    font-weight: 300;
    letter-spacing: 0.18px;
}

.enviar {
    border-radius: 8px;
    border: 0.661px solid #F4F4F4;
    background: #7FD214;
    box-shadow: 0px 13.21117px 26.42234px 0px rgba(0, 0, 0, 0.06);
    padding: 10px 20px;
    color: #FEFEFE;
    font-size: var(--font-sub-titles);
    font-weight: 600;
    letter-spacing: 0.18px;
    cursor: pointer;
}

.container_icones {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: stretch;
}

.container_icones_int {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1080px;
}

.area_icones {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    max-width: 1080px;
    padding: 40px 0;
}

.icones_home {
    border-radius: 6px;
    background: #FFF;
    box-shadow: 0px 13.21117px 26.42234px 0px rgba(0, 0, 0, 0.06);
    width: 210px;
    transition: all ease 100ms;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    height: 100%;
    /* Ajuste para ocupar 100% da altura do contêiner pai */
}

.icones_home:hover {
    background: rgba(201, 234, 254, 0.2);
}

.icones_home:hover>.icones_home_int svg path {
    fill: #FFFFFF;
}

.icones_home:hover>.icones_home_int .title_icones_home h2 {
    color: #FFFFFF;
}

.svg_btn {
    color: #FFFFFF;
}

.icones_home_int {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 100%;
}

.title_icones_home h2 {
    color: #42454A;
    font-size: 14px;
    font-weight: 500;
    line-height: 130%;
}

/*Controle*/
.container_controle {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0px 0px 0px 0px;
    box-sizing: border-box;
}

.container_espaco {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.container_controle_int {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: rgba(52, 11, 13, 0.03); */
    width: 100%;
    margin-bottom: 20px;
    padding: 0px 0px 40px 0px;
}

.area_controle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    width: 100%;
    height: 100%;
    max-width: 1080px;
}

.area_texts_controle {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 480px;
}

@keyframes texts_animations {
    0% {
        translate: -40vh 0;
        opacity: 0;
    }

    100% {
        translate: 0 0;
        opacity: 1;
    }
}

@keyframes img_animations {
    0% {
        translate: 0 80vh;
        opacity: 0;
    }

    100% {
        translate: 0 0;
        opacity: 1;
    }
}

.title_controle h2 {
    color: var(--text-color-1);
    font-size: 34px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0.42px;
}

.title_controle h5 {
    color: #007BFF;
}


/*
.animation_texts {
    animation: texts_animations 1ms ease-in-out;
    animation-timeline: view();
    animation-range: cover 0% cover 30%;
}*/

.title_controle h2 b {
    color: #2575FC;
    font-weight: 700;
}

.sub_title_controle p {
    color: var(--text-color-4);
    font-size: var(--font-sub-titles);
    font-weight: 300;
    line-height: 144%;
    letter-spacing: 0.18px;
}

.info_controle p {
    color: var(--text-color-4);
    font-size: var(--font-sub-titles);
    font-weight: 500;
    line-height: 144%;
    letter-spacing: 0.18px;
}

.controle {
    max-width: max-content;
    width: 100%;
    height: auto;
    margin-left: 10px;
    display: block;
    z-index: -1;
    position: relative;
    max-width: 600px;
}

/* background: #7FD214; */
.btn_teste_gratis {
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    border-color: #393939;
    border-width: 5px;
}

.btn-vendedor {
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    border-color: #393939;
    border-width: 5px;
}

.button-content {
    background-color: #007BFF;
    border: 0.5px solid #42454A;
    padding: 16px 60px;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.btn-teste-gratis {
    background-color: #07c307;
    border: 0.5px solid #FFF;
    padding: 16px 30px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    min-width: 220px;
}

@media (max-width: 900px) {
    .container_notebook_int {
        margin: 20px;
        flex-direction: column;
        /* Altera para empilhar os componentes verticalmente */
    }
}

.arrow {
    margin-left: 10px;
    width: 16px;
    height: 14px;
    stroke: white;
    /* Ajuste a altura para 14px conforme o seu SVG original */
}

.btn_teste_gratis h2 {
    color: #FEFEFE;
    font-size: var(--font-sub-titles);
    font-weight: 600;
    letter-spacing: 0.18px;
}

.btn_teste_gratis:hover {
    transform: scale3d(1.06, 1.06, 1.06);
}

@keyframes pulse_btn_teste {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.btn_teste_gratis {
    animation: pulse_btn_teste 1.8s infinite;
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}

.btn_lead {
    border-radius: 8px;
    border: 0.5px solid #F4F4F4;
    background: #2575FC;
    box-shadow: 0px 0px 25px -8px rgba(44, 124, 236, 1);
    padding: 8px 15px;
    transition: all ease 200ms;
    transform: scale3d(1, 1, 1);
}

.btn_lead:hover {
    transform: scale3d(1.06, 1.06, 1.06);
}

.btn_lead h2 {
    color: #FEFEFE;
    font-size: var(--font-sub-titles);
    font-weight: 600;
    letter-spacing: 0.18px;
}

.btn_lead_lp {
    border-radius: 8px;
    background: #007BFF;
    box-shadow: 0px 13.21117px 26.42234px 0px rgba(0, 0, 0, 0.06);
    padding: 8px 15px;
    transition: all ease 200ms;
    transform: scale3d(1, 1, 1);
}

.btn_lead_lp:hover {
    transform: scale3d(1.06, 1.06, 1.06);
}

.btn_lead_lp h2 {
    color: #FEFEFE;
    font-size: var(--font-sub-titles);
    font-weight: 600;
    letter-spacing: 0.18px;
}

/*
.area_box_controle {
    display: flex;
    width: 100%;
    max-width: 900px;
    height: 100%;
    position: relative;
}

.box_controle {
    position: absolute;
    width: 420px;
    height: 260px;
    top: 0px;
    left: 0px;
    background: #F5F5F5;
    box-shadow: 28px 100px 60px rgba(0, 0, 0, 0.01);
    border-radius: 15px;
    transform: matrix(0.87, 0.5, -0.87, 0.5, 0, 0);
}

.box_controle_2 {
    position: absolute;
    width: 420px;
    height: 260px;
    top: -144px;
    left: 233px;
    background: #F5F5F5;
    box-shadow: 28px 100px 60px rgba(0, 0, 0, 0.01);
    border-radius: 15px;
    transform: matrix(0.87, 0.5, -0.87, 0.5, 0, 0);
}*/

/*Cards*/

.area_controle_card {
    display: flex;
    justify-content: center;
    max-width: 1080px;
}



.icon_card {
    width: 40px;
    height: 40px;
    display: block;
    margin: 0 auto;
    padding-right: 10px;
}

.title_card {
    color: var(--text-color-1);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
}

#container {
    display: flex;
    justify-content: left;
    width: 100%;
    padding: 40px 10px 40px 10px;
    box-sizing: border-box;
    max-width: 1080px;
}

.title h2 {
    color: var(--text-color-1);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: -35px;
}

.subtitle_card {
    font-size: 14px;
    font-weight: 500;
    color: #787878;
}




.container_cards {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 40px 10px 40px 10px;
    box-sizing: border-box;
}

.container_cards_int {
    display: flex;
    align-items: normal;
    margin: 10px;
    width: 45%;
    max-width: 450px;
    padding: 10px 10px 10px 10px;
    transition: all ease 200ms;
    transform: scale3d(1, 1, 1);

}

.column_card {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: start;
}

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

    .container_cards_int {
        width: 90%;
    }
}

.text-container {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.container_cards_int:hover {
    transform: scale3d(1.06, 1.06, 1.06);
}


.btn_lead:hover {
    transform: scale3d(1.06, 1.06, 1.06);
}




.title_cards h2 {
    color: var(--text-color-1);
    font-size: 26px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.6px;
}

.area_cards {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

@keyframes cards_animations {
    0% {
        translate: 0 40vh;
        opacity: 0;
    }

    100% {
        translate: 0 0;
        opacity: 1;
    }
}

@keyframes cards_animations2 {
    0% {
        translate: 0 60vh;
        opacity: 0;
    }

    100% {
        translate: 0 0;
        opacity: 1;
    }
}

@keyframes cards_animations3 {
    0% {
        translate: 0 80vh;
        opacity: 0;
    }

    100% {
        translate: 0 0;
        opacity: 1;
    }
}

/*
.cards_bg1 {
    animation: cards_animations 1ms ease-in-out;
    animation-timeline: scroll();
    animation-range: cover 0% cover 40%;
}

.cards_bg2 {
    animation: cards_animations2 1ms ease-in-out;
    animation-timeline: scroll();
    animation-range: cover 0% cover 40%;
}

.cards_bg3 {
    animation: cards_animations3 1ms ease-in-out;
    animation-timeline: scroll();
    animation-range: cover 0% cover 40%;
}*/

.cards_section {
    border-radius: 8px;
    border: 0.6px solid #F4F4F4;
    /*background-color: var(--bg-color-2);*/
    box-shadow: 0px 13px 26px 0px rgba(0, 0, 0, 0.06);
    max-width: 280px;
    height: 310px;
    width: 100%;
    padding: 40px 20px;
    position: relative;
    z-index: 0;
}

/*
.cards_section:hover {
    transform: scale3d(1.1, 1.1, 1.1);
}*/

/*
.cards_section:hover>.cards_section_int .title_cards_section h2 {
    color: var(--text-color-2);
}

.cards_section:hover>.cards_section_int .sub_title_cards_section p {
    color: var(--text-color-2);
}

.cards_section:hover>.cards_section_int svg path {
    fill: var(--text-color-2);
}*/

.cards_section_int {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    width: 100%;
    max-width: max-content;
}

.cards_section_int svg path {
    fill: #2575FC;
}

.title_cards_section h2 {
    color: var(--text-color-1);
    font-size: 22px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0.36px;
}

.sub_title_cards_section p {
    color: var(--text-color-1);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 174%;
    letter-spacing: 0.36px;
}


/*Compativel*/

.container_compativel {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 40px 0px 40px 0px;
}

.container_compativel_int {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1080px;
    position: relative;
}

.box_blur_1 {
    position: absolute;
    border-radius: 400px;
    background: #2575FC;
    filter: blur(350px);
    width: 320px;
    height: 350px;
    right: 0px;
    top: -12px;
    z-index: -1;
}

.box_blur_2 {
    position: absolute;
    border-radius: 400px;
    background: #2575FC;
    filter: blur(350px);
    width: 320px;
    height: 350px;
    left: 0px;
    bottom: 0px;
    z-index: -1;
}

.area_compativel_total {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 48px;
}

.area_compativel {
    display: flex;
    justify-content: center;
    align-items: center;
    row-gap: 40px;
    column-gap: 40px;
    width: 100%;
}

.area_compativel_2 {
    display: flex;
    justify-content: center;
    align-items: center;
    row-gap: 40px;
    column-gap: 40px;
    width: 100%;
}

.area_compativel_lp {
    display: flex;
    justify-content: center;
    align-items: center;
    row-gap: 40px;
    column-gap: 60px;
    width: 100%;
}

.area_compativel_2_lp {
    display: flex;
    justify-content: center;
    align-items: center;
    row-gap: 40px;
    column-gap: 60px;
    width: 100%;
}

.sistemas_solucoes {
    max-width: 580px;
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.sistemas_sucesso {
    max-width: max-content;
    width: 100%;
    height: auto;
}

.area_texts_compativel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 600px;
}

.area_texts_compativel_lp {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: max-content;
}

.title_compativel h2 {
    color: var(--text-color-1);
    font-size: 30px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0.6px;
}

.title_compativel h2 b {
    color: var(--text-color-2);
    font-weight: 700;
}

.sub_title_compativel p {
    color: var(--text-color-4);
    font-size: var(--font-sub-titles);
    font-weight: 300;
    line-height: 174%;
    letter-spacing: 0.36px;
}

.sub_title_compativel p b {
    font-weight: 500;
}

.area_info_compativel {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.area_info_compativel_int {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: 520px;
}

.area_info_compativel_int img {
    margin-top: 5px;
}


.info_compativel p {
    color: #595959;
    font-size: var(--font-sub-titles);
    font-weight: 400;
    line-height: 174%;
    letter-spacing: 0.36px;
}

/*planos*/
.container_planos {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0px 0px 60px 0px;
}

.container_planos_int {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: 1300px;
}

.title_planos_container h2 {
    color: var(--text-color-1);
    font-size: var(--font-titles);
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0.42px;
    text-align: center;
}

.title_planos_container h2 b {
    color: var(--text-color-2);
    font-weight: 700;
}

.area_tempo_planos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    border-radius: 38px;
    background: #F9F9F9;
    box-shadow: 12px -3px 25px -7px rgba(0, 0, 0, 0.25) inset;
    width: 100%;
    max-width: 300px;
    height: 40px;
    padding: 10px 0px;
}

.plano_anual {
    max-width: max-content;
    width: 100%;
    padding: 5px 20px;
    border-radius: 20px;
    background-color: #2575FC;
    cursor: pointer;
    transition: all ease 200ms;
}

.plano_anual.selected {
    transform: scale3d(1.1, 1.1, 1.1);
    background-color: #07c307;
}

.plano_anual:hover {
    transform: scale3d(1.1, 1.1, 1.1);
}

.plano_anual h2 {
    font-weight: var(--font-weight-700);
    font-size: 16px;
    text-align: center;
    letter-spacing: 0.04em;
    color: var(--text-color-3);
    margin: 0px;
}

.area_planos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 20px;
    column-gap: 40px;
    width: 100%;
    margin-top: 10px;
}

.card_planos {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 250px;
    height: 260px;
    padding: 30px 20px;
    border: 1px solid #5a5a5a;
    /*background:  var(--bg-color-2);*/
    box-shadow: 0px 13.21117px 26.42234px 0px rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    transition: all ease 200ms;
    transform: scale3d(1, 1, 1);
}

.card_planos:hover {
    transform: scale3d(1.1, 1.1, 1.1);
}

.card_planos_int {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 250px;
}

.area_text_planos {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title_planos h2 {
    font-weight: 700;
    font-size: 24px;
    line-height: 124%;
    text-align: center;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-color-1);
    margin: 0px;
}

.sub_title_planos p {
    font-weight: 500;
    font-size: 16px;
    line-height: 124%;
    text-align: center;
    letter-spacing: 0.04em;
    color: var(--text-color-1);
    margin: 0px;
}

.area_precos_planos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.preco_del del {
    color: var(--text-color-1);
    font-size: 15px;
}

.preco_plano h2 {
    font-weight: 700;
    font-size: 34px;
    text-align: center;
    letter-spacing: 0.04em;
    color: var(--text-color-1);
    margin: 0px;
}

.area_btn_planos {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;

}

.btn_planos {
    border-radius: 8px;
    border: 0.5px solid var(--text-color-3);
    background: #2575FC;
    box-shadow: 0px 0px 25px -8px rgba(44, 124, 236, 1);
    padding: 8px 15px;
    transition: all ease 200ms;
    transform: scale3d(1, 1, 1);
    transition: all ease 200ms;
}

.btn_planos:hover {
    transform: scale3d(1.08, 1.08, 1.08);
}

.btn_planos img {
    max-width: 25px;
    width: 100%;
}

.btn_planos h2 {
    font-weight: 700;
    font-size: 18px;
    line-height: 124%;
    text-align: center;
    letter-spacing: 0.04em;
    color: var(--text-color-3);
    margin: 0px;
}

/*Container gratuito*/

.container_gratuito {
    display: flex;
    justify-content: center;
    width: 100%;
    background-image: url(../img/bg_teste_gratuito.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.container_gratuito_int {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0px;
    width: 100%;
    max-width: 1080px;
}

.area_gratuito {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.area_texts_gratuito {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: 520px;
}

.title_gratuito h2 {
    color: #FFF;
    font-size: 30px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.6px;
}

.title_gratuito h2 b {
    color: #000;
}

.area_info_gratuito {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info_gratuito p {
    color: #000;
    font-size: var(--font-sub-titles);
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.36px;
}

.sub_title_gratuito p {
    color: #FFF;
    font-size: var(--font-sub-titles);
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.36px;
}

/*Faq*/
.container_faq {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 60px 0px 60px 0px;
}

.container_faq_int {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    max-width: 1080px;
}

.area_faq {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1150px;
    gap: 10px;
}

.title_faq h2 {
    color: #42454A;
    font-size: 30px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0.3px;
}

.faq_quests {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 30px;
    border: 0.661px solid #F4F4F4;
    background: #FFF;
    box-shadow: 0px 13.21117px 26.42234px 0px rgba(0, 0, 0, 0.12);
    padding: 20px 25px 20px 25px;
    cursor: pointer;
}

.faq_quests h2 {
    color: #595959;
    font-size: var(--font-sub-titles);
    font-weight: 600;
    line-height: 174%;
    letter-spacing: 0.36px;
}

.quest {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
    cursor: pointer;
}

.area_img_faq {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #2575FC;
    width: 20px;
    height: 20px;
    border-radius: 100px;
    padding: 10px;
}

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

.quest h2 {
    color: #595959;
    font-size: 22px;
    font-weight: 600;
    line-height: 174%;
    letter-spacing: 0.36px;
}

.close_faq {
    opacity: 1 !important;
}

.aswer {
    max-height: 0px;
    opacity: 0;
    transition: all ease-in-out 400ms;
    transform: scaleY(0.2);
    transform-origin: top;
    background: #FFFFFF;
    box-shadow: 0px 13.21117px 26.42234px 0px rgba(0, 0, 0, 0.12);
    border-radius: 0px 0px 36px 36px;
    position: relative;
    z-index: -1;
}

.aswer.open {
    margin: -20px 0px 20px 0px;
    padding: 25px 25px 20px 25px;
}

.aswer h2 {
    color: #595959;
    font-size: var(--font-sub-titles);
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0.36px;
}

.open {
    display: flex;
    height: fit-content;
    max-height: 100% !important;
    transition: all ease-in-out 400ms;
    opacity: 1;
    transform: scaleY(1);
}


/*Container notebook*/
.container_notebook {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 60px 0px 60px 0px;

}

.container_notebook_int {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1080px;
    border-radius: 6px;
    /* background: radial-gradient(140% 80% at -30% 60%, rgba(1, 43, 56, 0.80) 0%, rgba(0, 0, 0, 0.00) 100%), radial-gradient(174.87% 58.05% at 11.23% 134.58%, rgba(1, 49, 65, 0.90) 0%, rgba(0, 0, 0, 0.00) 100%), #02A6DC; */
    background: #2575FC
}

.area_notebook {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.notebook_bg {
    margin-top: -50px;
    margin-bottom: -50px;
    margin-left: -30px;
    max-width: 550px;
    height: auto;
    width: 100%;

}

#email_footer {
    display: flex;
    gap: 20px;
    border-radius: 10px;
    background: #FFFFFF;
    padding: 10px;
    max-width: max-content;
}

.email_footer_text {
    border-radius: 5px;
    background: #FFF;
    padding: 10px 10px;
    outline: none;
    width: 100%;
    max-width: 380px;
    color: #9a9a9a;
    font-size: var(--font-sub-titles);
    font-weight: 300;
    letter-spacing: 0.18px;
    outline: none;
    border: none;
}

.area_form_texts {
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    max-width: 440px;
    margin: 30px auto;
    margin-top: 20px;
}

.title_notebook_bg h2 {
    color: #FFF;
    font-size: var(--font-titles);
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.8px;
    text-align: center;
    margin-top: 35px;
}

.title_notebook_bg h2 b {
    color: #000;
    font-weight: 600;
}

/*Footer*/

footer {
    width: 100%;
    background: #3A3839;
    padding: 40px 0px 40px 0px;
}

.container_footer {
    display: flex;
    justify-content: center;
    width: 100%;
}

.container_footer_int {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1080px;
}

.area_footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.area_logo_footer {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    max-width: 420px;
}

.logo_footer {
    max-width: 120px;
    width: 100%;
    height: auto;
}

.sub_title_footer p {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
}


.area_infos_footer {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: 250px;
}

.title_info_footer h2 {
    color: #56ACDE;
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
}

.infos_footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.infos_footer a {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
}

.info_footer p {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
}

@media(max-width: 1024px) {

    header {
        position: fixed;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
    }

    .menu_mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1080px;
        padding: 10px 20px 10px 20px;

    }

    .container_home {
        padding: 80px 0px 0px 0px;
    }


    @keyframes move {
        0% {
            right: -100%;

        }

        100% {
            right: 0px;
        }

    }

    .menu_open {
        display: flex;
    }

    .menu_open rect {
        fill: #2575FC;
    }

    .close {
        display: flex;
        position: absolute;
        top: 20px;
        left: 20px;
    }

    #container_menu {
        display: none;
        width: 100%;
        height: 100vh;
        opacity: 1;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) -13.82%, rgba(255, 255, 255, 0.8) 90.71%);
        position: fixed;
        top: 0px;
        z-index: 99;
        transition: all ease 400ms;
    }

    .container_menu {
        display: flex;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    .container_menu_int {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .area_menu {
        flex-direction: column;
        width: 100%;
    }

    .area_close {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        position: fixed;
        top: 40px;
    }

    .area_close_int {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 1220px;
    }

    .close {
        cursor: pointer;
        max-width: max-content;
        width: 100%;
    }

    .area_menu nav {
        width: 100%;
    }

    .area_menu nav ul {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 25px;
        justify-content: center;
        margin: 0px;
        padding: 0px;
    }

    .logo_desktop {
        display: none;
    }

    nav ul li a {
        font-size: 30px;
    }

    .area_menu nav ul li a {
        color: #2E3033;
        font-size: 28px;
        font-weight: 700;
        line-height: 100%;
        letter-spacing: -1.6px;
    }

    :root {
        --font-titles: 48px;
        --font-sub-titles: 18px;
    }

    .area_home {
        flex-direction: column;
        justify-content: center;
        gap: 40px;
    }

    .area_texts_home {
        max-width: 620px;
    }



    .area_icones {
        justify-content: center;
        padding: 40px 20px 0px 20px;
        width: auto;
    }

    /*Controle*/
    .area_controle {
        flex-direction: column;
        gap: 20px;
        padding: 0px 20px;
    }

    .area_controle2 {
        flex-direction: row;
        gap: 20px;
        padding: 0px 20px;
    }

    .title_controle2 h2 {
        font-size: 28px;
    }



    /*Compativel*/
    .area_compativel {
        flex-direction: column;
    }

    .area_texts_compativel_lp {
        max-width: 600px;
    }

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

    .area_compativel_lp {
        flex-direction: column;
    }

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

    .area_texts_compativel {
        max-width: 540px;
    }

    .title_compativel h2 {
        font-size: 26px;
    }



    .container_gratuito_int {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) -10%, rgba(241, 241, 241, 0.2) 80%);
    }

    .area_gratuito {
        justify-content: center;
    }

    /*Faq*/
    .container_faq {
        padding: 40px 0px 40px 0px;
    }

    .area_faq {
        padding: 0px 20px;
        width: auto;
    }

    /*Planos*/
    .container_planos {
        padding: 0px 0px 40px 0px;
    }

    .preco_plano h2 {
        font-size: 30px;
    }

    .preco_del del {
        font-size: 14px;
    }

    .area_precos_planos {
        gap: 5px;
    }

    .card_planos_int {
        justify-content: flex-start;
        gap: 20px;
    }

    .area_footer {
        padding: 0px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .area_infos_footer {
        gap: 20px;
        max-width: 415px;
    }

    .sub_title_footer p {
        font-size: 16px;
    }

    .title_info_footer h2 {
        font-size: 20px;
    }

    .infos_footer a {
        font-size: 16px;
    }

    .info_footer p {
        font-size: 16px;
    }

    .container_notebook {
        padding: 40px 0px 40px 0px;
    }

    .area_notebook {
        flex-direction: column;
        padding: 20px 0px;
    }

    .notebook_bg {
        margin-top: 0px;
    }

    .area_form_texts {
        gap: 20px;
        align-items: center;
    }

    #email_footer {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: calc(100% - 40px);
        gap: 15px;
    }

    .enviar {
        width: 100%;
    }
}


@media(max-width: 480px) {
    :root {
        --font-titles: 28px;
        --font-sub-titles: 16px;
    }

    .area_home {
        padding: 0px 20px;
        width: auto;
    }

    .container_home {
        padding: 100px 0px 0px 0px;
    }

    .area_texts_controle {
        gap: 10px;
    }

    .title_controle h2 {
        font-size: 22px;
    }




    .area_icones {
        justify-content: center;
        padding: 20px 20px 0px 20px;
        width: auto;
    }

    /*Compativel*/
    .area_compativel_total {
        padding: 0px 20px;
        gap: 40px;
    }

    .title_compativel h2 {
        font-size: 22px;
    }

    .container_planos_int {
        padding: 0px 20px;
    }

    .controle {
        margin-left: 0px;
        z-index: auto;
    }

    /*.animation_texts {
        animation: texts_animations 1ms ease-in-out;
        animation-timeline: view();
        animation-range: cover 0% cover 20%;
    }

    .controle {
        animation-range: cover 0% cover 30%;
    }*/

    .container_controle_int {
        padding: 40px 0px;
    }


    .area_cards {
        padding: 0px 20px;
        gap: 20px;
    }

    .cards_section {
        height: auto;
    }

    .sub_title_cards_section p {
        font-size: 16px;
        line-height: 120%;
    }

    .box_blur_1 {
        width: 350px;
        height: 350px;
    }

    .box_blur_2 {
        width: 350px;
        height: 350px;
    }

    .container_gratuito_int {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) -10%, rgba(241, 241, 241, 0.2) 80%);
    }

    .area_texts_gratuito {
        padding: 0px 20px;
        text-align: center;
        gap: 20px;
    }

    .title_gratuito h2 {
        font-size: 28px;
    }

    .area_info_gratuito {
        gap: 10px;
    }

    .container_faq_int {
        gap: 30px;
    }

    #email_home {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: calc(100% + 20px);
        gap: 15px;
    }

    .email,
    .nome,
    .whatsapp {
        max-width: calc(100% - 20px);
    }

    .quest h2 {
        font-size: 20px;
        line-height: 140%;
    }

    .title_faq h2 {
        font-size: 28px;
    }

    .area_img_faq {
        width: 10px;
        height: 10px;
    }

    .area_img_faq img {
        width: 20px;
        height: 20px;
    }

    .enviar {
        width: 100%;
    }

    .icones_home {
        width: 150px;
        height: 120px;
    }

    .area_whatsapp img {
        width: 100%;
        max-width: 60px;
        height: 60px;
    }

    .area_whatsapp a {
        height: 60px;
    }


    .title_cards h2 {
        font-size: 28px;
    }

    .container_notebook {
        padding: 0px 0px 40px 0px;
    }

    .container_notebook_int {
        border-radius: 0px;
        flex-direction: column
    }

    .area_notebook {
        gap: 20px;
    }

    .area_notebook {
        padding: 20px;
    }

    .area_form_texts {
        gap: 20px;
        align-items: center;
        width: auto;
    }

    .cards_bg1 {
        animation-range: cover 0% cover 30%;
    }

    .cards_bg2 {
        animation-range: cover 0% cover 30%;
    }

    .cards_bg3 {
        animation-range: cover 0% cover 30%;
    }

}

@media(max-width: 375px) {
    :root {
        --font-titles: 26px;
        --font-sub-titles: 16px;
    }
}