/*==========================================================

4PRINTER
PROJETO ORION 2026

==========================================================*/


/*==========================
RESET
==========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;

    background:#0B0F14;

    color:#FFFFFF;

    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

button{

    border:none;

    background:none;

    cursor:pointer;

    font-family:inherit;

}

input,
select,
textarea{

    outline:none;
    border:none;
    font-family:inherit;

}

section{

    padding:110px 0;

}

.container{

    width:min(1180px,92%);
    margin:auto;

}



/*==========================
CORES
==========================*/

:root{

    --green:#00B96B;

    --green-hover:#00D67C;

    --dark:#0B0F14;

    --dark-2:#131A22;

    --dark-3:#1B2430;

    --line:#293241;

    --text:#FFFFFF;

    --text-light:#AAB5C5;

    --shadow:0 25px 60px rgba(0,0,0,.35);

    --radius:18px;

    --transition:.35s;

}



/*==========================
TIPOGRAFIA
==========================*/

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    display:inline-block;

    color:var(--green);

    font-size:.85rem;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:18px;

}

.section-title h2{

    font-size:2.8rem;

    line-height:1.2;

    margin-bottom:22px;

}

.section-title p{

    max-width:720px;

    margin:auto;

    color:var(--text-light);

    font-size:1.08rem;

    line-height:1.8;

}



/*==========================
BOTÕES
==========================*/

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    background:var(--green);

    color:#FFF;

    border-radius:12px;

    font-weight:600;

    transition:.35s;

}

.btn-primary:hover{

    background:var(--green-hover);

    transform:translateY(-4px);

    box-shadow:0 20px 40px rgba(0,185,107,.25);

}



.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border:1px solid var(--line);

    border-radius:12px;

    transition:.35s;

}

.btn-outline:hover{

    border-color:var(--green);

    color:var(--green);

}



/*==========================
HEADER
==========================*/

.header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    z-index:999;

    background:rgba(11,15,20,.82);

    backdrop-filter:blur(14px);

    border-bottom:1px solid rgba(255,255,255,.05);

}

.header .container{

    height:90px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.logo img{

    height:42px;

}

.menu ul{

    display:flex;

    gap:42px;

}

.menu a{

    color:#FFF;

    font-weight:500;

    transition:.3s;

}

.menu a:hover{

    color:var(--green);

}

.btn-header{

    padding:13px 24px;

    border-radius:10px;

    background:var(--green);

    color:#FFF;

    transition:.35s;

}

.btn-header:hover{

    background:var(--green-hover);

}

.menu-mobile{

    display:none;

}



/*==========================
HERO
==========================*/

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    padding-top:90px;

}

.hero-grid{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:70px;

}

.hero-top{

    color:var(--green);

    font-size:.82rem;

    letter-spacing:2px;

    font-weight:700;

}

.hero h1{

    margin:24px 0;

    font-size:4rem;

    line-height:1.1;

}

.hero h1 span{

    color:var(--green);

    display:block;

}

.hero p{

    font-size:1.12rem;

    color:var(--text-light);

    line-height:1.9;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:45px;

}

/*==========================================================

HERO

==========================================================*/

.hero{

    position:relative;

    overflow:hidden;

}


/* Luz verde ao fundo */

.hero::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    right:-180px;

    top:-120px;

    background:radial-gradient(circle,
    rgba(0,185,107,.18) 0%,
    rgba(0,185,107,0) 70%);

    z-index:0;

}


.hero::after{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    left:-220px;

    bottom:-180px;

    background:radial-gradient(circle,
    rgba(255,255,255,.03),
    transparent);

}


.hero-grid{

    position:relative;

    z-index:2;

}



.hero-content{

    animation:fadeLeft .8s ease;

}



.hero-image{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}



.hero-image img{

    width:100%;

    max-width:470px;

    filter:drop-shadow(0 40px 80px rgba(0,0,0,.55));

}


/*
.hero-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

}
*/

.hero-features{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;

    margin-top:35px;

}



.hero-features div{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.05);

    backdrop-filter:blur(12px);

    border-radius:14px;

    padding:18px;

    color:var(--text-light);

    transition:.35s;

}



.hero-features div:hover{

    transform:translateY(-5px);

    border-color:rgba(0,185,107,.45);

    background:rgba(0,185,107,.08);

}



/*==========================================================

CARDS FLUTUANTES

==========================================================*/

.floating-card{

    position:absolute;

    width:240px;

    padding:22px;

    border-radius:18px;

    background:rgba(19,26,34,.82);

    border:1px solid rgba(255,255,255,.06);

    backdrop-filter:blur(18px);

    box-shadow:var(--shadow);

    transition:.35s;

}



