@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-02);
    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-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    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%;
}

.sidebar-header {
    background: linear-gradient(135deg, var(--main-color) 0%, #66beea 100%);
    padding: 50px 25px 35px;
    text-align: center;
    position: relative;
    border-radius: 0;
}

.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%;
}

.sidebar-main {
    background-color: var(--bg-color-01);
    flex: 1;
    padding: 25px 20px 30px;
}

.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;
}

.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-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;
}

.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);
}

.sobre-container {
    margin-top: 70px;
    padding: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.sobre-content {
    background: rgba(17, 17, 17, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(19, 125, 154, 0.2);
    padding: 20px 15px;
}

.sobre-title {
    font-size: 1.6rem;
    color: var(--accent-color);
    margin-bottom: 1.2rem;
    text-align: center;
    font-weight: 700;
    line-height: 1.3;
}

.sobre-section {
    margin-bottom: 1.5rem;
}

.sobre-section h2 {
    font-size: 1.1rem;
    color: var(--main-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
    border-bottom: 2px solid var(--main-color-little-opacity);
    padding-bottom: 6px;
}

.sobre-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    text-align: justify;
}

.sobre-section p strong {
    color: var(--text-primary);
    font-weight: 600;
}

.version-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--main-color) 0%, var(--main-color-clearer) 100%);
    color: var(--text-primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 4px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 1rem 0;
}

.info-item {
    background: rgba(19, 125, 154, 0.1);
    padding: 12px;
    border-radius: 8px;
    border-left: 3px solid var(--main-color);
}

.info-item strong {
    color: var(--main-color-clearer);
    display: block;
    margin-bottom: 4px;
    font-size: 0.85rem;
}

.info-item span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(19, 125, 154, 0.15) 0%, rgba(19, 125, 154, 0.05) 100%);
    border: 1px solid var(--main-color-little-opacity);
    border-radius: 10px;
    padding: 15px;
    margin: 1rem 0;
}

.highlight-box p {
    margin-bottom: 0.5rem;
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

.service-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.service-list li {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.8rem;
    font-size: 0.9rem;
}

.service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--main-color);
    border-radius: 50%;
}

.sobre-footer-content {
    margin-top: 2rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border-header);
    text-align: center;
}

.sobre-footer-content p {
    color: var(--text-color-3);
    font-size: 0.85rem;
}

.sobre-footer-content p strong {
    color: var(--text-primary);
}

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) {
    .sobre-content {
        padding: 22px 18px;
    }
    
    .sobre-title {
        font-size: 1.7rem;
    }

    .footer-container-2{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 15px;
    }
}

@media screen and (min-width: 480px) {
    html {
        font-size: 15px;
    }
    
    .sobre-container {
        padding: 20px;
    }
    
    .sobre-content {
        padding: 28px 22px;
    }
    
    .sobre-title {
        font-size: 1.9rem;
        margin-bottom: 1.4rem;
    }
    
    .sobre-section h2 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .sobre-section p,
    .service-list li {
        font-size: 0.95rem;
        line-height: 1.75;
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 600px) {
    .sobre-container {
        padding: 25px;
    }
    
    .sobre-content {
        padding: 35px 28px;
    }
    
    .sobre-title {
        font-size: 2.1rem;
    }
    
    .sobre-section {
        margin-bottom: 1.8rem;
    }

    .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;
    }
    
    .sobre-container {
        margin-top: 90px;
        padding: 30px;
    }
    
    .sobre-content {
        padding: 40px 35px;
    }
    
    .sobre-title {
        font-size: 2.2rem;
        margin-bottom: 1.6rem;
    }
    
    .sobre-section h2 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
        padding-bottom: 8px;
    }
    
    .sobre-section p,
    .service-list li {
        font-size: 0.98rem;
        line-height: 1.8;
    }
    
    .sobre-section {
        margin-bottom: 2rem;
    }
    
    .sobre-footer-content {
        margin-top: 2.5rem;
        padding-top: 1.5rem;
    }
    
    .sobre-footer-content p {
        font-size: 0.9rem;
    }

    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;
    }
    
    .container {
        max-width: 960px;
        padding: 0 40px;
    }
    
    .sobre-container {
        margin-top: 100px;
        padding: 40px;
    }
    
    .sobre-content {
        padding: 45px 40px;
    }
    
    .sobre-title {
        font-size: 2.4rem;
        margin-bottom: 1.8rem;
    }
    
    .sobre-section h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .sobre-section p,
    .service-list li {
        font-size: 1rem;
        line-height: 1.85;
    }
    
    .sobre-footer-content {
        margin-top: 3rem;
    }

    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;
    }

    .logo img {
        width: 170px;
    }

    .logo img:hover {
        transform: scale(1.1);
    }

    .nav {
        gap: 18px;
    }
    
    .nav a {
        font-size: 17px;
    }

    .nav-desktop{
        gap: 30px;
    }
    
    .nav-desktop a{
        font-size: 17px;
    }
    
    .sobre-container {
        max-width: 1000px;
        padding: 50px;
    }
    
    .sobre-content {
        padding: 50px 45px;
    }
    
    .sobre-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .sobre-section h2 {
        font-size: 1.4rem;
    }
    
    .sobre-section p,
    .service-list li {
        font-size: 1.05rem;
        line-height: 1.9;
    }

    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;
    }
}


    body.modo-pwa footer,
    body.modo-pwa #contato,
    body.modo-pwa .footer-3,
    body.modo-pwa .rodape {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
    }
    
    body.modo-pwa {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }