@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --main-color:#137d9a;
    --main-color-clearer:#379cb8;
    --main-color-little-opacity:#137d9a37;
    --main-color-little-opacity02:#137d9a23;
    --main-color-little-opacity03:#137d9a37;
    --bg-color-01: #111111;
    --bg-color-02: #0B0B0B;
    --accent-color: #00D4FF;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --card-hover: rgba(0, 212, 255, 0.1);
    --text-color-1:#ffffff;
    --text-color-2:#d0d0d0;
    --text-color-3:#9c9b9b;
    --text-color-4:#afafafef;
    --text-color-5:#323232;
    --text-color-6:#afafafef;
    --text-color-7:#8c8b8b;
    --text-color-8:#000000;
    --bg-color-header:#060606;
    --bg-color-03:#afafaf24;
    --bg-color-04:#8c8b8b;
    --bg-input:#92919124;
    --border-header:#2c2e32;
    --border-news: #cccccc;
    --section-padding: 60px;
    --section-title-margin: 2rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
}

html{
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    scroll-behavior: smooth;
}

body{
    background-color: var(--bg-color-01);
    color: var(--text-color-1);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: var(--bg-color-01);
}

body::-webkit-scrollbar-thumb {
    background: var(--text-color-4);
    border-radius: 4px;
}

body::-webkit-scrollbar-thumb:hover {
    background: var(--main-color);
}

.container {
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 65px;
    padding: 0 10px 0 10px;
    background-color: var(--bg-color-header);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid var(--border-header);
}

.logo{
    margin-right: auto;
}

.logo img{
    width: 140px;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.nav{
    display: none;
}

.nav-desktop{
    display: none;
}

.img-logo{
    display: none;
}

.menu-mobile{
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.bar1, .bar2, .bar3{
    width: 26px;
    height: 3px;
    background-color: var(--text-color-1);
    margin: 5px 0;
    transition: 0.3s ease;
    border-radius: 2px;
}

.change .bar1{
    transform: translate(0, 8px) rotate(-45deg);
}

.change .bar2{
    opacity: 0;
}

.change .bar3{
    transform: translate(0, -8px) rotate(45deg);
}

/* ===== SIDEBAR MODERNO - EXATAMENTE COMO A IMAGEM ===== */

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sidebar-overlay.show {
    opacity: 1;
    visibility: visible;
}

.nav-responsive {
    position: fixed;
    top: 0;
    left: -100%;
    width: 90%;
    max-width: 420px;
    height: 100vh;
    background-color: #2d3748;
    border-right: none;
    padding: 0;
    transform: translateX(0);
    transition: left 0.4s ease-in-out;
    z-index: 2000;
    overflow-y: auto;
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.5);
}

.nav-responsive.show {
    left: 0;
}

.sidebar-content {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* === HEADER DO SIDEBAR === */
.sidebar-header {
    background: linear-gradient(135deg, var(--main-color) 0%, #66beea 100%);
    padding: 50px 25px 35px;
    text-align: center;
    position: relative;
    border-radius: 0;
}

.close-sidebar {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.close-sidebar:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}

.close-sidebar i {
    font-size: 24px;
    color: #ffffff;
}

.company-logo {
    width: 75%;
    height: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.company-logo i {
    font-size: 45px;
    color: #ffffff;
}

.company-logo img {
    width: 95%;
    height: auto;
    object-fit: contain;
}

.company-info h2 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.company-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin: 0;
    margin-bottom: 15%;
}

/* === DIVISOR ENTRE HEADER E CONTEÚDO === */
.divisor-header {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    margin: 0;
}

/* === ÁREA PRINCIPAL DO SIDEBAR === */
.sidebar-main {
    background-color: var(--bg-color-01);
    flex: 1;
    padding: 25px 20px 30px;
}

/* === BOTÃO COMEÇAR === */
/* === CONTAINER DO BOTÃO COMEÇAR COM FUNDO COMPLETO === */
.comece-container {
    background: #5d5c5c24;
    padding: 25px 20px;
    margin: -25px -20px 30px -20px; 
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comece {
    margin-bottom: 0;
}

.comece p {
    font-size: 13px;
    color: var(--text-color-1);
    text-align: center;
    margin-bottom: 15px;
    font-weight: 400;
}

.comece a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 52px;
    background: var(--main-color);
    border-radius: 12px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(19, 125, 154, 0.3);
}

.comece a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(19, 125, 154, 0.5);
}

.comece a i {
    font-size: 20px;
}

.nav-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 8px;
    width: 100%;
    background-color: transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    cursor: pointer;
    border: none;
}

.nav-container:hover {
    background-color: var(--text-color-2);
}

.nav-container:active {
    transform: scale(0.98);
}

.icon-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--text-color-4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
}