.floating-card:hover{

    transform:translateY(-8px);

}



.floating-card strong{

    display:block;

    margin-bottom:8px;

    font-size:1rem;

}



.floating-card small{

    color:var(--text-light);

    line-height:1.6;

}


/*
.card-01{

    top:5%;

    left:-40px;

}



.card-02{

    bottom:20%;

    left:-70px;

}



.card-03{

    right:-60px;

    bottom:10%;

}
*/

.card-01{

    top:30px;

    left:-110px;

}

.card-02{

    top:250px;

    left:-70px;

}

.card-03{

    top:120px;

    right:-120px;

}



/* indicador verde */

.status-dot{

    width:12px;

    height:12px;

    background:var(--green);

    border-radius:50%;

    margin-bottom:12px;

    box-shadow:

    0 0 10px rgba(0,185,107,.9),

    0 0 25px rgba(0,185,107,.5);

}



/*==========================================================

DESAFIOS

==========================================================*/

.problems{

    background:#10161D;

}



.problems-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}



.problem-card{

    background:var(--dark-2);

    border-radius:18px;

    padding:35px;

    border:1px solid rgba(255,255,255,.05);

    transition:.35s;

}



.problem-card:hover{

    transform:translateY(-8px);

    border-color:rgba(0,185,107,.35);

    box-shadow:0 25px 60px rgba(0,0,0,.35);

}



.problem-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(0,185,107,.12);

    margin-bottom:25px;

}



.problem-icon img{

    width:34px;

}



.problem-card h3{

    margin-bottom:18px;

    font-size:1.3rem;

}



.problem-card p{

    color:var(--text-light);

    line-height:1.8;

}



/*==========================================================

COMO RESOLVEMOS

==========================================================*/

.solution{

    background:#0B0F14;

}



.solution-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}


.solutions-grid-print{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    align-items:stretch;

}

/* */




.solution-image{

    position:relative;

}



.solution-image img{

    border-radius:22px;

    box-shadow:var(--shadow);

}



.solution-content span{

    color:var(--green);

    font-size:.85rem;

    letter-spacing:2px;

    font-weight:700;

}



.solution-content h2{

    margin:22px 0;

    font-size:2.7rem;

}



.solution-content p{

    color:var(--text-light);

    line-height:1.9;

    margin-bottom:30px;

}



.solution-content ul{

    display:grid;

    gap:16px;

    margin-bottom:40px;

}



.solution-content li{

    position:relative;

    padding-left:30px;

    color:var(--text-light);

}



.solution-content li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:var(--green);

    font-weight:bold;

}

/*==========================================================

CONSULTORIA EXPRESS

==========================================================*/

.consultant{

    background:#10161D;

    position:relative;

    overflow:hidden;

}

.consultant::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    top:-250px;

    right:-180px;

    background:radial-gradient(circle,
    rgba(0,185,107,.10),
    transparent 70%);

}

.consultant-wrapper{

    position:relative;

    display:grid;

    grid-template-columns:1.4fr .8fr;

    gap:45px;

    align-items:flex-start;

    z-index:2;

}



/*==========================================================

PAINEL PRINCIPAL

==========================================================*/

.consultant-form{

    background:rgba(19,26,34,.92);

    border:1px solid rgba(255,255,255,.05);

    border-radius:24px;

    padding:45px;

    box-shadow:var(--shadow);

}



/*==========================================================

BARRA DE PROGRESSO

==========================================================*/

.progress{

    width:100%;

    height:10px;

    background:#202B36;

    border-radius:30px;

    overflow:hidden;

    margin-bottom:18px;

}

.progress-bar{

    width:20%;

    height:100%;

    background:linear-gradient(
    90deg,
    #00B96B,
    #00D67C);

    border-radius:30px;

    transition:.45s;

}

.step{

    color:var(--text-light);

    margin-bottom:40px;

    font-size:.95rem;

}



/*==========================================================

PERGUNTAS

==========================================================*/

.question{

    display:none;

    animation:fadeUp .45s ease;

}

.question.active{

    display:block;

}

.question h3{

    font-size:1.9rem;

    margin-bottom:35px;

}



/*==========================================================

BOTÕES DE OPÇÕES

==========================================================*/

.option-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.option{

    background:#18212B;

    border:1px solid rgba(255,255,255,.06);

    border-radius:16px;

    padding:22px;

    color:#FFF;

    font-size:1rem;

    font-weight:600;

    transition:.35s;

}

.option:hover{

    transform:translateY(-6px);

    border-color:var(--green);

    background:#1D2B37;

    box-shadow:0 18px 35px rgba(0,185,107,.18);

}

.option.active{

    background:var(--green);

    border-color:var(--green);

    color:#FFF;

}



/*==========================================================

RESUMO LATERAL

==========================================================*/

.summary-card{

    position:sticky;

    top:120px;

    background:rgba(19,26,34,.92);

    border:1px solid rgba(255,255,255,.05);

    border-radius:24px;

    padding:35px;

    box-shadow:var(--shadow);

    backdrop-filter:blur(18px);

}



.summary-header{

    margin-bottom:35px;

}



.summary-header h3{

    margin-bottom:10px;

    font-size:1.4rem;

}



.summary-header p{

    color:var(--text-light);

    line-height:1.7;

}



.summary-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

    border-bottom:1px solid rgba(255,255,255,.05);

}

