@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');

:root{
    --bg:#07101b;
    --bg-alt:#0a1522;
    --surface:#0c1928;
    --surface-2:#0f1e2f;
    --text:#f4f7fb;
    --muted:#93a2b5;
    --muted-2:#66778b;
    --line:rgba(255,255,255,.09);
    --accent:#20d7a7;
    --accent-soft:rgba(32,215,167,.12);
    --blue:#4a93ff;
    --container:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    margin:0;
    background:var(--bg);
    color:var(--text);
    font-family:'Inter',sans-serif;
    -webkit-font-smoothing:antialiased;
}
body.menu-open{overflow:hidden}
a{color:inherit;text-decoration:none}
button{font:inherit}
.container{
    width:min(var(--container),calc(100% - 48px));
    margin-inline:auto;
}
.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:100;
    border-bottom:1px solid transparent;
    transition:.25s ease;
}
.site-header.scrolled{
    background:rgba(7,16,27,.82);
    backdrop-filter:blur(18px);
    border-color:var(--line);
}
.nav-wrap{
    height:84px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:32px;
}
.brand{display:flex;flex-direction:column;gap:1px}
.brand-mark{
    font-size:23px;
    line-height:1;
    font-weight:800;
    letter-spacing:-.055em;
}
.brand-sub{
    font-size:9px;
    margin-top:4px;
    color:var(--muted);
    letter-spacing:.16em;
    text-transform:uppercase;
}
.main-nav{display:flex;align-items:center;gap:34px}
.main-nav a{
    font-size:13px;
    font-weight:600;
    color:#b7c2ce;
    transition:.2s ease;
}
.main-nav a:hover{color:#fff}
.menu-toggle{
    display:none;
    width:42px;height:42px;padding:10px;
    border:1px solid var(--line);
    border-radius:50%;
    background:transparent;
}
.menu-toggle span{
    display:block;
    width:100%;
    height:1px;
    margin:5px 0;
    background:#fff;
    transition:.2s ease;
}
.hero{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:150px 0 48px;
    position:relative;
    overflow:hidden;
}
.hero::before{
    content:"";
    position:absolute;
    width:720px;height:720px;
    right:-260px;top:-220px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(32,215,167,.11),transparent 68%);
    pointer-events:none;
}
.hero-grid{
    display:grid;
    grid-template-columns:1.06fr .94fr;
    align-items:center;
    gap:86px;
    flex:1;
}
.eyebrow{
    margin:0 0 24px;
    color:var(--accent);
    font-size:11px;
    font-weight:700;
    letter-spacing:.2em;
}
h1,h2,h3,p{margin-top:0}
h1{
    max-width:800px;
    margin-bottom:30px;
    font-size:clamp(54px,7vw,96px);
    line-height:.92;
    letter-spacing:-.072em;
    font-weight:700;
}
h1 span{color:#94a3b4}
.hero-lead{
    max-width:660px;
    color:#a4b1c1;
    font-size:18px;
    line-height:1.7;
}
.hero-actions{display:flex;gap:12px;margin-top:36px;flex-wrap:wrap}
.btn{
    display:inline-flex;
    align-items:center;
    gap:16px;
    min-height:50px;
    padding:0 20px;
    font-size:13px;
    font-weight:700;
    border:1px solid var(--line);
    transition:.22s ease;
}
.btn-primary{
    color:#06100e;
    background:var(--accent);
    border-color:var(--accent);
}
.btn-primary:hover{transform:translateY(-2px);filter:brightness(1.06)}
.btn-ghost:hover{background:rgba(255,255,255,.05)}
.hero-code{position:relative}
.code-window{
    border:1px solid var(--line);
    background:rgba(9,20,33,.88);
    box-shadow:0 35px 100px rgba(0,0,0,.3);
}
.code-top{
    height:46px;
    padding:0 15px;
    display:flex;
    align-items:center;
    gap:7px;
    border-bottom:1px solid var(--line);
}
.code-top>span{
    width:7px;height:7px;border-radius:50%;
    background:#415165;
}
.code-top small{
    margin-left:auto;
    color:#68788d;
    font-family:'Space Mono',monospace;
    font-size:9px;
}
.code-window pre{
    min-height:360px;
    margin:0;
    padding:42px 34px;
    overflow:auto;
    color:#cfdae7;
    font:12px/1.9 'Space Mono',monospace;
}
.c-muted{color:#66778b}.c-blue{color:#69a9ff}.c-green{color:#64e3bd}.c-purple{color:#c08bff}.c-yellow{color:#ffd27a}
.code-status{
    height:44px;
    display:flex;
    align-items:center;
    gap:9px;
    padding:0 15px;
    border-top:1px solid var(--line);
    color:#78899e;
    font:9px 'Space Mono',monospace;
}
.status-dot{
    width:7px;height:7px;border-radius:50%;
    background:var(--accent);
    box-shadow:0 0 12px var(--accent);
}
.hero-foot{
    margin-top:70px;
    padding-top:24px;
    border-top:1px solid var(--line);
    display:flex;
    justify-content:space-between;
    gap:24px;
    color:#536477;
    font-size:9px;
    letter-spacing:.2em;
}
.section{padding:130px 0}
.section-about{background:#f2f4f6;color:#0c1520}
.section-services{background:var(--bg)}
.section-products{background:#091421}
.section-custom{background:#eef1f3;color:#0b1520}
.section-contact{padding:150px 0;background:var(--accent);color:#06110e}
.section-intro{
    display:grid;
    grid-template-columns:72px 1fr;
    gap:30px;
    margin-bottom:78px;
}
.section-index{
    width:42px;height:42px;
    display:grid;place-items:center;
    border:1px solid currentColor;
    border-radius:50%;
    opacity:.55;
    font-size:12px;
    font-weight:700;
}
.section h2{
    margin:0;
    font-size:clamp(44px,5.8vw,78px);
    line-height:.96;
    letter-spacing:-.06em;
    font-weight:600;
}
.section-about .eyebrow,.section-custom .eyebrow{color:#0f8a6f}
.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:100px;
}
.about-main p{
    max-width:610px;
    font-size:20px;
    line-height:1.65;
    color:#374452;
}
.about-main p:first-child{color:#0c1520;font-size:25px}
.principles{border-top:1px solid rgba(6,15,24,.15)}
.principle{
    display:grid;
    grid-template-columns:52px 1fr;
    gap:18px;
    padding:25px 0;
    border-bottom:1px solid rgba(6,15,24,.15);
}
.principle>span{font-size:11px;color:#5a6978}
.principle h3{margin:0 0 6px;font-size:17px}
.principle p{margin:0;color:#65717e;font-size:13px;line-height:1.6}
.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    border-top:1px solid var(--line);
    border-left:1px solid var(--line);
}
.service-card{
    min-height:310px;
    padding:28px;
    border-right:1px solid var(--line);
    border-bottom:1px solid var(--line);
    position:relative;
    transition:.25s ease;
}
.service-card:hover{background:rgba(255,255,255,.035)}
.service-number{color:#536478;font-size:10px;margin-bottom:84px}
.service-card h3{
    max-width:260px;
    margin-bottom:14px;
    font-size:23px;
    letter-spacing:-.035em;
}
.service-card p{
    max-width:300px;
    margin:0;
    color:#8291a4;
    font-size:13px;
    line-height:1.7;
}
.service-arrow{
    position:absolute;
    right:25px;top:25px;
    color:#607185;
    font-size:18px;
}
.product-card{
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    min-height:570px;
    border:1px solid var(--line);
    overflow:hidden;
}
.product-copy{
    padding:34px 42px 42px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}
.product-meta{
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#68798e;
    font-size:10px;
}
.product-status{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 11px;
    border:1px solid rgba(32,215,167,.28);
    color:#87efd5;
    background:rgba(32,215,167,.06);
    text-transform:uppercase;
    letter-spacing:.1em;
}
.product-status i{
    width:6px;height:6px;border-radius:50%;
    background:var(--accent);
    box-shadow:0 0 9px var(--accent);
}
.product-copy h3{
    margin:0 0 20px;
    font-size:clamp(54px,6vw,84px);
    letter-spacing:-.07em;
}
.product-description{
    max-width:470px;
    color:#8d9caf;
    line-height:1.8;
}
.product-tags{display:flex;gap:8px;flex-wrap:wrap}
.product-tags span{
    padding:8px 10px;
    border:1px solid var(--line);
    color:#7e8da0;
    font-size:10px;
}
.product-preview{
    min-width:0;
    padding:55px 0 55px 55px;
    display:flex;
    align-items:center;
    background:
        radial-gradient(circle at 80% 20%,rgba(32,215,167,.08),transparent 35%),
        #07111d;
}
.preview-shell{
    width:100%;
    height:430px;
    display:grid;
    grid-template-columns:125px 1fr;
    background:#f5f7fa;
    color:#122033;
    box-shadow:0 35px 100px rgba(0,0,0,.35);
    overflow:hidden;
}
.preview-sidebar{padding:20px 12px;background:#0e1a29;color:#78889c}
.preview-sidebar strong{display:block;color:#fff;font-size:13px;margin:0 7px 26px}
.preview-sidebar em{font-style:normal;color:var(--accent)}
.preview-sidebar span{
    display:block;padding:8px 7px;margin:4px 0;border-radius:4px;font-size:8px
}
.preview-sidebar .active{background:#192b40;color:#fff}
.preview-content{padding:25px}
.preview-header{display:flex;align-items:center;justify-content:space-between}
.preview-header small{display:block;color:#8895a5;font-size:8px}
.preview-header strong{font-size:15px}
.preview-header>span{
    padding:8px 10px;
    background:#10243a;color:#fff;font-size:8px
}
.preview-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin:20px 0}
.preview-stats>div{padding:14px;border:1px solid #dfe5ec;background:#fff}
.preview-stats small{display:block;color:#8a97a8;font-size:7px;margin-bottom:6px}
.preview-stats strong{font-size:17px}
.preview-calendar{padding:14px;border:1px solid #dfe5ec;background:#fff}
.calendar-head{display:flex;justify-content:space-between;margin-bottom:11px;font-size:8px}
.calendar-grid{display:grid;grid-template-columns:repeat(7,1fr);gap:4px}
.calendar-grid span{
    height:27px;padding:5px;
    background:#f2f5f7;color:#718094;font-size:6px
}
.calendar-grid span.booked{background:#d7f7eb;color:#12765b}
.custom-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:100px;
    align-items:end;
}
.custom-grid .section-intro{margin-bottom:0}
.custom-copy p{
    max-width:520px;
    color:#4d5b68;
    font-size:19px;
    line-height:1.7;
}
.text-link{
    display:inline-flex;
    gap:15px;
    margin-top:20px;
    padding-bottom:7px;
    border-bottom:1px solid #0b1520;
    font-size:13px;
    font-weight:700;
}
.contact-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:100px;
    align-items:end;
}
.section-contact .eyebrow{color:#0b4a3c}
.section-contact h2{font-size:clamp(60px,8vw,106px)}
.contact-side p{
    max-width:480px;
    font-size:18px;
    line-height:1.7;
    color:#174b40;
}
.contact-mail{
    display:inline-flex;
    align-items:center;
    gap:20px;
    margin-top:25px;
    font-size:21px;
    font-weight:700;
    padding-bottom:8px;
    border-bottom:1px solid rgba(6,17,14,.5);
}





.cursor-glow{
    position:fixed;
    z-index:-1;
    width:420px;height:420px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(32,215,167,.06),transparent 70%);
    transform:translate(-50%,-50%);
    pointer-events:none;
}
.reveal{
    opacity:0;
    transform:translateY(24px);
    transition:opacity .7s ease,transform .7s ease;
}
.reveal.visible{opacity:1;transform:none}

@media(max-width:960px){
    .hero-grid,.about-grid,.product-card,.custom-grid,.contact-grid{grid-template-columns:1fr}
    .hero-grid{gap:50px}
    .hero{padding-top:130px}
    .hero-code{max-width:650px}
    .about-grid,.custom-grid,.contact-grid{gap:55px}
    .services-grid{grid-template-columns:repeat(2,1fr)}
    .product-preview{padding:35px}
    .section{padding:95px 0}
}
@media(max-width:720px){
    .container{width:min(100% - 28px,var(--container))}
    .site-header{background:rgba(7,16,27,.88);backdrop-filter:blur(18px)}
    .menu-toggle{display:block}
    .main-nav{
        position:fixed;
        inset:84px 0 auto 0;
        height:calc(100vh - 84px);
        padding:45px 24px;
        flex-direction:column;
        align-items:flex-start;
        gap:0;
        background:#07101b;
        opacity:0;
        visibility:hidden;
        transform:translateY(-10px);
        transition:.2s ease;
    }
    .main-nav.open{opacity:1;visibility:visible;transform:none}
    .main-nav a{
        width:100%;
        padding:19px 0;
        border-bottom:1px solid var(--line);
        font-size:20px;
    }
    h1{font-size:clamp(48px,15vw,70px)}
    .hero-foot{display:grid;grid-template-columns:1fr 1fr;row-gap:15px}
    .section-intro{grid-template-columns:46px 1fr;gap:16px;margin-bottom:55px}
    .section-index{width:34px;height:34px}
    .section h2{font-size:clamp(40px,12vw,62px)}
    .services-grid{grid-template-columns:1fr}
    .service-card{min-height:260px}
    .service-number{margin-bottom:62px}
    .product-copy{min-height:500px;padding:28px}
    .product-preview{padding:20px 0 20px 20px}
    .preview-shell{height:370px;grid-template-columns:92px 1fr}
    .preview-content{padding:15px}
    .preview-sidebar{padding:15px 8px}
    .preview-stats{grid-template-columns:1fr}
    .preview-stats>div:nth-child(n+2){display:none}
    .calendar-grid span{height:23px}
    .section-contact h2{font-size:clamp(55px,17vw,80px)}
    
    .cursor-glow{display:none}
}










/* Footer final - estrutura e assinatura no padrão Lusitec */
.site-footer{
    background:#050b12;
    color:rgba(255,255,255,.8);
    padding:0;
}

.footer-bottom{
    padding:28px 0 32px;
    text-align:center;
    font-size:.75rem;
    color:rgba(255,255,255,.4);
    line-height:1.8;
}

.footer-bottom p{
    margin:0;
    color:rgba(255,255,255,.4);
    font-size:.75rem;
    line-height:1.8;
}

.footer-parent{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    margin-top:14px;
    text-decoration:none;
    opacity:.75;
    transition:opacity .2s;
}

.footer-parent:hover,
.footer-parent:focus-visible,
.footer-parent:active{
    opacity:1;
}

.footer-parent span{
    font-size:.8125rem;
    color:rgba(255,255,255,.8);
    letter-spacing:.5px;
    line-height:1;
}

.footer-parent img{
    display:block;
    height:32px !important;
    width:auto !important;
    max-width:none !important;
    filter:none !important;
}

@media(max-width:768px){
    .footer-bottom{
        padding:28px 0 34px;
    }

    .footer-parent{
        margin-top:14px;
        gap:8px;
    }

    .footer-parent img{
        height:32px !important;
        width:auto !important;
    }
}