.icon-nav i {
    font-size: 20px;
    color: var(--text-color-5);
}

.nav-texto {
    flex: 1;
}

.nav-texto p {
    color: var(--text-color-1);
    font-size: 14px;
    font-weight: 400;
    transition: 0.3s;
    margin: 0;
}

.arrow-sidebar i {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.nav-container:hover .arrow-sidebar i {
    color: rgba(255, 255, 255, 0.7);
    transform: translateX(3px);
}

.nav-responsive a {
    text-decoration: none;
    color: inherit;
}

/* === DIVISORES === */
.divisor-nav-up,
.divisor-nav-down {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 10px 0;
}

.espaco{
    margin-top: 30px;
}

/* === REDES SOCIAIS === */
.redes-sociais-nav {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.social-icon i {
    font-size: 24px;
    color: #ffffff;
}

.social-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

/* === SCROLLBAR CUSTOMIZADA === */
.nav-responsive::-webkit-scrollbar {
    width: 6px;
}

.nav-responsive::-webkit-scrollbar-track {
    background: transparent;
}

.nav-responsive::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.nav-responsive::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider{
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
    margin-top: 65px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.slider::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/business-infographics-hologram-made-by-man.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(3.5px);
    z-index: -1;
}

.slide-container{
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.slide-texto h3{
    font-size: 7vw;
    line-height: 1.2;
    margin-bottom: 15px;
}

.slide-texto p{
    color: var(--text-color-2);
    font-size: 14px;
    line-height: 1.5;
    padding: 0 10px;
}

.botoes{
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 280px;
    margin: 20px auto;
}

.teste-gratis{
    width: 100%;
    height: 50px;
    font-weight: 500;
    text-align: center;
    background-color: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 7px;
    cursor: pointer;
    color: var(--text-color-1);
    box-shadow: 1px 0 3px var(--main-color);
    transition: all 0.3s ease;
}

.teste-gratis:active{
    transform: scale(0.98);
}

.planos{
    width: 100%;
    height: 50px;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    border: 1px solid var(--text-color-1);
    color: var(--text-color-1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.planos i{
    font-size: 16px;
}

.planos:active{
    transform: scale(0.98);
}

.redes-sociais{
    display: flex;
    gap: 17px;
    justify-content: center;
    margin-top: 20px;
}

.redes-sociais img{
    width: 18px;
    height: auto;
    transition: transform 0.3s ease;
}

.redes-sociais img:active{
    transform: translateY(-4px);
}

.slide-container2{
    width: 100%;
    max-width: 350px;
    margin: 30px auto 0;
}

.acesso{
    width: 100%;
    background-color: var(--text-color-1);
    border-radius: 30px;
    box-shadow: 1.5px 2px 12px var(--main-color);
    padding: 25px 20px;
}

.acesso h3{
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    color: var(--text-color-5);
    margin-bottom: 18px;
}

.acesso input{
    width: 100%;
    height: 45px;
    font-size: 13px;
    color: var(--text-color-4);
    padding: 10px 11px;
    background-color: var(--bg-input);
    border: none;
    border-bottom: 1px solid var(--main-color);
    outline: none;
    transition: border-bottom 0.1s ease-out;
    margin-bottom: 20px;
}

.acesso input:focus {
    border-bottom: 2px solid var(--main-color);
    background-color: var(--main-color-little-opacity);
}

.acesso input::placeholder{
    color: var(--text-color-6);
    transition: transform 0.3s ease-in-out, font-size 0.3s ease-in-out;
}

.acesso input:focus::placeholder,
.acesso input:not(:placeholder-shown)::placeholder{
    transform: translateY(-10px);
    font-size: 12px;
    color: var(--main-color);
}

.acesso input:hover{
    background-color: var(--main-color-little-opacity02);
}

input:focus {
    color: var(--text-color-8);
}

.btn-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 45px;
    border-radius: 20px;
    background-color: var(--bg-color-03);
    color: var(--text-color-6);
    cursor: not-allowed;
    font-size: 14px;
    border: none;
    margin-bottom: 10px;
}

.btn-1.active{
    background-color: var(--main-color);
    color: var(--text-color-1);
    cursor: pointer;
}

.btn-1.active:hover{
    background-color: var(--main-color-clearer);
    transition: 0.5s;
}

.btn-2{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 45px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
}

.btn-2 a{
    color: var(--main-color);
}

.btn-2:hover{
    background-color: var(--main-color-little-opacity);
    transition: 0.5s;
}

.services{
    width: 100%;
    background-color: var(--bg-color-02);
    padding: var(--section-padding) 20px;
}

.services h2{
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: var(--section-title-margin);
    line-height: 1.3;
}

.services-container{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.services-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: solid 0.15rem var(--main-color);
    background-color: var(--bg-color-01);
    transition: 0.3s ease;
    min-height: 280px;
}

.services-box:active{
    transform: scale(0.98);
}

.services-box img{
    width: 50px;
    height: auto;
    margin-bottom: 15px;
}

.services-box h3{
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.services-box .description{
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-color-2);
}

.renda{
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: var(--bg-color-01);
    padding: var(--section-padding) 20px;
}

.renda-container {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.renda-container h3{
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.renda-container p{
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color-2);
}

.renda-wrapper{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.renda-container-2{
    display: flex;
    flex-direction: column;
}

.renda-box{
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    border-radius: 12px;
    border: solid 0.15rem var(--main-color);
    background-color: var(--bg-color-02);
    transition: 0.3s ease;
    cursor: pointer;
}

.renda-box:active{
    transform: scale(0.98);
}

.renda-box h3{
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.content{
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.description{
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-color-2);
}

.arrow{
    font-size: 22px;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-color-04);
    cursor: pointer;
    transition: all 0.3s ease;
}

.arrow a{
    color: var(--text-color-1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow:active{
    transform: scale(0.95);
}

.produto {
    width: 100%;
    background-color: var(--bg-color-02);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--section-padding) 20px;
    text-align: center;
}

.description-produto{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.description-produto img{
    width: 80px;
    height: auto;
    margin-bottom: 20px;
}

.description-produto p{
    color: var(--text-color-2);
    font-size: 13px;
    font-style: oblique;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.description-produto h2{
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 20px;
}

.produto-p p{
    color: var(--text-color-2);
    font-size: 14px;
    font-style: oblique;
    margin-bottom: 25px;
}

.btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 50px;
    border-radius: 20px;
    background-color: var(--main-color);
    color: var(--text-color-1);
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:active{
    transform: scale(0.98);
}

footer{
    width: 100%;
    background-color: var(--bg-color-header);
    padding: 40px 20px 20px;
    display: flex;
    flex-direction: column;
}

.footer-container{
    width: 100%;
    margin-bottom: 30px;
}

.sobre-footer{
    width: 100%;
}

.logo-footer img{
    width: 180px;
    margin-bottom: 15px;
    margin-left: -8px;
    transition: transform 0.3s ease-in-out;
}

.logo-footer img:hover{
    transform: scale(1.1);
}

.sobre-footer p{
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-color-2);
    margin-bottom: 20px;
}

.redes-sociais-footer{
    display: flex;
    gap: 12px;
}

.redes-sociais-footer img{
    width: 14px;
    height: auto;
    transition: transform 0.3s ease;
}

.redes-sociais-footer img:active{
    transform: translateY(-5px);
}

.footer-container-2{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.nav-footer, .plataforma, .suporte, .contato{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-footer h3, .plataforma h3, .suporte h3, .contato h3{
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 5px;
}

.nav-footer a, .plataforma a, .suporte a{
    color: var(--text-color-3);
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-footer a:hover, .plataforma a:hover, .suporte a:hover{
    color: var(--main-color);
}

.contato .info{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}

.contato i{
    font-size: 20px;
    color: var(--main-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.contato p, .contato a{
    color: var(--text-color-3);
    font-size: 13px;
    line-height: 1.5;
}

.contato a:hover{
    text-decoration: underline;
}

.footer-3{
    width: 100%;
    background-color: var(--bg-color-02);
    padding: 20px;
    text-align: center;
}

.footer-3 p{
    font-size: 12px;
    color: var(--text-color-3);
    line-height: 1.5;
}

@media screen and (min-width: 360px) {
    .slide-texto h3{
        font-size: 6.5vw;
    }
    .botoes{
        max-width: 300px;
    }
    .footer-container-2{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 15px;
    }

    .description-produto h2{
        font-size: 1.5rem;
        max-width: 300px;
        margin-top: 10px;
    }
}

@media screen and (min-width: 480px) {
    html {
        font-size: 15px;
    }
    .slide-texto h3{
        font-size: 6vw;
    }
    .services h2{
        font-size: 2rem;
    }
    .renda-container h3{
        font-size: 2rem;
    }

    .description-produto h2{
        font-size: 1.5rem;
        max-width: 400px;
        margin-top: 10px;
    }
}

@media screen and (min-width: 600px) {
    .slider{
        min-height: 550px;
    }

    .description-produto h2{
        font-size: 1.8rem;
        max-width: 700px;
    }
    .slide-container{
        max-width: 700px;
        margin-bottom: 30px;
    }
    .slide-texto h3{
        font-size: 5vw;
    }
    .slide-texto p{
        font-size: 16px;
        padding: 0 20px;
    }
    .botoes{
        flex-direction: row;
        max-width: 100%;
        justify-content: center;
        gap: 15px;
        margin: 25px auto;
    }
    .teste-gratis, .planos{
        width: 200px;
    }
    .redes-sociais{
        display: none;
    }
    .slide-container2{
        max-width: 450px;
    }
    .acesso{
        padding: 35px 30px;
        border-radius: 25px;
    }
    .acesso h3{
        font-size: 18px;
        margin-bottom: 25px;
    }
    .acesso input{
        height: 50px;
        font-size: 14px;
        border-radius: 8px;
        padding: 15px;
    }
    .btn-1{
        height: 50px;
        font-size: 15px;
    }
    .btn-2{
        height: 50px;
        font-size: 15px;
    }
    .footer-container-2{
        flex-direction: row;
        gap: 20px;
        justify-content: space-between;
    }
    .nav-footer, .plataforma, .suporte, .contato{
        flex: 1;
    }
}

@media screen and (min-width: 700px) {
    html {
        font-size: 16px;
    }
    header {
        height: 70px;
        padding: 0 1.5%;
    }
    .logo img {
        width: 160px;
    }
    .slider{
        min-height: 500px;
        padding: 60px 40px;
        gap: 40px;
    }
    .slide-texto h3{
        font-size: 2.5rem;
    }
    .slide-texto p{
        font-size: 16px;
        padding: 0;
    }
    .botoes{
        flex-direction: row;
        gap: 15px;
    }
    .services{
        padding: 70px 40px;
    }
    .services h2{
        font-size: 2.2rem;
    }
    .services-container{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .services-box:nth-child(3){
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
    .renda{
        padding: 70px 40px;
    }
    .renda-wrapper{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .renda-box:nth-child(5){
        grid-column: 1 / -1;
        max-width: 600px;
        margin: 0 auto;
    }
    .produto{
        padding: 70px 40px;
    }
    .description-produto img{
        width: 100px;
    }
    .description-produto h2{
        font-size: 1.8rem;
        max-width: 700px;
    }
    footer{
        padding: 50px 40px 30px;
    }
    .footer-container{
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .sobre-footer{
        width: 100%;
    }
    .logo-footer img{
        width: 200px;
    }
    .footer-container-2{
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: nowrap;
    }
    .footer-container-2 > div{
        flex: 1;
        min-width: 0;
    }
}

@media screen and (min-width: 1024px) {
    .logo img:hover{
        transform: scale(1.1);
    }
    .nav{
        display: flex;
        align-items: center;
        gap: 15px;
    }
    .nav a{
        position: relative;
        font-size: 16px;
        color: var(--text-color-1);
        padding: 5px 0;
        transition: color 0.4s;
    }
    .nav a:not(.img-logo a):hover{
        color: var(--main-color);
    }
    .nav a:not(.img-logo a)::after{
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 2.5px;
        background-color: var(--main-color);
        transition: width 0.4s ease-in-out;
    }
    .nav a:not(.img-logo a):hover::after{
        width: 100%;
    }
    .img-logo{
        display: block;
    }
    .img-logo a i{
        font-size: 28px;
    }
    .nav-desktop{
        display: flex;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        gap: 25px;
    }
    .nav-desktop a{
        position: relative;
        font-size: 16px;
        color: var(--text-color-1);
        padding: 5px 0;
        transition: color 0.4s;
    }
    .nav-desktop a:hover{
        color: var(--main-color);
    }
    .nav-desktop a::after{
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2.5px;
        background-color: var(--main-color);
        transform: scaleX(0);
        transition: transform 0.4s ease-in-out;
    }
    .nav-desktop a:hover::after{
        transform: scaleX(1);
    }
    .menu-mobile {
        display: none;
    }
    .slider{
        margin-top: 70px;
        min-height: 470px;
        max-height: 520px;
        padding: 40px 4%;
        flex-direction: row;
        justify-content: space-between;
        gap: 5%;
    }
    .slide-container{
        width: 52%;
        text-align: left;
        margin-top: 40px;
    }
    .slide-texto h3{
        font-size: 2rem;
        margin-bottom: 12px;
    }
    .slide-texto p{
        font-size: 14px;
        margin-bottom: 18px;
    }
    .botoes{
        justify-content: flex-start;
        gap: 12px;
        margin-bottom: 18px;
    }
    .teste-gratis, .planos{
        width: 185px;
        height: 48px;
        font-size: 14px;
    }
    .planos i{
        font-size: 15px;
    }
    .teste-gratis:hover{
        transform: scale(1.05);
        box-shadow: 0 0 12px var(--main-color);
    }
    .planos:hover{
        transform: scale(1.05);
        box-shadow: 0 0 12px var(--main-color);
        background-color: var(--main-color);
        border-color: var(--main-color);
    }
    .redes-sociais{
        justify-content: flex-start;
        margin-top: 12px;
    }
    .redes-sociais img:hover{
        transform: translateY(-4px);
    }
    .slide-container2{
        width: 38%;
        max-width: 340px;
        margin: 40px 0 0 0;
    }
    .acesso{
        padding: 28px 22px;
    }
    .acesso h3{
        font-size: 17px;
        margin-bottom: 16px;
    }
    .acesso input{
        height: 42px;
        font-size: 13px;
        margin-bottom: 16px;
    }
    .btn-1{
        height: 42px;
        font-size: 14px;
        margin-bottom: 8px;
    }
    .btn-2{
        height: 42px;
        font-size: 13px;
    }
    .services{
        padding: 80px 4%;
    }
    .services-container{
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    .services-box:nth-child(3){
        grid-column: auto;
        max-width: none;
    }
    .services-box:hover{
        border-color: var(--main-color);
        box-shadow: 0 0 10px var(--main-color);
        transform: scale(1.05);
    }
    .renda{
        padding: 80px 60px;
        flex-direction: row;
        gap: 60px;
    }
    .renda-container{
        width: 42%;
        text-align: left;
        margin-bottom: 0;
    }
    .renda-container h3{
        font-size: 2.2rem;
    }
    .renda-container p{
        font-size: 1.1rem;
    }
    .renda-wrapper{
        width: 52%;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    .renda-box{
        width: 100%;
    }
    .renda-box:nth-child(5){
        grid-column: auto;
        max-width: none;
    }
    .renda-box:hover{
        border-color: var(--main-color);
        box-shadow: 0 0 11px var(--main-color);
    }
    .arrow:hover{
        background-color: var(--text-color-2);
        transform: scale(1.13);
    }
    .arrow a:hover{
        color: var(--bg-color-04);
    }
    .produto{
        padding: 80px 60px;
    }
    .description-produto h2{
        font-size: 2rem;
        max-width: 800px;
    }
    .btn:hover{
        transform: scale(1.05);
        box-shadow: 0 0 9px var(--main-color);
    }
    footer{
        padding: 60px 60px 40px;
    }
    .footer-container{
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    .sobre-footer{
        width: 35%;
    }
    .logo-footer img{
        width: 220px;
        margin-left: -12px;
    }
    .redes-sociais-footer{
        gap: 10px;
    }
    .redes-sociais-footer img{
        width: 13px;
    }
    .redes-sociais-footer img:hover{
        transform: translateY(-5px);
    }
    .footer-container-2{
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 35px;
        flex-wrap: nowrap;
    }
    .footer-container-2 > div{
        flex: 1;
        min-width: 0;
    }
    .nav-footer, .plataforma, .suporte, .contato{
        padding-right: 15px;
    }
}

@media screen and (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    header{
        padding: 0 1.5%;
    }
    .logo img {
        width: 170px;
    }
    .nav{
        gap: 18px;
    }
    .nav a{
        font-size: 17px;
    }
    .nav-desktop{
        gap: 30px;
    }
    .nav-desktop a{
        font-size: 17px;
    }
    .slider{
        padding: 50px 5%;
        gap: 6%;
    }
    .slide-container{
        width: 50%;
    }
    .slide-texto h3{
        font-size: 2.6rem;
        margin-bottom: 15px;
    }
    .slide-texto p{
        font-size: 16px;
        margin-bottom: 25px;
    }
    .botoes{
        gap: 18px;
        margin-bottom: 22px;
    }
    .teste-gratis, .planos{
        width: 215px;
        height: 52px;
        font-size: 15px;
    }
    .planos i{
        font-size: 17px;
    }
    .redes-sociais{
        margin-top: 18px;
    }
    .slide-container2{
        width: 40%;
        max-width: 400px;
    }
    .services{
        padding: 100px 80px;
    }
    .services h2{
        font-size: 2.5rem;
    }
    .services-container{
        gap: 35px;
    }
    .services-box{
        padding: 2rem 1.5rem;
    }
    .services-box img{
        width: 60px;
    }
    .services-box h3{
        font-size: 1.5rem;
    }
    .services-box .description{
        font-size: 1rem;
    }
    .renda{
        padding: 100px 80px;
    }
    .renda-container h3{
        font-size: 2.5rem;
    }
    .renda-container p{
        font-size: 1.15rem;
    }
    .renda-box{
        padding: 2rem 1.5rem;
    }
    .renda-box h3{
        font-size: 1.6rem;
    }
    .content{
        gap: 20px;
    }
    .description{
        font-size: 1rem;
    }
    .produto{
        padding: 100px 80px;
    }
    .description-produto img{
        width: 120px;
    }
    .description-produto p{
        font-size: 15px;
    }
    .description-produto h2{
        font-size: 2.3rem;
        max-width: 900px;
    }
    .produto-p p{
        font-size: 16px;
    }
    .btn{
        width: 220px;
        height: 55px;
        font-size: 17px;
    }
    footer{
        padding: 70px 80px 50px;
    }
    .footer-container{
        gap: 40px;
    }
    .sobre-footer{
        width: 30%;
    }
    .logo-footer img{
        width: 240px;
        margin-left: -12px;
    }
    .redes-sociais-footer img{
        width: 15px;
    }
    .sobre-footer p{
        font-size: 14px;
    }
    .footer-container-2{
        width: 100%;
        gap: 40px;
    }
    .nav-footer, .plataforma, .suporte, .contato{
        padding-right: 20px;
    }
    .nav-footer h3, .plataforma h3, .suporte h3, .contato h3{
        font-size: 18px;
    }
    .nav-footer a, .plataforma a, .suporte a{
        font-size: 15px;
    }
    .contato p, .contato a{
        font-size: 14px;
    }
    .footer-3 p{
        font-size: 13px;
    }
}

@media screen and (min-width: 1440px) {
    .container {
        max-width: 1320px;
    }
    header{
        padding: 0 1.5%;
    }
    .logo img {
        width: 180px;
    }
    .slider{
        padding: 60px 6%;
        max-height: 550px;
    }
    .slide-container{
        width: 52%;
    }
    .slide-texto h3{
        font-size: 3rem;
        margin-bottom: 18px;
    }
    .slide-texto p{
        font-size: 17px;
        margin-bottom: 28px;
    }
    .botoes{
        gap: 20px;
        margin-bottom: 25px;
    }
    .teste-gratis, .planos{
        width: 220px;
        height: 54px;
        font-size: 16px;
    }
    .slide-container2{
        width: 38%;
        max-width: 420px;
    }
    .acesso{
        padding: 40px 30px;
    }
    .acesso h3{
        font-size: 19px;
    }
    .services{
        padding: 120px 100px;
    }
    .renda{
        padding: 120px 100px;
    }
    .produto{
        padding: 120px 100px;
    }
    footer{
        padding: 80px 100px 60px;
    }
    .footer-container{
        gap: 50px;
    }
    .sobre-footer{
        width: 28%;
    }
    .redes-sociais-footer img{
        width: 16px;
    }
    .footer-container-2{
        width: 100%;
        gap: 45px;
    }
    .nav-footer, .plataforma, .suporte, .contato{
        padding-right: 25px;
    }
}