@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 (IDÊNTICO AO HOME) ===== */
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 (IDÊNTICO AO HOME) ===== */

.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;
}

/* === 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);
}

/* ===== HERO SECTION ===== */
.hero-download{
    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;
    text-align: center;
}

.hero-download::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-color-01) 0%, var(--bg-color-02) 100%);
    z-index: -1;
}

.hero-content{
    max-width: 900px;
}

.hero-content h1{
    font-size: 7vw;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-content p{
    color: var(--text-color-2);
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.5;
    padding: 0 10px;
}

.version-badge{
    display: inline-block;
    background-color: var(--main-color-little-opacity);
    color: var(--main-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 30px;
}

.download-buttons{
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.download-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 60px;
    background-color: var(--bg-color-02);
    border: 2px solid var(--main-color);
    border-radius: 12px;
    color: var(--text-color-1);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.download-btn i{
    font-size: 28px;
}

.download-btn:active{
    transform: translateY(-3px);
}

.btn-info{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-info span{
    font-size: 12px;
    color: var(--text-color-3);
    font-weight: 400;
}

/* ===== RECURSOS SECTION ===== */
.recursos{
    width: 100%;
    background-color: var(--bg-color-02);
    padding: var(--section-padding) 20px;
}

.recursos h2{
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: var(--section-title-margin);
    line-height: 1.3;
}

.recursos-grid{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recurso-card{
    background-color: var(--bg-color-01);
    border: 2px solid var(--main-color);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.recurso-card:active{
    transform: translateY(-5px);
}

.recurso-card i{
    font-size: 45px;
    color: var(--main-color);
    margin-bottom: 15px;
}

.recurso-card h3{
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.recurso-card p{
    color: var(--text-color-2);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== REQUISITOS SECTION ===== */
.requisitos{
    width: 100%;
    background-color: var(--bg-color-01);
    padding: var(--section-padding) 20px;
}

.requisitos h2{
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: var(--section-title-margin);
    line-height: 1.3;
}

.requisitos-grid{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.req-card{
    background-color: var(--bg-color-02);
    border: 2px solid var(--main-color);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.req-card:active{
    transform: translateY(-3px);
}

.req-card h3{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--main-color);
}

.req-card h3 i{
    font-size: 30px;
}

.req-item{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.req-item i{
    color: var(--main-color);
    margin-top: 3px;
    font-size: 18px;
    flex-shrink: 0;
}

.req-item p{
    color: var(--text-color-2);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== TUTORIAL SECTION ===== */
.tutorial{
    width: 100%;
    background-color: var(--bg-color-02);
    padding: var(--section-padding) 20px;
}

.tutorial h2{
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: var(--section-title-margin);
    line-height: 1.3;
}

.steps-container{
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.step{
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number{
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--main-color) 0%, var(--main-color-clearer) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(19, 125, 154, 0.3);
}

.step-content h3{
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.step-content p{
    color: var(--text-color-2);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== SEGURANÇA SECTION ===== */
.seguranca{
    width: 100%;
    background-color: var(--bg-color-01);
    padding: var(--section-padding) 20px;
    text-align: center;
}

.seguranca h2{
    font-size: 1.8rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.seguranca p{
    color: var(--text-color-2);
    font-size: 14px;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.security-badges{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.badge{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.badge i{
    font-size: 50px;
    color: var(--main-color);
    transition: transform 0.3s ease;
}

.badge:active i{
    transform: scale(1.1);
}

.badge span{
    font-size: 13px;
    color: var(--text-color-3);
}

/* ===== FAQ SECTION ===== */
.faq{
    width: 100%;
    background-color: var(--bg-color-02);
    padding: var(--section-padding) 20px;
}

.faq h2{
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: var(--section-title-margin);
    line-height: 1.3;
}

.faq-container{
    max-width: 800px;
    margin: 0 auto;
}

.faq-item{
    background-color: var(--bg-color-01);
    border: 2px solid var(--main-color-little-opacity);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:active{
    border-color: var(--main-color);
}

.faq-question{
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:active{
    background-color: var(--main-color-little-opacity02);
}

.faq-question h3{
    font-size: 1rem;
    font-weight: 500;
}

.faq-question i{
    font-size: 20px;
    color: var(--main-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i{
    transform: rotate(180deg);
}

.faq-answer{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer{
    max-height: 300px;
}

.faq-answer p{
    padding: 0 20px 20px 20px;
    color: var(--text-color-2);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== CTA FINAL ===== */
.cta-final{
    width: 100%;
    background: linear-gradient(135deg, var(--main-color) 0%, var(--main-color-clearer) 100%);
    padding: var(--section-padding) 20px;
    text-align: center;
}

.cta-final h2{
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cta-final p{
    font-size: 14px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 40px;
    background-color: #ffffff;
    color: var(--main-color);
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:active{
    transform: translateY(-3px);
}

/* ===== FOOTER (IDÊNTICO AO HOME) ===== */
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:active{
    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:active, .plataforma a:active, .suporte a:active{
    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:active{
    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;
}

/* ===== RESPONSIVE (SEGUINDO O PADRÃO DO HOME) ===== */
@media screen and (min-width: 360px) {
    .hero-content h1{
        font-size: 6.5vw;
    }
    .download-buttons{
        max-width: 300px;
    }
    .footer-container-2{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 15px;
    }
}

@media screen and (min-width: 480px) {
    html {
        font-size: 15px;
    }
    .hero-content h1{
        font-size: 6vw;
    }
}

@media screen and (min-width: 600px) {
    .hero-download{
        min-height: 550px;
    }
    .hero-content h1{
        font-size: 5vw;
    }
    .hero-content p{
        font-size: 16px;
        padding: 0 20px;
    }
    .download-buttons{
        flex-direction: row;
        max-width: 100%;
        justify-content: center;
        gap: 15px;
        margin: 25px auto;
        flex-wrap: wrap;
    }
    .download-btn{
        width: 200px;
    }
    .recursos-grid{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .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;
    }
    .hero-download{
        margin-top: 70px;
        min-height: 500px;
        padding: 60px 40px;
    }
    .hero-content h1{
        font-size: 2.5rem;
    }
    .hero-content p{
        font-size: 16px;
        padding: 0;
    }
    .download-buttons{
        gap: 15px;
    }
    .recursos{
        padding: 70px 40px;
    }
    .recursos h2{
        font-size: 2.2rem;
    }
    .recursos-grid{
        grid-template-columns: repeat(2, 1fr);
    }
    .requisitos{
        padding: 70px 40px;
    }
    .requisitos h2{
        font-size: 2.2rem;
    }
    .requisitos-grid{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .tutorial{
        padding: 70px 40px;
    }
    .tutorial h2{
        font-size: 2.2rem;
    }
    .seguranca{
        padding: 70px 40px;
    }
    .seguranca h2{
        font-size: 2.2rem;
    }
    .faq{
        padding: 70px 40px;
    }
    .faq h2{
        font-size: 2.2rem;
    }
    .cta-final{
        padding: 70px 40px;
    }
    .cta-final h2{
        font-size: 2rem;
    }
    .cta-final p{
        font-size: 16px;
    }
    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;
    }
    .hero-download{
        min-height: 470px;
        max-height: 520px;
        padding: 40px 4%;
    }
    .download-btn:hover{
        background-color: var(--main-color);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(19, 125, 154, 0.4);
    }
    .recursos{
        padding: 80px 4%;
    }
    .recursos-grid{
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    .recurso-card:hover{
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(19, 125, 154, 0.3);
    }
    .requisitos{
        padding: 80px 60px;
    }
    .req-card:hover{
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(19, 125, 154, 0.3);
    }
    .tutorial{
        padding: 80px 60px;
    }
    .seguranca{
        padding: 80px 60px;
    }
    .badge:hover i{
        transform: scale(1.1);
    }
    .faq{
        padding: 80px 60px;
    }
    .faq-item:hover{
        border-color: var(--main-color);
    }
    .faq-question:hover{
        background-color: var(--main-color-little-opacity02);
    }
    .cta-final{
        padding: 80px 60px;
    }
    .cta-btn:hover{
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
    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;
    }
    .logo-footer img:hover{
        transform: scale(1.1);
    }
    .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;
    }
    .nav-footer a:hover, .plataforma a:hover, .suporte a:hover{
        color: var(--main-color);
    }
    .contato a:hover{
        text-decoration: underline;
    }
}

@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;
    }
    .recursos{
        padding: 100px 80px;
    }
    .recursos h2{
        font-size: 2.5rem;
    }
    .recursos-grid{
        gap: 35px;
        grid-template-columns: repeat(4, 1fr);
    }
    .recurso-card{
        padding: 2rem 1.5rem;
    }
    .recurso-card img{
        width: 60px;
    }
    .recurso-card h3{
        font-size: 1.5rem;
    }
    .recurso-card p{
        font-size: 1rem;
    }
    .requisitos{
        padding: 100px 80px;
    }
    .requisitos h2{
        font-size: 2.5rem;
    }
    .requisitos-grid{
        grid-template-columns: repeat(4, 1fr);
        gap: 35px;
    }
    .req-card{
        padding: 2rem 1.5rem;
    }
    .tutorial{
        padding: 100px 80px;
    }
    .tutorial h2{
        font-size: 2.5rem;
    }
    .seguranca{
        padding: 100px 80px;
    }
    .seguranca h2{
        font-size: 2.5rem;
    }
    .faq{
        padding: 100px 80px;
    }
    .faq h2{
        font-size: 2.5rem;
    }
    .cta-final{
        padding: 100px 80px;
    }
    .cta-final h2{
        font-size: 2.5rem;
    }
    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;
    }
    .recursos{
        padding: 120px 100px;
    }
    .requisitos{
        padding: 120px 100px;
    }
    .tutorial{
        padding: 120px 100px;
    }
    .seguranca{
        padding: 120px 100px;
    }
    .faq{
        padding: 120px 100px;
    }
    .cta-final{
        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;
    }
}