/* ========================================================================
   01. VARIÁVEIS GLOBAIS
   Troque estas cores para adaptar o projeto à identidade visual da Inove.
   ======================================================================== */
:root {
    --bg: #080b12;
    --bg-soft: #0e1420;
    --panel: #111827;
    --panel-light: #172133;
    --text: #f4f7fb;
    --muted: #9ca8ba;
    --line: rgba(255,255,255,.12);
    --accent: #65f2a5;
    --accent-two: #6d7cff;
    --max-width: 1380px;
    --header-height: 92px;
}

/* ========================================================================
   02. RESET E CONFIGURAÇÕES BÁSICAS
   ======================================================================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--accent); color: #07110c; }

/* ========================================================================
   03. CLASSES REUTILIZÁVEIS
   ======================================================================== */
.section { width: min(calc(100% - 56px), var(--max-width)); margin-inline: auto; }
.section-label {
    color: var(--accent);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.section-title {
    margin: 24px 0 0;
    max-width: 900px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(2.4rem, 5vw, 5.8rem);
    line-height: .98;
    letter-spacing: -.055em;
}
.text-link { display: inline-flex; align-items: center; gap: 14px; font-weight: 600; }
.text-link span { transition: transform .3s ease; }
.text-link:hover span { transform: translate(5px,-4px); }
.button {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 700;
}
.button-primary { background: var(--accent); color: #07110c; }

/* ========================================================================
   04. CURSOR E BARRA DE PROGRESSO
   ======================================================================== */
.cursor-glow {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(101,242,165,.11), transparent 66%);
    transform: translate(-50%,-50%);
}
.scroll-progress {
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,.04);
}
.scroll-progress span { display: block; width: 0; height: 100%; background: var(--accent); }

/* ========================================================================
   05. HEADER E MENU MOBILE
   ======================================================================== */
.site-header {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto 0;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 max(28px, calc((100vw - var(--max-width))/2));
    border-bottom: 1px solid transparent;
    transition: background .35s ease, border-color .35s ease, height .35s ease;
}
.site-header.is-scrolled {
    height: 76px;
    background: rgba(8,11,18,.82);
    border-color: var(--line);
    backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 12px; font-family: "Manrope", sans-serif; font-weight: 800; }
.brand-mark {
    width: 42px; height: 42px; border-radius: 12px;
    display: grid; place-items: center;
    background: var(--accent); color: #07110c;
    letter-spacing: -.08em;
}
.brand-text { display: flex; flex-direction: column; line-height: .88; letter-spacing: .03em; }
.brand-text small { margin-top: 6px; font-size: .58rem; letter-spacing: .28em; color: var(--muted); }
.desktop-nav { display: flex; gap: 32px; }
.desktop-nav a { color: #dbe2ed; font-size: .92rem; transition: color .25s ease; }
.desktop-nav a:hover { color: var(--accent); }
.header-cta {
    display: inline-flex; align-items: center; gap: 14px;
    padding: 13px 18px; border: 1px solid var(--line); border-radius: 999px;
}
.menu-toggle { display: none; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; background: transparent; }
.menu-toggle span { display: block; width: 18px; height: 1px; margin: 5px auto; background: white; transition: transform .3s ease; }
.menu-toggle.is-open span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-toggle.is-open span:last-child { transform: translateY(-3px) rotate(-45deg); }
.mobile-menu {
    position: fixed; z-index: 999; inset: 0;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    background: var(--bg); visibility: hidden; opacity: 0;
}
.mobile-menu nav { display: grid; text-align: center; gap: 18px; }
.mobile-menu nav a { font-family: "Manrope"; font-size: clamp(2.3rem,10vw,4rem); font-weight: 700; }
.mobile-menu small { margin-top: 54px; color: var(--muted); letter-spacing: .12em; }

/* ========================================================================
   06. HERO / CHAMADA
   ======================================================================== */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 55px) max(28px, calc((100vw - var(--max-width))/2)) 70px;
    overflow: hidden;
}
.hero-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 90px 90px;
    opacity: .16;
    mask-image: linear-gradient(to bottom, black, transparent 80%);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(18px); opacity: .5; }