.summary-item span{

    color:var(--text-light);

}

.summary-item strong{

    color:#FFF;

}



/*==========================================================

RECOMENDAÇÃO

==========================================================*/

.recommendation{

    margin-top:35px;

    padding:24px;

    border-radius:18px;

    background:rgba(0,185,107,.10);

    border:1px solid rgba(0,185,107,.20);

}

.recommendation h4{

    margin-bottom:12px;

    color:var(--green);

}

.recommendation p{

    color:var(--text-light);

    line-height:1.8;

}



/*==========================================================

RESULTADO

==========================================================*/

.result{

    background:#0B0F14;

}

.result-card{

    max-width:820px;

    margin:auto;

    text-align:center;

    background:#131A22;

    border-radius:24px;

    padding:70px 60px;

    border:1px solid rgba(255,255,255,.05);

    box-shadow:var(--shadow);

}

.result-icon{

    width:90px;

    height:90px;

    margin:0 auto 30px;

    border-radius:50%;

    background:var(--green);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:2rem;

    font-weight:700;

    color:#FFF;

}

.result-card h2{

    font-size:2.4rem;

    margin-bottom:18px;

}

.result-card p{

    color:var(--text-light);

    line-height:1.9;

    margin-bottom:35px;

}



/*==========================================================

MENSAGEM WHATSAPP

==========================================================*/

.result pre{

    text-align:left;

    background:#18212B;

    padding:25px;

    border-radius:16px;

    color:#DCE5EF;

    line-height:1.8;

    margin-bottom:35px;

    white-space:pre-wrap;

}



/*==========================================================

ESTATÍSTICAS

==========================================================*/

.numbers{

    background:#10161D;

}

.numbers-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.number-card{

    background:#131A22;

    border-radius:22px;

    padding:45px;

    text-align:center;

    border:1px solid rgba(255,255,255,.05);

    transition:.35s;

}

.number-card:hover{

    transform:translateY(-8px);

    border-color:rgba(0,185,107,.30);

}

.number-card h2{

    font-size:3rem;

    color:var(--green);

    margin-bottom:12px;

}

.number-card p{

    color:var(--text-light);

    line-height:1.8;

}

/*==========================================================

MARCAS

==========================================================*/

/*
.brands{

    background:#0B0F14;

}

.brands-slider{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:35px;

    align-items:center;

}

.brands-slider img{

    opacity:.65;

    filter:grayscale(100%);

    transition:.35s;

    max-width:130px;

    margin:auto;

}

.brands-slider img:hover{

    opacity:1;

    filter:none;

    transform:scale(1.08);

}
*/

.brands{

    background:#0B0F14;
    overflow:hidden;
    padding:70px 0;

}

.brands-slider{

    display:flex;
    align-items:center;
    gap:70px;

    width:max-content;

    animation:brandsSlide 35s linear infinite;

}

.brands-slider:hover{

    animation-play-state:paused;

}

.brands-slider img{

    height:55px;

    width:auto;

    opacity:.55;

    filter:grayscale(100%);

    transition:.35s;

    flex-shrink:0;

}

.brands-slider img:hover{

    opacity:1;

    filter:none;

    transform:scale(1.12);

}

@keyframes brandsSlide{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

.mask-image:linear-gradient{
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
};

.webkit-mask-image:linear-gradient{
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
};



/*==========================================================

SOBRE

==========================================================*/

.about{

    background:#10161D;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image img{

    border-radius:24px;

    box-shadow:var(--shadow);

}

.about-content span{

    color:var(--green);

    letter-spacing:2px;

    font-weight:700;

    font-size:.85rem;

}

.about-content h2{

    margin:22px 0;

    font-size:2.6rem;

}

.about-content p{

    color:var(--text-light);

    line-height:1.9;

    margin-bottom:22px;

}

.about-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:35px;

}

