:root {
    --primary: #d9e021; 
    --accent: #6d9eeb;  
    --dark: #000000;
    --dark-grey: #050505;
    --white: #ffffff;
    --font-display: 'Syncopate', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--dark); color: var(--white); font-family: var(--font-body); overflow-x: hidden; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

/* NAVBAR */
header { position: fixed; width: 100%; height: 120px; display: flex; align-items: center; z-index: 1000; transition: 0.4s; }
header.scrolled { height: 85px; background: rgba(0,0,0,0.95); backdrop-filter: blur(15px); border-bottom: 1px solid #111; }
nav { display: flex; justify-content: space-between; align-items: center; width: 100%; }

/* LOGO AUMENTADA EM 50% */
.brand-logo { height: 82px; width: auto; transition: 0.4s; }
header.scrolled .brand-logo { height: 50px; }

.nav-links { display: flex; list-style: none; gap: 40px; }
.nav-links a { text-decoration: none; color: var(--white); font-weight: 700; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.6; transition: 0.3s; }
.nav-links a:hover { opacity: 1; color: var(--primary); }
.cta-nav { border: 1px solid var(--primary); color: var(--primary); padding: 10px 25px; text-decoration: none; font-weight: 900; font-size: 11px; text-transform: uppercase; transition: 0.3s; }
.cta-nav:hover { background: var(--primary); color: #000; }

/* HERO - FUNDO BLACKMAGIC FTP */
.hero { 
    height: 100vh; 
    background: linear-gradient(rgba(0,0,0,0.4), var(--dark)), url('https://frameproducoes.com.br/img/bg.png') center/cover no-repeat; 
    display: flex; 
    align-items: center; 
    position: relative; 
}
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(0,0,0,0.2) 0%, var(--dark) 85%); z-index: 1; }
.hero-content { position: relative; z-index: 10; }
.hero-tag { color: var(--primary); font-weight: 900; letter-spacing: 7px; font-size: 12px; margin-bottom: 20px; display: block; }
h1 { font-family: var(--font-display); font-size: clamp(35px, 8vw, 100px); line-height: 0.9; margin-bottom: 30px; letter-spacing: -2px; }
.outline { color: transparent; -webkit-text-stroke: 1px var(--white); }
.hero-sub { font-size: 20px; font-weight: 200; color: #aaa; max-width: 600px; margin-bottom: 50px; line-height: 1.6; }

/* STATS */
.stats-bar { background: #020202; border-top: 1px solid #111; border-bottom: 1px solid #111; padding: 80px 0; }
.stats-grid { display: flex; justify-content: space-around; text-align: center; }
.stat-item strong { display: block; font-size: 55px; font-family: var(--font-display); color: var(--white); }
.stat-item span { color: #555; text-transform: uppercase; font-size: 11px; letter-spacing: 3px; font-weight: 700; margin-top: 10px; display: block; }

/* EXPERTISE */
.section { padding: 140px 0; }
.yellow-tag { color: var(--primary); font-weight: 900; font-size: 14px; letter-spacing: 4px; display: block; margin-bottom: 20px; }
h2 { font-family: var(--font-display); font-size: 45px; margin-bottom: 80px; }
h2 u { text-decoration: none; border-bottom: 6px solid var(--primary); }
.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.ex-card { background: #030303; padding: 70px 45px; border: 1px solid #080808; transition: 0.5s; position: relative; }
.ex-card:hover { border-color: var(--primary); transform: translateY(-15px); background: var(--dark-grey); }
.ex-num { position: absolute; top: 30px; right: 30px; font-family: var(--font-display); font-size: 12px; color: #222; }
.ex-card h3 { font-family: var(--font-display); font-size: 18px; margin-bottom: 25px; color: var(--white); }
.ex-card p { color: #777; font-size: 16px; line-height: 1.7; }

/* FOOTER */
.main-footer { padding: 100px 0 50px; border-top: 1px solid #111; background: #020202; }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-end; }
.footer-logo { height: 90px; margin-bottom: 20px; }
.footer-left p { color: #444; font-weight: 700; font-size: 14px; line-height: 1.6; }
.footer-right { text-align: right; color: #333; font-size: 10px; letter-spacing: 2px; }

/* SCROLL ANIMATION */
.scroll-down { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); width: 2px; height: 60px; background: rgba(255,255,255,0.05); }
.scroll-down span { position: absolute; top: 0; left: 0; width: 100%; height: 20px; background: var(--primary); animation: move 2s infinite; }
@keyframes move { 0% { top: 0; opacity: 0; } 50% { opacity: 1; } 100% { top: 40px; opacity: 0; } }

@media (max-width: 991px) {
    .expertise-grid { grid-template-columns: 1fr; }
    .nav-links, .cta-nav { display: none; }
    .stats-grid { flex-direction: column; gap: 50px; }
}