.hero-orb-one { width: 560px; height: 560px; right: -180px; top: 5%; background: rgba(109,124,255,.24); }
.hero-orb-two { width: 350px; height: 350px; left: 30%; bottom: -190px; background: rgba(101,242,165,.17); }
.hero-content { position: relative; z-index: 2; width: 100%; display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.eyebrow { display: flex; align-items: center; gap: 12px; color: #cfd8e6; font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow span { width: 36px; height: 1px; background: var(--accent); }
.hero-title { margin: 28px 0 25px; font-family: "Manrope"; font-size: clamp(3.2rem, 6.8vw, 7.8rem); line-height: .9; letter-spacing: -.07em; }
.title-line { display: block; overflow: hidden; padding-bottom: .08em; }
.title-line > span { display: block; }
.title-accent { color: var(--accent); }
.hero-description { max-width: 620px; color: var(--muted); font-size: clamp(1rem,1.4vw,1.18rem); line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 36px; }
.hero-stage { position: relative; min-height: 540px; perspective: 1200px; }
.stage-window {
    position: absolute; width: min(100%, 620px); right: 0; top: 55px;
    border: 1px solid rgba(255,255,255,.18); border-radius: 24px; overflow: hidden;
    background: rgba(17,24,39,.85); box-shadow: 0 40px 100px rgba(0,0,0,.5);
    transform: rotateY(-8deg) rotateX(3deg);
}
.browser-bar { height: 48px; display: flex; align-items: center; gap: 8px; padding: 0 16px; border-bottom: 1px solid var(--line); }
.browser-bar i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.35); }
.browser-bar span { margin-left: 10px; color: var(--muted); font-size: .68rem; }
.stage-screen { position: relative; min-height: 410px; padding: 38px; background: linear-gradient(135deg,#111827,#090d16); overflow: hidden; }
.stage-menu { width: 150px; height: 8px; border-radius: 10px; background: rgba(255,255,255,.14); }
.stage-copy { position: relative; z-index: 2; max-width: 300px; margin-top: 100px; display: grid; gap: 15px; }
.stage-copy small { color: var(--accent); font-size: .62rem; letter-spacing: .16em; }
.stage-copy strong { font-family: "Manrope"; font-size: clamp(2rem,3vw,3.6rem); line-height: .95; }
.stage-copy span { width: 86px; height: 9px; border-radius: 10px; background: var(--accent); }
.stage-art b,.stage-art i,.stage-art em { position: absolute; border-radius: 50%; }
.stage-art b { width: 270px; height: 270px; right: -60px; bottom: -30px; border: 48px solid rgba(109,124,255,.55); }
.stage-art i { width: 160px; height: 160px; right: 30px; bottom: 48px; border: 1px solid rgba(255,255,255,.25); }
.stage-art em { width: 42px; height: 42px; right: 88px; bottom: 105px; background: var(--accent); }
.floating-card { position: absolute; z-index: 3; padding: 18px 22px; border: 1px solid rgba(255,255,255,.17); border-radius: 18px; background: rgba(10,15,25,.85); backdrop-filter: blur(15px); box-shadow: 0 20px 50px rgba(0,0,0,.28); }
.floating-card-one { left: 0; bottom: 68px; display: grid; }
.floating-card-one strong { font-family: "Manrope"; color: var(--accent); font-size: 2rem; }
.floating-card-one span,.floating-card-two { color: var(--muted); font-size: .75rem; }
.floating-card-two { right: 10px; top: 22px; }
.scroll-hint { position: absolute; left: max(28px, calc((100vw - var(--max-width))/2)); bottom: 28px; display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: .64rem; letter-spacing: .14em; }
.scroll-hint span { width: 35px; height: 1px; background: var(--accent); transform-origin: left; }

/* ========================================================================
   07. SOBRE E CARROSSEL VERTICAL
   ======================================================================== */
.about { padding-top: 160px; padding-bottom: 170px; }
.about-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 110px; margin-top: 34px; }
.about-kicker { color: var(--muted); font-size: 1.05rem; }
.about-side { align-self: end; }
.about-side > p { color: var(--muted); line-height: 1.8; font-size: 1.05rem; }
.numbers { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 48px; }
.number-item { padding-top: 18px; border-top: 1px solid var(--line); }
.number-item strong { display: block; font-family: "Manrope"; font-size: clamp(2rem,3vw,3.8rem); color: var(--accent); }
.number-item span { color: var(--muted); font-size: .78rem; }
.phrase-rotator { margin-top: 115px; padding: 35px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 16px; font-family: "Manrope"; font-size: clamp(1.6rem,3.5vw,4rem); font-weight: 700; letter-spacing: -.04em; }
.phrase-prefix { white-space: nowrap; }
.phrase-window { height: 1.15em; overflow: hidden; color: var(--accent); }
.phrase-track { display: flex; flex-direction: column; }
.phrase-track span { height: 1.15em; white-space: nowrap; }

/* ========================================================================
   08. SERVIÇOS
   ======================================================================== */
.services { padding-bottom: 170px; }
.services-head { display: grid; grid-template-columns: 1fr 350px; gap: 80px; align-items: end; margin-bottom: 70px; }
.services-head > p { color: var(--muted); line-height: 1.8; }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 330px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .35s ease, transform .35s ease; overflow: hidden; }
.service-card::after { content:""; position:absolute; width:160px; height:160px; right:-110px; bottom:-110px; border-radius:50%; background:var(--accent); opacity:0; transition: all .45s ease; }
.service-card:hover { background: var(--panel); transform: translateY(-5px); }
.service-card:hover::after { right:-55px; bottom:-55px; opacity:.12; }
.service-number { color: var(--muted); font-size: .72rem; letter-spacing: .14em; }
.service-icon { position: absolute; right: 28px; top: 26px; width: 45px; height: 45px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; }
.service-card h3 { margin: 95px 0 18px; max-width: 280px; font-family: "Manrope"; font-size: 1.55rem; }
.service-card p { margin: 0; color: var(--muted); line-height: 1.7; font-size: .94rem; }
.service-featured { grid-column: span 2; background: var(--accent); color: #07110c; }
.service-featured p { color: rgba(7,17,12,.7); max-width: 600px; }
.service-featured .service-number { color: rgba(7,17,12,.55); }
.service-featured .service-icon { border-color: rgba(7,17,12,.25); }
.service-featured a { position: absolute; right: 30px; bottom: 30px; display: flex; gap: 12px; font-weight: 700; }

/* ========================================================================
   09. CALL TO ACTION DE VENDA
   ======================================================================== */
.sales-cta { position: relative; min-height: 620px; display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: 90px max(28px, calc((100vw - var(--max-width))/2)); background: var(--accent); color: #07110c; overflow: hidden; }
.sales-cta-bg { position:absolute; width:700px; height:700px; right:-230px; top:-250px; border:100px solid rgba(7,17,12,.07); border-radius:50%; }
.sales-cta-copy { position: relative; z-index: 2; max-width: 970px; }
.sales-cta .section-label { color: rgba(7,17,12,.65); }
.sales-cta h2 { margin: 24px 0; font-family: "Manrope"; font-size: clamp(3rem,6vw,7.2rem); line-height: .93; letter-spacing: -.065em; }
.sales-cta p { font-size: 1.1rem; }
.circle-cta { position: relative; z-index: 2; flex: 0 0 210px; height: 210px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; background: #07110c; color: white; font-weight: 700; text-align: center; }
.circle-cta b { color: var(--accent); font-size: 1.4rem; }

/* ========================================================================
   10. PORTFÓLIO HORIZONTAL
   ======================================================================== */
.portfolio { padding-top: 160px; overflow: hidden; }
.portfolio-head { display: grid; grid-template-columns: 1fr 340px; gap: 70px; align-items: end; margin-bottom: 70px; }
.portfolio-head > p { color: var(--muted); line-height: 1.8; }
.portfolio-pin { height: 100vh; display: flex; align-items: center; overflow: hidden; }
.portfolio-track { display: flex; gap: 28px; padding-left: max(28px, calc((100vw - var(--max-width))/2)); padding-right: 10vw; will-change: transform; }
.project-card { width: min(72vw, 820px); flex: 0 0 auto; }
.project-visual { position: relative; height: min(58vh, 540px); border-radius: 28px; overflow: hidden; display: flex; align-items: center; justify-content: center; flex-direction: column; box-shadow: 0 35px 80px rgba(0,0,0,.32); }
.project-visual::before { content:""; position:absolute; inset:28px; border:1px solid rgba(255,255,255,.25); border-radius:18px; }
.project-visual span { position: relative; z-index: 2; font-family: "Manrope"; font-size: clamp(4rem,10vw,10rem); font-weight: 800; line-height: .8; }
.project-visual strong { position: relative; z-index: 2; margin-top: 20px; letter-spacing: .24em; font-size: .78rem; }
.project-visual i { position:absolute; width:240px; height:240px; border-radius:50%; border:45px solid rgba(255,255,255,.13); right:-30px; bottom:-55px; }
.project-blue .project-visual { background: linear-gradient(135deg,#0a66c2,#082f65); }
.project-green .project-visual { background: linear-gradient(135deg,#0a9b6a,#063c2d); }
.project-orange .project-visual { background: linear-gradient(135deg,#ef7d25,#7c2d12); }
.project-violet .project-visual { background: linear-gradient(135deg,#7357ff,#2c1f70); }
.project-card footer { display:flex; justify-content:space-between; align-items:end; padding:22px 4px; }
.project-card footer small { color:var(--accent); font-size:.67rem; letter-spacing:.14em; }
.project-card footer h3 { margin:7px 0 0; font-family:"Manrope"; font-size:1.5rem; }
.project-card footer b { color:var(--muted); font-size:.8rem; }

/* ========================================================================
   11. CLIENTES / FAIXAS CONTÍNUAS
   ======================================================================== */
.clients { padding-top: 150px; padding-bottom: 160px; }
.clients-head { max-width: 900px; margin-bottom: 75px; }
.logo-marquee { width: 100vw; margin-left: calc(50% - 50vw); overflow: hidden; border-top: 1px solid var(--line); }
.logo-marquee:last-child { border-bottom: 1px solid var(--line); }
.logo-track { width: max-content; display: flex; }
.logo-track span { min-width: 260px; padding: 30px 45px; border-right: 1px solid var(--line); color: #cad3df; font-family: "Manrope"; font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-align:center; }

/* ========================================================================
   12. BLOG E REDES SOCIAIS
   ======================================================================== */
.content-section { padding-bottom: 180px; }
.content-head { display:grid; grid-template-columns:1fr auto; align-items:end; gap:50px; margin-bottom:65px; }
.content-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.content-card { border-top:1px solid var(--line); padding-top:16px; }
.content-image { position:relative; height:350px; display:grid; place-items:center; border-radius:20px; overflow:hidden; }
.content-image::after { content:""; position:absolute; width:210px; height:210px; border:40px solid rgba(255,255,255,.12); border-radius:50%; right:-35px; bottom:-45px; }
.content-image span { position:relative; z-index:2; font-family:"Manrope"; font-size:clamp(2rem,4vw,4.5rem); font-weight:800; letter-spacing:-.06em; }
.content-image-one { background:linear-gradient(135deg,#223047,#101722); }
.content-image-two { background:linear-gradient(135deg,#1f6f50,#0d2f25); }
.content-image-three { background:linear-gradient(135deg,#6454ed,#251c68); }
.content-meta { display:flex; justify-content:space-between; gap:15px; margin-top:20px; color:var(--muted); font-size:.65rem; letter-spacing:.1em; }
.content-card h3 { margin:16px 0; font-family:"Manrope"; font-size:1.35rem; line-height:1.25; }
.content-card > a { display:inline-flex; gap:10px; color:var(--accent); font-size:.86rem; font-weight:700; }

/* ========================================================================
   13. CONTATO
   ======================================================================== */
.contact { position:relative; min-height:760px; padding:150px max(28px, calc((100vw - var(--max-width))/2)) 90px; display:flex; flex-direction:column; justify-content:center; overflow:hidden; border-top:1px solid var(--line); }
.contact-orb { position:absolute; width:700px; height:700px; right:-200px; top:0; border-radius:50%; background:radial-gradient(circle,rgba(109,124,255,.26),transparent 65%); }
.contact-title { position:relative; margin:28px 0; max-width:1200px; font-family:"Manrope"; font-size:clamp(3.2rem,7vw,8.5rem); line-height:.91; letter-spacing:-.07em; }
.contact > p { position:relative; max-width:650px; color:var(--muted); line-height:1.8; }
.contact-button { position:relative; width:min(100%,420px); min-height:82px; margin-top:40px; display:flex; align-items:center; justify-content:space-between; padding:0 30px; border-radius:999px; background:var(--accent); color:#07110c; font-weight:800; }
.contact-button b { font-size:1.5rem; }

/* ========================================================================
   14. RODAPÉ
   ======================================================================== */
.site-footer { padding:0 max(28px, calc((100vw - var(--max-width))/2)); background:#05070b; }
.footer-top { min-height:260px; display:grid; grid-template-columns:1fr 1fr 1fr; gap:60px; align-items:center; border-bottom:1px solid var(--line); }
.footer-top p { color:var(--muted); line-height:1.7; }
.footer-social { display:flex; justify-content:flex-end; gap:22px; flex-wrap:wrap; }
.footer-social a { color:#d7deea; font-size:.85rem; }
.footer-bottom { min-height:95px; display:flex; align-items:center; justify-content:space-between; color:var(--muted); font-size:.75rem; }

/* ========================================================================
   15. RESPONSIVIDADE
   ======================================================================== */
@media (max-width: 1100px) {
    .desktop-nav,.header-cta { display:none; }
    .menu-toggle { display:block; }
    .hero-content { grid-template-columns:1fr; }
    .hero-stage { min-height:470px; }
    .stage-window { left:5%; right:auto; width:90%; }
    .about-grid,.services-head,.portfolio-head { grid-template-columns:1fr; gap:40px; }
    .service-grid { grid-template-columns:repeat(2,1fr); }
    .service-featured { grid-column:span 2; }
    .content-grid { grid-template-columns:1fr 1fr; }
    .content-card:last-child { grid-column:span 2; }
    .footer-top { grid-template-columns:1fr 1fr; }
    .footer-social { grid-column:span 2; justify-content:flex-start; }
}
@media (max-width: 720px) {
    :root { --header-height:76px; }
    .section { width:min(calc(100% - 36px),var(--max-width)); }
    .cursor-glow { display:none; }
    .site-header { padding-inline:18px; }
    .brand-text { display:none; }
    .hero { padding-inline:18px; align-items:flex-start; padding-top:130px; }
    .hero-title { font-size:clamp(3rem,15vw,5rem); }
    .hero-actions { align-items:flex-start; flex-direction:column; }
    .hero-stage { min-height:380px; margin-top:20px; }
    .stage-window { top:40px; left:0; width:100%; transform:none; }
    .stage-screen { min-height:300px; padding:25px; }
    .stage-copy { margin-top:70px; }
    .floating-card-one { left:8px; bottom:0; }
    .floating-card-two { right:8px; top:8px; }
    .scroll-hint { display:none; }
    .about { padding-top:100px; padding-bottom:100px; }
    .numbers { grid-template-columns:1fr; }
    .phrase-rotator { align-items:flex-start; flex-direction:column; font-size:clamp(1.5rem,8vw,2.5rem); }
    .phrase-window { width:100%; }
    .service-grid { grid-template-columns:1fr; }
    .service-featured { grid-column:auto; }
    .service-featured a { position:static; margin-top:26px; }
    .sales-cta { align-items:flex-start; flex-direction:column; min-height:auto; }
    .circle-cta { flex-basis:170px; width:170px; height:170px; }
    .portfolio { padding-top:100px; }
    .portfolio-pin { height:auto; overflow:visible; }
    .portfolio-track { width:100%; padding:0 18px 100px; flex-direction:column; }
    .project-card { width:100%; }
    .project-visual { height:380px; }
    .content-head { grid-template-columns:1fr; }
    .content-grid { grid-template-columns:1fr; }
    .content-card:last-child { grid-column:auto; }
    .content-image { height:300px; }
    .contact { min-height:650px; padding-inline:18px; }
    .footer-top { grid-template-columns:1fr; padding:60px 0; }
    .footer-social { grid-column:auto; }
    .footer-bottom { align-items:flex-start; flex-direction:column; justify-content:center; gap:10px; }
}

/* ========================================================================
   16. ACESSIBILIDADE: REDUÇÃO DE MOVIMENTO
   Usuários que ativaram “reduzir movimento” no sistema não recebem efeitos
   longos ou deslocamentos bruscos.
   ======================================================================== */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior:auto; }
    *,*::before,*::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
}