.about-list div{

    background:#131A22;

    border:1px solid rgba(255,255,255,.05);

    border-radius:14px;

    padding:18px;

}



/*==========================================================

CTA

==========================================================*/

.cta{

    background:linear-gradient(
    135deg,
    #00B96B,
    #008E55);

}

.cta-box{

    max-width:950px;

    margin:auto;

    text-align:center;

    color:#FFF;

}

.cta-box h2{

    font-size:3rem;

    margin-bottom:22px;

}

.cta-box p{

    max-width:720px;

    margin:auto;

    line-height:1.9;

    margin-bottom:40px;

    opacity:.95;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

}

.cta .btn-outline{

    border-color:#FFF;

    color:#FFF;

}

.cta .btn-outline:hover{

    background:#FFF;

    color:#111;

}



/*==========================================================

CONTATO

==========================================================*/

.contact{

    background:#10161D;

}

.contact-grid{

    display:grid;

    grid-template-columns:.9fr 1.1fr;

    gap:60px;

}

.contact-info{

    display:grid;

    gap:22px;

    
}

.contact-item{

    background:#131A22;

    border-radius:18px;

    border:1px solid rgba(255,255,255,.05);

    padding:26px;

}

.contact-item h3{

    margin-bottom:10px;

}

.contact-item p{

    color:var(--text-light);

}

.contact-map iframe{

    width:100%;

    height:100%;

    min-height:420px;

    border:none;

    border-radius:22px;

}



/*==========================================================

FOOTER

==========================================================*/

.footer{

    background:#090C10;

    padding:80px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

}

.footer img{

    width:170px;

    margin-bottom:25px;

}

.footer p{

    color:var(--text-light);

    line-height:1.8;

}

.footer h4{

    margin-bottom:22px;

}

.footer ul{

    display:grid;

    gap:14px;

}

.footer li{

    color:var(--text-light);

    transition:.3s;

}

.footer li:hover{

    color:var(--green);

}

.footer-bottom{

    margin-top:60px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.06);

    text-align:center;

}



/*==========================================================

WHATSAPP

==========================================================*/

.whatsapp-button{

    position:fixed;

    right:30px;

    bottom:30px;

    width:68px;

    height:68px;

    border-radius:50%;

    background:#25D366;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 20px 45px rgba(37,211,102,.35);

    z-index:999;

    transition:.35s;

}

.whatsapp-button:hover{

    transform:scale(1.1);

}

.whatsapp-button img{

    width:34px;

}



/*==========================================================

ANIMAÇÕES

==========================================================*/

@keyframes fadeLeft{

    from{

        opacity:0;

        transform:translateX(-60px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

.hero-image img{

    animation:float 6s ease-in-out infinite;

}



/*==========================================================

RESPONSIVO

==========================================================*/

@media(max-width:1100px){

.hero-grid,
.solution-grid,
.about-grid,
.consultant-wrapper,
.contact-grid{

    grid-template-columns:1fr;

}

.hero{

    text-align:center;

}

.hero-buttons{

    justify-content:center;

}

.hero-features{

    grid-template-columns:1fr;

}

.summary-card{

    position:relative;

    top:0;

}

.footer-grid{

    grid-template-columns:repeat(2,1fr);

}

.brands-slider{

    grid-template-columns:repeat(3,1fr);

}

.numbers-grid{

    grid-template-columns:repeat(2,1fr);

}

.problems-grid{

    grid-template-columns:repeat(2,1fr);

}

}



@media(max-width:768px){

.menu{

    display:none;

}

.btn-header{

    display:none;

}

.menu-mobile{

    display:flex;

    flex-direction:column;

    gap:5px;

}

.menu-mobile span{

    width:28px;

    height:3px;

    background:#FFF;

    border-radius:20px;

}

.hero h1{

    font-size:2.6rem;

}

.section-title h2{

    font-size:2rem;

}

.solution-content h2,

.about-content h2,

.cta-box h2{

    font-size:2rem;

}

.option-grid{

    grid-template-columns:1fr;

}

.about-list{

    grid-template-columns:1fr;

}

.footer-grid{

    grid-template-columns:1fr;

}

.brands-slider{

    grid-template-columns:repeat(2,1fr);

}

.numbers-grid{

    grid-template-columns:1fr;

}

.problems-grid{

    grid-template-columns:1fr;

}

.cta-buttons{

    flex-direction:column;

}

.hero-buttons{

    flex-direction:column;

}

.contact-grid{

    gap:35px;

}

section{

    padding:80px 0;

}

.container{

    width:94%;

}

}



/*==========================================================

FIM DO CSS

==========================================================*/