:root{
    --yellow:#FCC103;
    --yellow-dark:#e0aa00;
    --yellow-glow:rgba(252, 193, 3, 0.18);
    --bg: #000000;
    --bg2: #0a0a0a;
    --bg3: #111111;
    --bg4: #161616;
    --border: rgba(255,255,255,0.08);
    --border-yellow: rgba(252,193,3,0.3);
    --white: #FFFFFF;
    --gray: #a0a0a0;
    --gray2: #666666;
    --bg5: #050607;
    --card:#06080a;
    --stroke:#181c22;
    --text: #f4f6f8;
    --muted: #808996;
    --yellow1: #f6c400;
    --icon-bg:rgba(246, 196, 0, .12);
}
html { scrool-behavior: smooth;}

body{
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/*Barra de Rolagem*/

::-webkit-scrollbar {width: 6px;}
::-webkit-scrollbar-track {background: var(--bg);}
::-webkit-scrollbar-thumb {background: var(--yellow); border-radius:3px}

/*--Navegação--*/

nav {
    position:fixed;
    top:0;
    left:0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6%;
    height: 68px;
    background:rgba(0,0,0,0.85);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom:1px solid var(--border);
    transition: all .3s;
}
nav.scrolled {
    background: rgba (0,0,0,0.97);
}
.nav-logo{
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.nav-logo img{
    height: 34px;
    width: auto;
}
.nav-logo span{
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}
.nav-links{
    display: flex;
    align-items: center;
    gap:32px;
}
.nav-links a{
    color: var(--gray);
    font-size: .9rem;
    text-decoration: none;
    font-weight: 500;
    transition: color .2s;
}
.nav-links a:hover{
    color: var(--white);
}
.nav-cta{
    background: var(--yellow);
    color: #000 !important;
    padding: 9px 20px;
    border-radius: 8px;
    font-weight: 700 !important;
}
.nav-cta:hover{
    background: var(--yellow-dark) !important;
    transform: translateY(-1px);
}
.hamburger{
    display:none;
    flex-direction: column;
    gap:5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.hamburger span{
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all .3s;
}

/* tablet */

@media (max-width: 1024px){
    .steps-row{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .step-connector{
        display: none;
    }
    .benefits-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/*  Mobile */

@media (max-width:640px){
    .steps-row{
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .step-card{
        min-height: auto;
    }
    .benefits-grid{
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .benefits-grid{
        padding: 16px;
    }
}

.mobile-menu{
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.98);
    padding: 24px 6% 32px;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 20px;
    z-index: 99;
}
.mobile-menu.open{
    display: flex;
}
    .mobile-menu a {
      color: var(--gray);
       font-size: 1rem;
        text-decoration: none;
      font-weight: 500;
       transition: color .2s;
    }
    .mobile-menu a:hover { color: var(--white); }

    /* --Hero Seção--*/

    .hero{
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 120px 6% 80px;
        position: relative;
        overflow: hidden;
    }
    .hero-bg-glow{
        position: absolute;
        top: -200%;
        left: -200%;
        width: 700px;
        height: 700px;
        background: radial-gradient(circle, rgba(252,193,3,0.08) 0%, transparent 70%);
        pointer-events: none;
    }
    .hero-bg-glow2{
        position: absolute;
        bottom:-150px;
        right:-100px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(252,193,3,0.05) 0%, transparent 70%);
        pointer-events: none;
    }
    .hero-grid{
        display:grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        width:100%;
        position: relative;
        z-index: 1;
    }
    .hero-badge{
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(252,193,3,0.1);
        border: 1px solid var(--border-yellow);
        color: var(--yellow);
        padding: 6px 14px;
        border-radius: 100px;
        font-size: .8rem;
        font-weight: 600;
        letter-spacing: .5px;
        text-transform: uppercase;
        margin-bottom: 24px;
    }
    .hero-badge-dot{
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background:var(--yellow);
        animation: pulse-dot 1.5s infinite;
    }
    @keyframes pulse-dot{
        0%,100% {opacity: 1; transform: scale(1);}
        50%{opacity: .5; transform: scale(1.3);}
    }
    .hero h1{
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 24px;
        color: var(--white);
    }
    .hero h1 .highlight{
        color: var(--yellow);
    }
    .hero p{
        font-size: 1.1rem;
        color: var(--gray);
        margin-bottom: 36px;
        line-height: 1.7;
        max-width: 480px;
    }
    .hero-btns{
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
    }
    .btn-primary{
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--yellow);
        color: #000;
        padding: 14px 28px;
        border-radius: 10px;
        font-weight: 800;
        font-size: .95rem;
        text-decoration: none;
        transition: all .2s;
        border: none;
        cursor: pointer;
        letter-spacing: -.2px;
    }
    .btn-primary:hover{
        background: var(--yellow-dark);
        transform: translateY(-2px);
        box-shadow:0 8px 30px rgba(252,193,3,0.3);
    }
    .btn-outline{
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: transparent;
        color: var(--white);
        padding: 14px 28px;
        border-radius: 10px;
        font-weight: 600;
        font-size: .95rem;
        text-decoration: none;
        transition: all .2s;
        border: 1px solid var(--border);
        cursor: pointer;
    }
    .btn-outline:hover{
        background: rgba(255,255,255,0.05);
        border-color: rgba(255,255,255,0.25);
        transform: translateY(-2px);
    }
    .hero-stats{
        display: flex;
        gap:32px;
        margin-top: 48px;
        padding-top: 32px;
        border-top: 1px solid var(--border);
    }
    .hero-stat .num{
        font-size: 1.6rem;
        font-weight: 800;
        color: var(--yellow);
        letter-spacing: -1px;
    }
    .hero-stat .label{
        font-size: .8rem;
        color: var(--gray2);
        margin-top: 2px;
    }

    /* Maquete de painel de controle */

    .hero-visual {
        position: relative;
    }
    .dashboard-mockup{
        background: var(--bg3); 
        border: 1px solid var(--border);
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 40px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
        animation: float 6s ease-in-out infinite;
    }
    @keyframes float{
        0%,100% {transform: translateY(0);}
        50%{transform: translateY(-12px);}
    }
    .mock-bar{
        background: var(--bg4);
        padding: 12px 16px;
        display: flex;
        align-items: center;
        gap: 8px;
        border-bottom: 1px solid var(--border);
    }
    .mock-dot{
        width: 10px;
        height: 10px;
        border-radius: 50%;
    }
    .mock-dot.red{
        background: #ff5f57;
    }
    .mock-dot.yellow{
        background: #ffbd2e;
    }
    .mock-dot.green{
        background: #28c840;
    }
    .mock-url{
        flex: 1;
        background: var(--bg3);
        border-radius: 6px;
        padding: 5px 12px;
        font-size: .72rem;
        color: var(--gray2);
        margin-left: 8px;
    }
    .mock-body{
        padding: 24px;
    }
    .mock-title{
        font-size: .75rem;
        font-weight: 700;
        color: var(--gray2);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom:16px ;
    }
    .mock-drop-icon{
        font-size: 2rem;
        margin-bottom: 8px;
    }
    .mock-drop p {
        font-size: .8rem;
        color: var(--gray);
    }
    .mock-drop span{
        color: var(--yellow);
        font-weight: 600;
    }
    .mock-files{
        display: flex;
        flex-direction: column;
        gap:8px;
        margin-bottom: 16px;
    }
    .mock-file{
        display: flex;
        align-items: center;
        gap: 10px;
        background: var(--bg4);
        border-radius: 8px;
        padding: 10px 12px;
        border:1px solid var(--border);
    }
    .mock-file-icon{
        width: 30px;
        height: 30px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: .65rem;
        font-weight: 800;
        letter-spacing: -.5px;
    }
    .mock-file-icon.pdf{
        background:rgba(255,80,80,0.15);
        color: #ff5050;
    }
    .mock-file-icon.zpl{
        background:rgba(80,130,255,0.15);
        color: #5082ff;
    }
    .mock-file-info{
        flex: 1;
    }
    .mock-file-name{
        font-size: .78rem;
        font-weight: 600;
        color: var(--white)
    }
    .mock-file-size{
        font-size: .7rem;
        color: var(--gray2);
    }
    .mock-file-check{
        color: #28c840;
        font-size: 1rem;
    }
    .mock-convert-btn{
        width: 100%;
        background: var(--yellow);
        color: #000;
        border: none;
        border-radius: 8px;
        padding: 12px;
        font-weight: 800;
        font-size: .85rem;
        cursor: pointer;
        letter-spacing: -.2px;
        transition: all .2s;
    }
    .mock-convert-btn:hover{
        background: var(--yellow-dark);
    }
    .mock-result{
        margin-top: 12px;
        padding: 10px 14px;
        background: rgba(40,200,64,0.08);
        border-radius: 1px solid rgba(40,200,64,0.2);
        align-items: center;
        display: flex;
        gap: 8px;
        font-size: .8rem;
        color: #28c840;
        font-weight: 600;
    }

    /*  Base de Seção  */

    section{
        padding: 100px 6%;
    }
    .section-inner{
        max-width: 1200px;
        margin: 0 auto;
    }
    .section-tag{
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: var(--yellow);
        font-size: .78rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom:16px;
    }
    .section-tag::before{
        content:'';
        display: block;
        height: 2px;
        background: var(--yellow);
    }
    .section-title{
        font-size: clamp(1.8rem, 3vw, 2.6rem);
        font-weight: 880;
        letter-spacing: -1px;
        line-height: 1.15;
        margin-bottom: 16px;
    }
    .section-sub{
        font-size: 1.05rem;
        color: var(--gray);
        max-width: 560px;
        line-height: 1.7;
    }

    /*  Faixa de logotipos  */

    .logos-strip{
        padding: 32px 6%;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        background: var(--bg2);
    }
    .logos-strip-inner{
        max-width: 1200px;
        margin: 0 auto;
    }
    .logos-label{
        text-align: center;
        font-size: .75rem;
        color: var(--gray2);
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-weight:600;
        margin-bottom: 28px;
    }
    .logos-row{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
    }
    .logo-item{
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--gray2);
        font-size: .95rem;
        font-weight: 700;
        letter-spacing: -.3px;
        transition: color .2s;
        opacity: .5;
    }
    .logo-item img{
        width: 2em;
        height: 2em;
        object-fit: contain;
    }

    /*  Problema  */

    .problem {
        background: var(--bg2); 
    }
    .problem-grid{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }
    .problem-list{
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .problem-item{
        display: flex;
        align-items: flex-start;
        gap: 14px;
        background:var(--bg3);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 18px 20px;
        transition: border-color .3s, transform .3s;
    }
    .problem-item:hover{
        border-color: rgba(255,80,80,0.3);
        transform: translateX(4px);
    }
    .problem-icon{
        width: 36px;
        height: 36px;
        border-radius: 8px;
        background: rgba(255,80,80,0.12);
        color: #ff5050;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        flex-shrink: 0;
    }
    .problem-text strong{
        display: block;
        font-size: .9rem;
        font-weight: 700;
        margin-bottom: 3px;
    }
    .problem-text span{
        font-size: .82rem;
        color: var(--gray);
    }
    .problem-visual{
        background: var(--bg3);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 32px;
    }
    .pv-title{
        font-size: .8rem;
        font-weight: 700;
        color:var(--gray2);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }
    .pv-flow{
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .pv-step{
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 16px;
        border-radius: 10px;
        background: var(--bg4);
        border: 1px solid var(--border);
    }
    .pov-step-num{
        width: 28px;
        height: 28px;
        border-radius: 6px;
        background: rgba(255,80,80,0,12);
        color: #ff5050;
        font-size: .75rem;
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .pv-step-text{
        font-size: .82rem;
        color: var(--gray);
    }
    .pv-arrow{
        text-align: center;
        font-size: 1rem;
        color: var(--gray2);
        line-height: 1;
    }
    .pv-time{
        margin-top:16px;
        padding: 14px 16px;
        background: rgba(255, 80, 80, 0.06);
        border: 1px solid rgba(255, 80, 80, 0.15);
        border-radius: 10px;
        font-size: .85rem;
        color: #ff8080;
        font-weight: 600;
        text-align: center;
    }

    /*  Como funciona  */

    .how{
        background: var(--bg);
    }
    .steps-row{
        position: relative;
        display: grid;
        grid-template-columns:repeat(4, minmax(0, 1fr));
        gap:18px;
        margin-top: 42px;
    }
    .step-connector{
        position:absolute;
        top:40px;
        left:8%;
        right:8px;
        height: 2px;
        background:linear-gradient(90deg, var(--yellow), transparent);
        opacity: .25;
        pointer-events: none;
    }
    .step-card{
        background:linear-gradient(180deg, var(--bg3), #101010);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 24px 18px;
        min-height: 260px;
        
    }
    .step-card:before{
        content:'';
        position:absolute;
        top:0;
        left: 0;
        right: 0;
        height: 2px;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .3s;
    }
    .step-card:hover {
        border-color: var(--border-yellow);
        transform:translateY(-4px);
    }
    .step-card:hover:before{
        transform: scaleX(1);
    }
    .step-num{
        font-size: 3.5rem;
        font-weight: 900;
        color: rgba(252, 193, 3, 0.08);
        line-height: 1;
        position: absolute;
        top: 16px;
        right: 20px;
        letter-spacing: -2px;
    }
    .step-icon{
        width: 52px;
        height: 52px;
        border-radius: 12px;
        background: rgba(252, 193, 3, 0.1);
        border: 1px solid var(--border-yellow);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    .step-title{
        font-size: .95rem;
        font-weight: 700;
        margin-bottom:8px;
    }
    .step-desc{
        font-size: .86rem;
        color: #b8b8b8;
        line-height: 1.55;
    }

    /*  Antes / Depois  */

    .compare{
        background: var(--bg2);
    }
    .compare-grid{
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        gap: 24px;
        align-items: center;
        margin-top: 56px;
    }
    .compare-card{
        background: var(--bg3);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 32px;
    }
    .compare-card.after{
       border-color: var(--border-yellow);
    }
    .compare-label{
        font-size: .75rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 24px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .compare-label.before-label{
        color: #ff5050;
    }
    .compare-label.after-label{
        color: #28c840;
    }
    .compare-label::before{
        content: '';
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: currentColor;
    }
    .compare-steps{
        list-style: none;
        display: flex;
        flex-direction:column ;
        gap: 12px;
    }
    .compare-steps li{
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: .85rem;
        padding: 10px 12px;
        border-radius: 8px;
    }
    .before-steps li{
        background: rgba(255, 80, 80, 0.06);
        color:#ff8080;
    }
    .after-steps li{
        background: rgba(40, 200, 64, 0.06);
        color: #50d060;
    }
    .compare-steps li .ci{
        width: 20px;
        height: 20px;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: .75rem;
        flex-shrink: 0;
    }
    .before-steps li .ci{
        background: rgba(255, 80, 80, 0.2);
    }
    .after-steps li .ci{
        background: rgba(40, 200, 64, 0.2);
    }
    .compare-vs{
        font-size: 1.4rem;
        font-weight: 900;
        color: var(--gray2);
        text-align: center;
        padding: 0 8px;
    }
    .compare-time{
        margin-top: 1.4rem;
        padding: 12px;
        border-radius: 10px;
        font-size: .82rem;
        font-weight: 700;
        text-align: center;
    }
    .compare-time.before-time{
        background: rgba(255, 80, 80, 0.08);
        color: #ff6060;
    }
    .compare-time.after-time{
        background: rgba(252, 193, 3, 0.1);
        color: var(--yellow);
    }

    /*  Benefícios  */

    .benefits{
        background: var(--bg5);
        color: var(--text);
        padding: 92px 0 104px;

    }
    .benefits-grid{
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap:16px;
        margin-top: 40px !important;
    }
    .benefit-card{
        background:var(--card);
        border: 1px solid var(--stroke);
        border-radius: 14px;
        padding: 20px;
        gap: 14px;
        align-items: flex-start;
        
    }
    .benefit-card:hover{
        border-color:var(--border-yellow);
        transform: translateY(-3px);
    }
    .benefit-icon{
        width: 44px;
        height: 44px;
        border-radius: 10px;
        width: 56px;
        height: 56px;
        border-radius: 14px;
        background: rgba(252, 193, 3, 0.1);
        border: 1px solid var(--border-yellow);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        flex-shrink:0;
    }
    .benefit-text h3{
        font-size: .95rem;
        margin-bottom: 8px;
    }
    .benefit-text p{
        font-size: .82rem;
        color: var#b8b8b8;
        line-height: 1.5;
    }
    .benefits_header{
        max-width: 1280px;
        margin: 0 auto 56px;
        padding: 0 24px;
        text-align: center;
    }
    .benefits_Kicker{
        display: inline-block;
        color: var(--yellow);
        font-weight: 700;
        font-size: 12px;
        letter-spacing: .16rem;
        margin-bottom: 14px;
    }
    .benefits_header h2{
        margin: 0;
        font-size: clamp(2.2rem, 4.7vw, 4.1rem);
        line-height: 1.03;
        font-weight: 800;
    }
    .benefits_grid{
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap:30px;
    }

    /*  Para Quem  */

    .for-who{
        background: var(--bg2);
    }
    .for-who-grid{
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 15px;
        margin-top: 56px;
    }
    .who-card{
        background: var(--bg3);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 28px 20px;
        text-align: center;
        transition: all .3s;
    }
    .who-card:hover{
        border-color: var(--border-yellow);
        transform:translateY(-4px) ;
    }
    .who-icon{
        font-size: 2rem;
        margin-bottom: 12px;
    }
    .who-title{
        font-size: .88rem;
        font-weight: 700;
        color:var(--white);
        margin-bottom: 6px;
    }
    .who-desc{
        font-size: .75rem;
        color: var(--gray);
        line-height: 1.5;
    }

    /*  Preços */

    .pricing{
        background: var(--bg);
    }
    .pricing-grid{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 56px;
        align-items:start
    }
    .pricing-card{
        background: var(--bg3);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding:36px 32px;
        position: relative;
        transition: all .3s;
    }
    .pricing-card:hover{
        border-color: rgba(255,255,255,0.15);
        transform:translateY(-4px);
    }
    .pricing-card.popular{
        border-color: var(--yellow);
        background:linear-gradient(160deg, rgba(252, 193, 3, 0.06) 0%, var(--bg3) 60%);
    }
    .popular-badge{
        position: absolute;
        top:-14px;
        left: 50%;
        transform: translateY(-50%);
        background: var(--yellow);
        color: #000;
        font-size: .72rem;
        font-weight: 800;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 5px 16px;
        border-radius:100px;
        white-space: nowrap;   
    }
    .plan-name{
        font-size: .8rem;
        font-weight: 700;
        color: var(--gray2);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }
    .plan-price{
        font-size: 2.6rem;
        font-weight: 900;
        letter-spacing: -1.5px;
        margin-bottom: 4px;
        color: var(--white);
    }
    .plan-price .currency{
        font-size: 1.2rem;
        vertical-align: top;
        margin-top: 8px;
        display: inline-block;
    }
    .plan-price .period{
        font-size: .85rem;
        color: var(--gray2);
        font-weight: 400;
        letter-spacing: 0;
    }
    .plan-desc{
        font-size: .82rem;
        color: var(--gray);
        margin-bottom: 28px;
    }
    .plan-divider{
        height: 1px;
        background: var(--border);
        margin: 24px 0;
    }
    .plan-features{
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 28px;
    }
    .plan-features li{
        display: flex;
        align-items: flex-start;
        gap:10px;
        font-size:.85rem;
        color: var(--gray);
    }
    .plan-features li .check{
        color: var(--yellow);
        font-weight: 900;
        flex-shrink: 0;
    }
    .plan-btn{
        display: block;
        width: 100%;
        text-align: center;
        padding:13px;
        border-radius:10px;
        font-weight: 700;
        font-size: .9rem;
        text-decoration: none;
        transition: all .2s;
        border: none;
        cursor: pointer;
    }
    .plan-btn.primary{
        background: var(--yellow);
        color: #000;
    }
    .plan-btn.primary:hover{
        background: var(--yellow-dark);
    }
    .plan-btn.secondary{
        background:transparent;
        color: var(--gray);
        border: 1px solid var(--border);
    }
    .plan-btn.secondary:hover{
        border-color: rgba(255,255,255,0.2);
    }

    /*  Autoridade  */
    .authority{
        background: linear-gradient(135deg, rgba(252, 193, 3, 0.06) 0%, transparent 60%);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }
    .authority-inner{
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
    }
    .authority-quote{
        font-size: clamp(1.4rem, 2.5vw, 2rem);
        font-weight: 700;
        line-height: 1.4;
        letter-spacing: -.5px;
        color: var(--white);
        margin-bottom: 24px;
    }
    .authority-quote .highlight { 
        color: var(--yellow);
     }
    .authority-sub { 
        font-size: .9rem;
        color: var(--gray);
         }
    .authority-stats {
      display: flex;
      justify-content: center;
      gap: 60px;
      margin-top: 48px;
      padding-top: 40px;
      border-top: 1px solid var(--border);
    }
    .auth-stat .num { 
        font-size: 2.4rem;
        font-weight: 900;
        color: var(--yellow);
        letter-spacing: -1px;
         }
    .auth-stat .label { 
        font-size: .82rem;
        color: var(--gray);
        margin-top: 4px; }

 
    /* FAQ  */

    .faq { 
        background: var(--bg2); 
    }
    .faq-list { 
        margin-top: 56px;
         display: flex;
        flex-direction: column;
        gap: 12px;
        max-width: 760px; 
    }
    .faq-item {
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      transition: border-color .3s;
    }
    .faq-item.open {
         border-color: var(--border-yellow); 
        }
    .faq-q {
      padding: 20px 24px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-size: .92rem;
      font-weight: 600;
      user-select: none;
      transition: color .2s;
    }
    .faq-q:hover { 
        color: var(--yellow); 
    }
    .faq-icon {
      width: 28px;
      height: 28px;
      border-radius: 8px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
      transition: all .3s;
      color: var(--gray);
    }
    .faq-item.open .faq-icon { 
        background: var(--yellow-glow);
        border-color: var(--border-yellow);
        color: var(--yellow);
        transform: rotate(45deg); }
    .faq-a {
      display: none;
      padding: 0 24px 20px;
      font-size: .85rem;
      color: var(--gray);
      line-height: 1.7;
    }
    .faq-item.open .faq-a { display: block; }
 
    /*  CTA FINAL  */

    .cta-final {
      background: var(--bg);
      padding: 120px 6%;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-glow {
      position: absolute; top: 50%;
      left: 50%;
      transform: translate(-50%,-50%);
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(252,193,3,0.08) 0%, transparent 65%);
      pointer-events: none;
    }
    .cta-final h2 {
      font-size: clamp(2rem, 4vw, 3.2rem);
       font-weight: 900;
      letter-spacing: -1.5px;
       line-height: 1.1;
        margin-bottom: 16px;
      position: relative; z-index: 1;
    }
    .cta-final p {
      font-size: 1.05rem;
       color: var(--gray);
        margin-bottom: 40px;
      max-width: 480px;
       margin-left: auto;
        margin-right: auto;
      position: relative;
       z-index: 1;
        line-height: 1.7;
    }
    .cta-btns { display: flex;
         gap: 14px; justify-content: center;
          flex-wrap: wrap;
           position: relative; z-index: 1;
         }
    .cta-note { margin-top: 20px;
         font-size: .8rem;
          color: var(--gray2);
           position: relative;
            z-index: 1; }
 
    /* Rodapé  */

    footer {
      border-top: 1px solid var(--border);
      padding: 40px 6%; background: var(--bg);
    }
    .footer-inner {
      max-width: 1200px;
       margin: 0 auto;
      display: flex;
       align-items: center;
        justify-content: space-between;
      gap: 20px;
       flex-wrap: wrap;
    }
    .footer-logo {
      display: flex;
       align-items: center;
        gap: 10px;
         text-decoration: none;
    }
    .footer-logo img { 
        height: 28px;
     }
    .footer-logo span {
         font-size: 1rem;
          font-weight: 800;
           color: var(--white);
    }
    .footer-copy {
         font-size: .8rem;
          color: var(--gray2);
         }
    .footer-links {
         display: flex;
          gap: 20px;
         }
    .footer-links a { font-size: .8rem;
         color: var(--gray2);
          text-decoration: none;
           transition: color .2s;
         }
    .footer-links a:hover {
         color: var(--yellow); 
        }
 
    /*  Animar em  */

    .fade-in {
      opacity: 0;
       transform: translateY(24px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .fade-in.visible {
         opacity: 1; transform: translateY(0);
         }
    .fade-in-delay-1 {
         transition-delay: .1s;
         }
    .fade-in-delay-2 {
         transition-delay: .2s;
         }
    .fade-in-delay-3 { 
        transition-delay: .3s; 
    }
    .fade-in-delay-4 { 
        transition-delay: .4s; 
    }
 
    /*  Responsivo */

    @media (max-width: 1024px) {
      .steps-row { 
        grid-template-columns: repeat(2, 1fr);
     }
      .step-connector {
         display: none; 
        }
      .for-who-grid {
         grid-template-columns: repeat(3, 1fr); 
        }
      .pricing-grid {
         grid-template-columns: 1fr 1fr; 
        }
      .pricing-card:last-child { 
        grid-column: span 2; max-width: 400px; margin: 0 auto; width: 100%; 
    }
      .authority-stats {
         gap: 32px; 
        }
    }
    @media (max-width: 768px) {
      section {
         padding: 72px 5%;
         }
      nav { 
        padding: 0 5%;
     }
      .nav-links {
         display: none; }
      .hamburger { display: flex;
     }
      .hero { padding: 100px 5% 60px; }
      .hero-grid { grid-template-columns: 1fr; gap: 48px; }
      .hero-visual { order: -1; }
      .hero-stats { gap: 24px; flex-wrap: wrap; }
      .problem-grid { grid-template-columns: 1fr; }
      .problem-visual { display: none; }
      .compare-grid { grid-template-columns: 1fr; }
      .compare-vs { padding: 8px 0; }
      .benefits-grid { grid-template-columns: 1fr; }
      .for-who-grid { grid-template-columns: repeat(2, 1fr); }
      .pricing-grid { grid-template-columns: 1fr; }
      .pricing-card:last-child { grid-column: span 1; max-width: unset; }
      .authority-stats { flex-direction: column; gap: 24px; }
      .footer-inner { flex-direction: column; text-align: center; }
    }
    @media (max-width: 480px) {
      .hero-btns { flex-direction: column; }
      .btn-primary, .btn-outline { justify-content: center; }
      .for-who-grid { grid-template-columns: 1fr 1fr; }
      .cta-btns { flex-direction: column; align-items: center; }
    }

    



       