/*celular*/
@media (max-width: 725px) {
    ::-webkit-scrollbar {
        width: 0.75rem; /* 12px */
    }
    
    ::-webkit-scrollbar-track {
        background-color: #E0F2F1;
    }
    
    ::-webkit-scrollbar-thumb {
        background-color: #76EEAA;
        border-radius: 0.5rem; /* 8px */
    }
    
    #mensagem-status-home {
        position: fixed;
        bottom: 65%;
        right: 7.5%;
        transform: translateX(-50%);
        padding: 15px 20px;
        border-radius: 1rem;
        font-size: 16px;
        font-weight: bold;
        text-align: center;
        display: none; /* Oculto por padrão */
        z-index: 9999;
        width: 23%;
    }

    body, html {
        font-family: 'Satoshi', sans-serif;
        margin: 0;
        height: 100vh;
        width: 100;
        padding: 0;
        overflow-x: hidden;
        scroll-behavior: smooth;
    }
    
    .container {
        padding:  0 1.25rem 1.25rem 1.25rem; /* 20px */
        margin: 0;
    }
    
    header {
        top: 0;
        left: 0;
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        position: relative; /* Necessário para o posicionamento do menu */
        z-index: 1001; /* Garante que o header fique sobre outros elementos */
    }

    .header-content {
        display: flex;
        align-items: center;
        justify-content: space-between; /* Alinha logo e ícone nas pontas */
        padding: 1.5rem 1.25rem;
        width: 100%;
        box-sizing: border-box;
    }

    .logo {
        display: flex;
    }

    .logo img {
        height: 1.4rem;
    }

    .hamb {
        display: flex; /* Garante que o ícone seja visível */
        cursor: pointer;
        z-index: 3000; /* Posição acima de tudo */
    }

    .navbar {
        display: none;
    }

    .navbar.active {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        
        /* Estilo para cobrir a tela inteira */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #fff;
        z-index: 2000;
        margin: 0;
        padding: 0;
    }

    /* Organiza os itens dentro do menu aberto */
    .navbar.active nav ul {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0;
    }

    .navbar.active .navbar-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    /* Estilos dos links e botões (não precisam mudar) */
    nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        gap: 1.5rem;
        text-align: right;
    }

    nav ul li {
        font-size: 1.2rem;
        color: #202020;
    }

    nav ul li:hover {
        color: #6252EA;
    }

    nav ul li b {
        font-weight: 800;
    }

    .navbar-buttons {
        display: flex;
        gap: 1rem; /* 20px */
        align-items: center;
        justify-content: center;
    }
    
    .header-content a#nav-login {
        align-items: center;
        padding: 0.5rem; /* 12px */
        border-radius: 1rem; /* 16px */
        width: auto; /* 108px */
        height: auto; /* 47px */
        background-color: #FFFFFF;
        font-size: 1.2rem; /* 17px */
        font-weight: 400;
        color: #202020;
        justify-content: center;
        text-decoration: none;
        text-align: right;
    }
    
    .header-content a#nav-login:hover {
        color: #6252EA;
    }
    
    .header-content a#nav-contratar {
        display: flex;
        align-items: center;
        padding: 0.2rem 1rem; /* 12px */
        border-radius: 3rem; /* 16px */
        width: auto; /* 141px */
        height: 2.5rem; /* 47px */
        border: none;
        background-color: #76EEAA;
        font-size: 1.1rem; /* 17px */
        font-weight: 400;
        color: #202020;
        justify-content: center;
        text-decoration: none;
        line-height: 0.7rem; /* 22.95px */
    }
    
    .header-content a#nav-contratar:hover {
        background-color: #6252EA;
        color: #FFFFFF;
    }

    main {
        padding: 1rem 0; /* 80px */
    }

    .tistto-prevencao {
        height: auto; /* 710px */
        justify-content: center;
        align-items: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 5%;
        margin: 5% 0;
    }

    .tistto-prevencao .tistto-prevencao-laterais{
        height: auto; /* 710px */
        width: 90%;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
    }

    .tistto-prevencao .tistto-prevencao-right {
        width: 100%;
        float: right;
        justify-content: flex-end;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }


    .tistto-prevencao .tistto-prevencao-right h5 {
        font-size: 1rem; /* 70px */
        font-weight: 400;
        line-height: 1rem; /* 80px */
        width: 100%; /* 650px */
        color: #202020;
        margin: 0 0 5% 0;
        text-align: justify;
    }

    .tistto-prevencao .tistto-prevencao-left {
        width: 100%;
        display: flex;
        margin: 0;
        align-items: center; 
        justify-content: center;
        height: auto;
        flex-direction: column;
        position: relative;
        padding: 0 0 35% 0;
    }

    .tistto-prevencao .tistto-prevencao-left h4 {
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 2.5rem;
        width: 100%;
        color: #6252EA;
        margin: 0 0 5% 0;
        text-align: right;
    }

    .tistto-prevencao .tistto-prevencao-left img {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 120%;
        height: auto;
        transform: scaleX(-1);
        position: absolute;
        bottom: -5vh;
        left: -30%;
    }

    .tistto-valores {
        width: 100vw;
        height: auto; /* 692px */
        display: flex;
        flex-direction: column;
        margin: 3% 0 0 0;
        background-color: #202020;
        margin-left: calc(50% - 50vw);
        padding: 0;
    }

    .tistto-valores h3 {
        display: flex;
        font-size: 2.5rem; /* 40px */
        font-weight: 600;
        align-items: center;
        color: #76EEAA;
        justify-content: center;
    }

    .tistto-valores .cards-valores {
        display: flex;
        flex-direction: column;
        gap: 1%; /* 30px */
        width: 100%; /* 1170px */
        height: auto; /* 229.08px */
        justify-content: center;
        align-items: center;
        padding: 0 0 15% 0;
        margin: 0;
    }
    
    .tistto-valores .cards-valores #clareza, #liberdade, #agilidade {
        display: flex;
        flex-direction: column;
        width: 80%; /* 370px */
        height: auto; /* 229.08px */
        padding: 2rem 1.5rem; /* 40px 30px */
        align-items: center;
        justify-content: center;
    }

    .tistto-valores .cards-valores #clareza h4, #liberdade h4, #agilidade h4 {
        font-size: 1.5rem; /* 40px */
        font-weight: 700;
        align-items: center;
        color: #6252EA;
        justify-content: center;
        margin: 0 0 5% 0;
    }

    .tistto-valores .cards-valores #clareza h6, #liberdade h6, #agilidade h6{
        font-size: 1.3rem; /* 40px */
        font-weight: 300;
        align-items: center;
        color: #fff;
        justify-content: center;
        width: 100%;
        text-align: center;
        margin: 0;
        letter-spacing: 0.06rem;
    }

    .wrapper-1 {
        position: relative;
    }
    
    .blob1#blob1-parc {
        display: flex;
        position: absolute;
        width: 80%;
        z-index: 1000;
        top: -30%;
        left: -40%;
    }

    .blob1#blob1-parc img{
        rotate: 180deg;
        width: 100%;
    }

    .tistto-parceiros {
        justify-content: center;
        align-items: center;
        width: 100%;
        display: flex;
        height: auto;
        flex-direction: column;
        margin: 1% 0;
        padding: 5% 0;
    }

    .tistto-parceiros h3 {
        font-size: 2rem; /* 40px */
        font-weight: 700;
        align-items: center;
        color: #6252EA;
        justify-content: center;
        z-index: 1001;
    }

    .tistto-parceiros .tistto-parceiros-grid {
        width: 100%;
        align-items: center;
        color: #191A15;
        justify-content: center;
        display: flex;
        margin: 5%;
        flex-direction: column;
        gap: 5%;
    }

    .tistto-parceiros .tistto-parceiros-grid img {
        width: 70%;
        align-items: center;
        color: #191A15;
        display: flex;
        margin: 2%;
    }

    .cuide-marca {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 3% 0 0 0;
    }

    .cuide-marca-square {
        width: 80%; /* 1178px */
        height: auto; /* 398px */
        background-image: linear-gradient(to right, #76EEAA, #6252EA);
        border-radius: 1.25rem; /* 20px */
        margin: 0;
        padding: 2rem 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .cuide-marca-square h4 {
        font-size: 1.8rem;
        font-weight: 700;
        align-items: center;
        color: #202020;
        justify-content: center;
        width: 100%;
        text-align: left;
        margin: 0;
        padding-bottom: 10%;
        line-height: 1.8rem;
    }

    .cuide-marca-square button#demo-cm {
        background-color: #76EEAA;
        padding: 2.5rem 2rem; /* 12px 32px */
        height: 3.5rem; /* 56px */
        border-radius: 3rem; /* 16px */
        border: none;
        width: 18rem; /* 177px */
        color: #202020;
        align-items: center;
        font-weight: 700;
        font-size: 1rem; /* 17px */
        line-height: 1.2rem; /* 22.95px */
        justify-content: center;
        display: inline-flex;
        text-transform: uppercase;
        margin: 0;
    }

    .cuide-marca-square button#demo-cm:hover {
        background-color: rgba(118, 238, 170, 0.5);
        color: #202020;
    }

    footer {
        width: 100%;
        background-color: #202020;
        color: #FFFFFF;
        align-items: center;
        display: flex;
        flex-direction: column;
        margin: 0;
        padding: 3rem 0; /* 48px 0 */
    }
    
    footer .footer-content {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    footer .footer-content .footer-top {
        width: 100%;
        height: auto; /* 2px */
        margin: 0 0 2rem 0; /* 0 0 32px 0 */
        padding: 0 5%; /* 0 60px */
        display: flex;
        align-items: flex-end;
        gap: 2rem;
    }

    footer .footer-content .footer-top h5 {
        font-size: 1.2rem; /* 24px */
        font-weight: 700;
        margin: 0;
        padding: 0 0 1rem 0; /* 16px 0 */
        width: 100%
    }

    footer .footer-content .footer-top .footer-newsletter {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    #form-newsletter {
        display: flex;
        align-items: center;
        background-color: #ffffff;
        border-radius: 3rem;
        overflow: hidden;
        width: 90%;
        height: 3rem;
    }

    #email-newsletter {
        width: 85%;
        border: none;
        outline: none;
        background: transparent;
        padding: 0 1.5rem;
        font-size: 1rem;
        color: #333;
        display: flex;
        height: auto;
        line-height: 1rem;
        margin: 0;
    }

    #assinar {
        background-color: #76EEAA; /* Cor verde-claro, similar à imagem */
        color: #000; /* Cor do texto */
        font-weight: 700;
        font-size: 1rem; /* Tamanho da fonte */
        border: none; /* Remove a borda padrão */
        border-radius: 50px; /* Deixa o botão arredondado */
        cursor: pointer; /* Mostra a "mãozinha" ao passar o mouse */
        height: 100%; /* Ocupa toda a altura do form */
        display: flex;
        width: 25%;
    }

    #assinar:hover {
        background-color: #6252EA;
        color: #FFFFFF;
    }

    footer .footer-content .footer-down {
        width: 100%;
        height: auto; /* 2px */
        margin: 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    
    footer .footer-content .creditos {
        width: auto;
        float: left;
        padding: 0 0 0 5%; /* 60px */
        flex-direction: column;
        display: flex;
    }

    footer .footer-content .creditos h6 {
        margin: 0.2rem 0 0 0;
        font-size: 1rem;
        font-weight: 300;
    }

    footer .footer-content .acessos {
        width: auto;
        float: left;
        padding: 0 0 0 5%; /* 60px */
        align-items: flex-start;
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
    }

    footer .footer-content .acessos a {
        color: #FFFFFF;
        font-size: 1rem;
        font-weight: 300;
        margin: 0.2rem 0 0 0; /* 3px 24px 0 0 */
    }
    
    footer .footer-content .redes {
        width: auto;
        padding: 0 3.75rem 0 0; /* 0 60px 0 0 */
        margin: 0;
        align-items: center;
        display: flex;
        justify-content: flex-start;
        gap: 0.5rem; /* 16px */
        flex-direction: column;
        font-size: 2rem;
        text-align: left;
        line-height: 1.2rem;
    }

    footer .footer-content .footer-down .redes h6 {
        margin: 0;
        font-size: 1rem;
        font-weight: 300;
        width: auto;
    }

    footer .footer-content .redes-icons {
        display: flex;
        flex-direction: row;
        gap: 1rem; /* 16px */
    }

    .redes a {
        width: 2rem;
        height: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    .redes a img {
        width: 2rem;
        height: 2rem;
    }
}

/*tablet*/
@media (min-width: 725px) and (max-width: 1024px) {
    ::-webkit-scrollbar {
        width: 0.75rem; /* 12px */
    }
    
    ::-webkit-scrollbar-track {
        background-color: #E0F2F1;
    }
    
    ::-webkit-scrollbar-thumb {
        background-color: #76EEAA;
        border-radius: 0.5rem; /* 8px */
    }
    
    #mensagem-status-home {
        position: fixed;
        bottom: 65%;
        right: 7.5%;
        transform: translateX(-50%);
        padding: 15px 20px;
        border-radius: 1rem;
        font-size: 16px;
        font-weight: bold;
        text-align: center;
        display: none; /* Oculto por padrão */
        z-index: 9999;
        width: 23%;
    }

    body, html {
        font-family: 'Satoshi', sans-serif;
        margin: 0;
        height: 100vh;
        width: 100;
        padding: 0;
        overflow-x: hidden;
        scroll-behavior: smooth;
    }
    
    .container {
        padding:  0 1.25rem 1.25rem 1.25rem; /* 20px */
        margin: 0;
    }
    
    header {
        top: 0; 
        left: 0; 
        width: 100%; 
        margin: 0; /* 10px */
        padding: 0;
        display: flex;
        flex-direction: row;
        border-top: 0;
    }
    
    .header-content {
        display: flex;
        align-items: center;
        height: 4rem; /* 80px */
        width: 85vw;
        justify-content: space-between;
        position: fixed;
        background-color: #fff;
        z-index: 2000;
        margin: 2% 0 0 2%;
        padding: 0 2rem; /* 40px */
        border-radius: 3rem;
    }
    
    .logo {
        display: flex;
    }
    
    .logo img {
        height: 1.4rem; /* 30px */
    }
    
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0;
        width: 75%;
    }
    
    nav {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    nav ul {
        list-style: none;
        margin: 0 2rem; /* 40px */
        padding: 0;
        display: flex;
        gap: 1rem; /* 40px */
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    
    nav ul li {
        font-size: 1rem; /* 18px */
        font-weight: 400;
        line-height: 1.51875; /* 24.3px */
        color: #202020;
    }
    
    nav ul li:hover {
        color: #6252EA;
    }

    nav ul li b {
        font-weight: 800;
    }

    .navbar-buttons {
        display: flex;
        gap: 1rem; /* 20px */
        align-items: center;
        justify-content: center;
    }

    .hamb {
        display: none;
    }
    
    .header-content a#nav-login {
        align-items: center;
        padding: 0.1rem; /* 12px */
        border-radius: 1rem; /* 16px */
        width: auto; /* 108px */
        height: auto; /* 47px */
        background-color: #FFFFFF;
        font-size: 1rem; /* 17px */
        font-weight: 400;
        color: #202020;
        justify-content: center;
        text-decoration: none;
    }
    
    .header-content a#nav-login:hover {
        color: #6252EA;
    }
    
    .header-content a#nav-contratar {
        display: flex;
        align-items: center;
        padding: 0.1rem 1rem; /* 12px */
        border-radius: 3rem; /* 16px */
        width: auto; /* 141px */
        height: 2.5rem; /* 47px */
        border: none;
        background-color: #76EEAA;
        font-size: 0.8rem; /* 17px */
        font-weight: 400;
        color: #202020;
        justify-content: center;
        text-decoration: none;
        line-height: 0.7rem; /* 22.95px */
    }
    
    .header-content a#nav-contratar:hover {
        background-color: #6252EA;
        color: #FFFFFF;
    }

    main {
        padding: 5rem 0; /* 80px */
    }

    .tistto-prevencao {
        height: auto; /* 710px */
        justify-content: center;
        align-items: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 5%;
        margin: 5% 0;
    }

    .tistto-prevencao .tistto-prevencao-laterais{
        height: auto; /* 710px */
        width: 85%;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 5%;
        flex-direction: row;
    }

    .tistto-prevencao .tistto-prevencao-right {
        width: 80%;
        float: right;
        justify-content: flex-end;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }


    .tistto-prevencao .tistto-prevencao-right h5 {
        font-size: 1rem; /* 70px */
        font-weight: 400;
        line-height: 1rem; /* 80px */
        width: 100%; /* 650px */
        color: #202020;
        margin: 0 0 5% 0;
        text-align: justify;

    }

    .tistto-prevencao .tistto-prevencao-left {
        width: 60%;
        display: flex;
        margin: 0;
        align-items: center; 
        justify-content: center;
        height: auto;
        flex-direction: column;
        position: relative;
    }

    .tistto-prevencao .tistto-prevencao-left h4 {
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 2.5rem;
        width: 100%;
        color: #6252EA;
        margin: 0 0 5% 0;
        text-align: right;
    }

    .tistto-prevencao .tistto-prevencao-left img {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 120%;
        height: auto;
        transform: scaleX(-1);
        position: absolute;
        bottom: -15vh;
        left: -30%;
    }

    .tistto-valores {
        width: 100vw;
        height: auto; /* 692px */
        display: flex;
        flex-direction: column;
        margin: 3% 0 0 0;
        background-color: #202020;
        margin-left: calc(50% - 50vw);
        padding: 0;
    }

    .tistto-valores h3 {
        display: flex;
        font-size: 2.5rem; /* 40px */
        font-weight: 600;
        align-items: center;
        color: #76EEAA;
        justify-content: center;
    }

    .tistto-valores .cards-valores {
        display: flex;
        flex-direction: column;
        gap: 1%; /* 30px */
        width: 85%; /* 1170px */
        height: auto; /* 229.08px */
        justify-content: center;
        align-items: center;
        padding: 0;
        margin: 0;
    }
    
    .tistto-valores .cards-valores #clareza, #liberdade, #agilidade {
        display: flex;
        flex-direction: column;
        width: 40%; /* 370px */
        height: auto; /* 229.08px */
        padding: 2rem 1.5rem; /* 40px 30px */
        align-items: center;
        justify-content: flex-start;
    }

    .cards-valores #liberdade {
        transform: translateY(0%) translateX(75%);
    }

    .cards-valores #clareza {
        transform: translateY(-60%) translateX(-25%);
    }

    .cards-valores #agilidade {
        transform: translateY(-70%) translateX(60%);
    }

    .tistto-valores .cards-valores #clareza h4, #liberdade h4, #agilidade h4 {
        font-size: 1.5rem; /* 40px */
        font-weight: 700;
        align-items: center;
        color: #6252EA;
        justify-content: center;
        margin: 0 0 5% 0;
    }

    .tistto-valores .cards-valores #clareza h6, #liberdade h6, #agilidade h6{
        font-size: 1.3rem; /* 40px */
        font-weight: 300;
        align-items: center;
        color: #fff;
        justify-content: center;
        width: 100%;
        text-align: center;
        margin: 0;
        letter-spacing: 0.06rem;
    }

    .wrapper-1 {
        position: relative;
    }
    
    .blob1#blob1-parc {
        display: flex;
        position: absolute;
        width: 80%;
        z-index: 1000;
        top: -130%;
        left: -30%;
    }

    .blob1#blob1-parc img{
        rotate: 180deg;
        width: 100%;
    }

    .tistto-parceiros {
        justify-content: center;
        align-items: center;
        width: 100%;
        display: flex;
        height: auto;
        flex-direction: column;
        margin: 1% 0;
    }

    .tistto-parceiros h3 {
        font-size: 2.5rem; /* 40px */
        font-weight: 700;
        align-items: center;
        color: #6252EA;
        justify-content: center;
    }

    .tistto-parceiros .tistto-parceiros-grid {
        width: 85%;
        align-items: center;
        color: #191A15;
        justify-content: center;
        display: flex;
        margin: 5%;
        flex-direction: row;
    }

    .tistto-parceiros .tistto-parceiros-grid img {
        width: 20%;
        align-items: center;
        color: #191A15;
        display: flex;
        margin: 2%;
    }

    .cuide-marca {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 3% 0 0 0;
    }

    .cuide-marca-square {
        width: 80%; /* 1178px */
        height: auto; /* 398px */
        background-image: linear-gradient(to right, #76EEAA, #6252EA);
        border-radius: 1.25rem; /* 20px */
        margin: 0;
        padding: 3rem 4rem;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .cuide-marca-square h4 {
        font-size: 3rem;
        font-weight: 700;
        align-items: center;
        color: #202020;
        justify-content: center;
        width: 100%;
        text-align: left;
        margin: 0;
        padding-bottom: 5%;
        line-height: 3rem;
    }

    .cuide-marca-square button#demo-cm {
        background-color: #76EEAA;
        padding: 0 2rem; /* 12px 32px */
        height: 3.5rem; /* 56px */
        border-radius: 3rem; /* 16px */
        border: none;
        width: 25rem; /* 177px */
        color: #202020;
        align-items: center;
        font-weight: 700;
        font-size: 1rem; /* 17px */
        line-height: 1.1rem; /* 22.95px */
        justify-content: center;
        display: inline-flex;
        gap: 0.75rem; /* 12px */
        text-transform: uppercase;
        margin: 0;
    }

    .cuide-marca-square button#demo-cm:hover {
        background-color: rgba(118, 238, 170, 0.5);
        color: #202020;
    }

    footer {
        width: 100%;
        background-color: #202020;
        color: #FFFFFF;
        align-items: center;
        display: flex;
        flex-direction: column;
        margin: 0;
        padding: 3rem 0; /* 48px 0 */
    }
    
    footer .footer-content {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    footer .footer-content .footer-top {
        width: 100%;
        height: auto; /* 2px */
        margin: 0 0 2rem 0; /* 0 0 32px 0 */
        padding: 0 5%; /* 0 60px */
        display: flex;
        align-items: flex-end;
        gap: 2rem;
    }

    footer .footer-content .footer-top h5 {
        font-size: 1.2rem; /* 24px */
        font-weight: 700;
        margin: 0;
        padding: 0 0 1rem 0; /* 16px 0 */
        width: 30%
    }

    footer .footer-content .footer-top .footer-newsletter {
        width: 90%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    #form-newsletter {
        display: flex;
        align-items: center;
        background-color: #ffffff;
        border-radius: 3rem;
        overflow: hidden;
        width: 60%;
        height: 3rem;
    }

    #email-newsletter {
        width: 85%;
        border: none;
        outline: none;
        background: transparent;
        padding: 0 1.5rem;
        font-size: 1rem;
        color: #333;
        display: flex;
        height: auto;
        line-height: 1rem;
        margin: 0;
    }

    #assinar {
        background-color: #76EEAA; /* Cor verde-claro, similar à imagem */
        color: #000; /* Cor do texto */
        font-weight: 700;
        font-size: 1rem; /* Tamanho da fonte */
        border: none; /* Remove a borda padrão */
        border-radius: 50px; /* Deixa o botão arredondado */
        cursor: pointer; /* Mostra a "mãozinha" ao passar o mouse */
        height: 100%; /* Ocupa toda a altura do form */
        display: flex;
        width: 25%;
    }

    #assinar:hover {
        background-color: #6252EA;
        color: #FFFFFF;
    }

    footer .footer-content .footer-down {
        width: 100%;
        height: auto; /* 2px */
        margin: 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    
    footer .footer-content .creditos {
        width: auto;
        float: left;
        padding: 0 0 0 5%; /* 60px */
        flex-direction: column;
        display: flex;
    }

    footer .footer-content .creditos h6 {
        margin: 0.2rem 0 0 0;
        font-size: 1rem;
        font-weight: 300;
    }

    footer .footer-content .acessos {
        width: auto;
        float: left;
        padding: 0 0 0 5%; /* 60px */
        align-items: flex-start;
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
    }

    footer .footer-content .acessos a {
        color: #FFFFFF;
        font-size: 1rem;
        font-weight: 300;
        margin: 0.2rem 0 0 0; /* 3px 24px 0 0 */
    }
    
    footer .footer-content .redes {
        width: auto;
        padding: 0 3.75rem 0 0; /* 0 60px 0 0 */
        margin: 0;
        align-items: center;
        display: flex;
        justify-content: flex-end;
        gap: 0.5rem; /* 16px */
        flex-direction: column;
        font-size: 2rem;
        text-align: left;
        line-height: 1.8rem;
    }

    footer .footer-content .footer-down .redes h6 {
        margin: 0;
        font-size: 1rem;
        font-weight: 300;
    }

    footer .footer-content .redes-icons {
        display: flex;
        flex-direction: row;
        gap: 1rem; /* 16px */
    }

    .redes a {
        width: 2rem;
        height: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    .redes a img {
        width: 2rem;
        height: 2rem;
    }
}
 
/*desktop*/
@media (min-width: 1025px) {
    ::-webkit-scrollbar {
        width: 0.75rem; /* 12px */
    }
    
    ::-webkit-scrollbar-track {
        background-color: #E0F2F1;
    }
    
    ::-webkit-scrollbar-thumb {
        background-color: #76EEAA;
        border-radius: 0.5rem; /* 8px */
    }
    
    #mensagem-status-home {
        position: fixed;
        bottom: 65%;
        right: 7.5%;
        transform: translateX(-50%);
        padding: 15px 20px;
        border-radius: 1rem;
        font-size: 16px;
        font-weight: bold;
        text-align: center;
        display: none; /* Oculto por padrão */
        z-index: 9999;
        width: 23%;
    }

    body, html {
        font-family: 'Satoshi', sans-serif;
        margin: 0;
        height: 100vh;
        width: 100;
        padding: 0;
        overflow-x: hidden;
        scroll-behavior: smooth;
    }
    
    .container {
        padding:  0 1.25rem 1.25rem 1.25rem; /* 20px */
        margin: 0;
    }
    
    header {
        top: 0; 
        left: 0; 
        width: 100%; 
        margin: 0; /* 10px */
        padding: 0;
        display: flex;
        flex-direction: row;
        border-top: 0;
    }
    
    .header-content {
        display: flex;
        align-items: center;
        height: 4rem; /* 80px */
        width: 87vw;
        justify-content: space-between;
        position: fixed;
        background-color: #fff;
        z-index: 2000;
        margin: 2% 0 0 2%;
        padding: 0 2.5rem; /* 40px */
        border-radius: 3rem;
    }
    
    .logo {
        display: flex;
    }
    
    .logo img {
        height: 1.4rem; /* 30px */
    }
    
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0;
        width: 75%;
    }
    
    nav {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    nav ul {
        list-style: none;
        margin: 0 2.5rem; /* 40px */
        padding: 0;
        display: flex;
        gap: 2.5rem; /* 40px */
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    
    nav ul li {
        font-size: 1.125rem; /* 18px */
        font-weight: 400;
        line-height: 1.51875; /* 24.3px */
        color: #202020;
    }
    
    nav ul li:hover {
        color: #6252EA;
    }

    nav ul li b {
        font-weight: 800;
    }

    .navbar-buttons {
        display: flex;
        gap: 2rem; /* 20px */
        align-items: center;
        justify-content: center;
    }

    .hamb {
        display: none;
    }
    
    .header-content a#nav-login {
        align-items: center;
        padding: 0.1rem; /* 12px */
        border-radius: 1rem; /* 16px */
        width: auto; /* 108px */
        height: auto; /* 47px */
        background-color: #FFFFFF;
        font-size: 1rem; /* 17px */
        font-weight: 400;
        color: #202020;
        justify-content: center;
        text-decoration: none;
    }
    
    .header-content a#nav-login:hover {
        color: #6252EA;
    }
    
    .header-content a#nav-contratar {
        display: flex;
        align-items: center;
        padding: 0.1rem 1rem; /* 12px */
        border-radius: 3rem; /* 16px */
        width: auto; /* 141px */
        height: 2rem; /* 47px */
        border: none;
        background-color: #76EEAA;
        font-size: 1rem; /* 17px */
        font-weight: 400;
        color: #202020;
        justify-content: center;
        text-decoration: none;
    }
    
    .header-content a#nav-contratar:hover {
        background-color: #6252EA;
        color: #FFFFFF;
    }

    main {
        padding: 5rem 0; /* 80px */
    }

    .tistto-prevencao {
        height: auto; /* 710px */
        justify-content: center;
        align-items: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 5%;
        margin: % 0 5% 0;
    }

    .tistto-prevencao .tistto-prevencao-laterais{
        height: auto; /* 710px */
        width: 85%;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 5%;
        flex-direction: row;
    }

    .tistto-prevencao .tistto-prevencao-right {
        width: 80%;
        float: right;
        justify-content: flex-end;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }


    .tistto-prevencao .tistto-prevencao-right h5 {
        font-size: 1rem; /* 70px */
        font-weight: 400;
        line-height: 1rem; /* 80px */
        width: 100%; /* 650px */
        color: #202020;
        margin: 0 0 5% 0;
        text-align: justify;

    }

    .tistto-prevencao .tistto-prevencao-left {
        width: 60%;
        display: flex;
        margin: 0;
        align-items: center; 
        justify-content: center;
        height: auto;
        flex-direction: column;
        position: relative;
    }

    .tistto-prevencao .tistto-prevencao-left h4 {
        font-size: 2.8rem;
        font-weight: 700;
        line-height: 2.5rem;
        width: 100%;
        color: #6252EA;
        margin: 0 0 10% 0;
        text-align: right;
    }

    .tistto-prevencao .tistto-prevencao-left img {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 120%;
        height: auto;
        transform: scaleX(-1);
        position: absolute;
        bottom: -25vh;
        left: -30%;
    }

    .tistto-valores {
        width: 100vw;
        height: auto; /* 692px */
        display: flex;
        flex-direction: column;
        margin: 3% 0 0 0;
        background-color: #202020;
        margin-left: calc(50% - 50vw);
        padding: 0;
    }

    .tistto-valores h3 {
        display: flex;
        font-size: 2.5rem; /* 40px */
        font-weight: 600;
        align-items: center;
        color: #76EEAA;
        justify-content: center;
    }

    .tistto-valores .cards-valores {
        display: flex;
        flex-direction: column;
        gap: 1%; /* 30px */
        width: 85%; /* 1170px */
        height: auto; /* 229.08px */
        justify-content: center;
        align-items: center;
        padding: 0;
        margin: 0;
    }
    
    .tistto-valores .cards-valores #clareza, #liberdade, #agilidade {
        display: flex;
        flex-direction: column;
        width: 40%; /* 370px */
        height: auto; /* 229.08px */
        padding: 2rem 1.5rem; /* 40px 30px */
        align-items: center;
        justify-content: flex-start;
    }

    .cards-valores #liberdade {
        transform: translateY(0%) translateX(75%);
    }

    .cards-valores #clareza {
        transform: translateY(-60%) translateX(-25%);
    }

    .cards-valores #agilidade {
        transform: translateY(-70%) translateX(60%);
    }

    .tistto-valores .cards-valores #clareza h4, #liberdade h4, #agilidade h4 {
        font-size: 1.5rem; /* 40px */
        font-weight: 700;
        align-items: center;
        color: #6252EA;
        justify-content: center;
        margin: 0 0 5% 0;
    }

    .tistto-valores .cards-valores #clareza h6, #liberdade h6, #agilidade h6{
        font-size: 1.3rem; /* 40px */
        font-weight: 300;
        align-items: center;
        color: #fff;
        justify-content: center;
        width: 100%;
        text-align: center;
        margin: 0;
        letter-spacing: 0.06rem;
    }

    .wrapper-1 {
        position: relative;
    }
    
    .blob1#blob1-parc {
        display: flex;
        position: absolute;
        width: 10%;
        z-index: 1000;
        top: -115%;
        left: -30%;
    }

    .blob1#blob1-parc img{
        rotate: 180deg;
    }

    .tistto-parceiros {
        justify-content: center;
        align-items: center;
        width: 100%;
        display: flex;
        height: auto;
        flex-direction: column;
        margin: 1% 0;
    }

    .tistto-parceiros h3 {
        font-size: 2.5rem; /* 40px */
        font-weight: 700;
        align-items: center;
        color: #6252EA;
        justify-content: center;
    }

    .tistto-parceiros .tistto-parceiros-grid {
        width: 85%;
        align-items: center;
        color: #191A15;
        justify-content: center;
        display: flex;
        margin: 5%;
        flex-direction: row;
    }

    .tistto-parceiros .tistto-parceiros-grid img {
        width: 20%;
        align-items: center;
        color: #191A15;
        display: flex;
        margin: 2%;
    }

    .cuide-marca {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 3% 0 0 0;
    }

    .cuide-marca-square {
        width: 90%; /* 1178px */
        height: auto; /* 398px */
        background-image: linear-gradient(to right, #76EEAA, #6252EA);
        border-radius: 1.25rem; /* 20px */
        margin: 0;
        padding: 3rem 1rem;
        display: flex;
        align-items: center;
        justify-content: space-around;
        gap: 3%;
    }

    .cuide-marca-square h4 {
        font-size: 3rem; /* 40px */
        font-weight: 700;
        align-items: center;
        color: #202020;
        justify-content: center;
        width: 50%;
        text-align: left;
        margin: 0;
    }

    .cuide-marca-square button#demo-cm {
        background-color: #76EEAA;
        padding: 0 2rem; /* 12px 32px */
        height: 3.5rem; /* 56px */
        border-radius: 3rem; /* 16px */
        border: none;
        width: 25rem; /* 177px */
        color: #202020;
        align-items: center;
        font-weight: 700;
        font-size: 1rem; /* 17px */
        line-height: 1.1rem; /* 22.95px */
        justify-content: center;
        display: inline-flex;
        gap: 0.75rem; /* 12px */
        text-transform: uppercase;
        margin: 0;
    }

    .cuide-marca-square button#demo-cm:hover {
        background-color: rgba(118, 238, 170, 0.5);
        color: #202020;
    }

    footer {
        width: 100%;
        background-color: #202020;
        color: #FFFFFF;
        align-items: center;
        display: flex;
        flex-direction: column;
        margin: 0;
        padding: 3rem 0; /* 48px 0 */
    }
    
    footer .footer-content {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    footer .footer-content .footer-top {
        width: 100%;
        height: auto; /* 2px */
        margin: 0 0 2rem 0; /* 0 0 32px 0 */
        padding: 0 5%; /* 0 60px */
        display: flex;
        align-items: flex-end;
        gap: 2rem;
    }

    footer .footer-content .footer-top h5 {
        font-size: 1.2rem; /* 24px */
        font-weight: 700;
        margin: 0;
        padding: 0 0 1rem 0; /* 16px 0 */
        width: 30%
    }

    footer .footer-content .footer-top .footer-newsletter {
        width: 90%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    #form-newsletter {
        display: flex;
        align-items: center;
        background-color: #ffffff;
        border-radius: 3rem;
        overflow: hidden;
        width: 60%;
        height: 3rem;
    }

    #email-newsletter {
        width: 85%;
        border: none;
        outline: none;
        background: transparent;
        padding: 0 1.5rem;
        font-size: 1rem;
        color: #333;
        display: flex;
        height: auto;
        line-height: 1rem;
        margin: 0;
    }

    #assinar {
        background-color: #76EEAA; /* Cor verde-claro, similar à imagem */
        color: #000; /* Cor do texto */
        font-weight: 700;
        font-size: 1rem; /* Tamanho da fonte */
        border: none; /* Remove a borda padrão */
        border-radius: 50px; /* Deixa o botão arredondado */
        cursor: pointer; /* Mostra a "mãozinha" ao passar o mouse */
        height: 100%; /* Ocupa toda a altura do form */
        display: flex;
        width: 15%;
    }

    #assinar:hover {
        background-color: #6252EA;
        color: #FFFFFF;
    }

    footer .footer-content .footer-down {
        width: 100%;
        height: auto; /* 2px */
        margin: 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    
    footer .footer-content .creditos {
        width: auto;
        float: left;
        padding: 0 0 0 5%; /* 60px */
        flex-direction: column;
        display: flex;
    }

    footer .footer-content .creditos h6 {
        margin: 0.2rem 0 0 0;
        font-size: 1rem;
        font-weight: 300;
    }

    footer .footer-content .acessos {
        width: auto;
        float: left;
        padding: 0 0 0 5%; /* 60px */
        align-items: flex-start;
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
    }

    footer .footer-content .acessos a {
        color: #FFFFFF;
        font-size: 1rem;
        font-weight: 300;
        margin: 0.2rem 0 0 0; /* 3px 24px 0 0 */
    }
    
    footer .footer-content .redes {
        width: auto;
        padding: 0 3.75rem 0 0; /* 0 60px 0 0 */
        margin: 0;
        align-items: center;
        display: flex;
        justify-content: flex-end;
        gap: 0.5rem; /* 16px */
        flex-direction: column;
        text-align: left;
        line-height: 1.8rem;
    }

    footer .footer-content .footer-down .redes h6 {
        margin: 0;
        font-size: 1rem;
        font-weight: 300;
    }

    footer .footer-content .redes-icons {
        display: flex;
        flex-direction: row;
        gap: 1rem; /* 16px */
    }

    .redes a {
        width: 2rem;
        height: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    .redes a img {
        width: 2rem;
        height: 2rem;
    }
}