:root {
    --bg: #050505;
    --card-bg: rgba(18, 18, 22, 0.7);
    --primary: #00f2ff;
    --secondary: #7c3aed;
    --text: #ffffff;
    --text-dim: #a1a1aa;
    --border: rgba(255, 255, 255, 0.08);
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Camada de Glow */
.glow-container { position: fixed; inset: 0; z-index: -1; pointer-events: none; }
.glow-1 { position: absolute; top: -10%; left: 10%; width: 50vw; height: 50vw; background: radial-gradient(circle, rgba(124, 58, 237, 0.15), transparent); filter: blur(100px); }
.glow-2 { position: absolute; bottom: 5%; right: 5%; width: 40vw; height: 40vw; background: radial-gradient(circle, rgba(0, 242, 255, 0.1), transparent); filter: blur(80px); }

/* Navegação */
.nav-blur {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(5, 5, 5, 0.6); backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--border);
}
.nav-content { max-width: 1200px; margin: 0 auto; padding: 1.2rem 2rem; display: flex; justify-content: space-between; align-items: center; }
.brand { font-size: 1.6rem; font-weight: 800; }
.brand span { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { color: var(--text-dim); text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
.btn-main { background: var(--text); color: var(--bg); padding: 0.6rem 1.4rem; border-radius: 100px; font-weight: 600; }

/* Hero Section */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.hero-text { text-align: center; margin: 150px auto 100px; max-width: 800px; }
.hero-badge { display: inline-block; padding: 5px 15px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 100px; font-size: 0.75rem; color: var(--primary); margin-bottom: 2rem; }
.hero-text h1 { font-size: clamp(2.5rem, 8vw, 4.5rem); font-weight: 800; letter-spacing: -2px; margin-bottom: 1.5rem; line-height: 1; }
.hero-text h1 span { background: linear-gradient(90deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-text p { font-size: 1.25rem; color: var(--text-dim); }

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 1.5rem;
    margin-bottom: 100px;
}
.bento-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
}
.bento-item:hover { transform: translateY(-5px); border-color: var(--primary); background: rgba(25, 25, 30, 0.9); }
.bento-item.wide { grid-column: span 2; }
.bento-item.tall { grid-row: span 2; display: flex; flex-direction: column; justify-content: flex-end; }

.icon-box { width: 45px; height: 45px; background: rgba(255,255,255,0.05); border-radius: 12px; display: grid; place-items: center; margin-bottom: 1.5rem; color: var(--primary); }
.icon-box.secondary { color: var(--secondary); }

.bento-item h3 { font-size: 1.4rem; margin-bottom: 0.8rem; font-weight: 600; }
.bento-item p { color: var(--text-dim); font-size: 0.95rem; }
.bento-tag { margin-top: 1rem; font-size: 0.7rem; font-weight: 800; color: var(--primary); text-transform: uppercase; }

/* Footer */
.minimal-footer { text-align: center; padding-bottom: 4rem; color: #444; }
.footer-line { width: 50px; height: 1px; background: #222; margin: 0 auto 2rem; }

/* Reveal Animation */
.reveal { opacity: 0; transform: translateY(30px); transition: 1s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
    .bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .bento-item.wide, .bento-item.tall { grid-column: span 1; grid-row: span 1; }
    .hero-text { margin-top: 100px; }
}
