/* === VARIÁVEIS DE COR === */
:root {
    --bg-color: #050505;
    --text-main: #ffffff;
    --text-muted: #888888;
    --neon-accent: #7b2cbf;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
}

/* === RESET E BASE === */
* { margin: 0; padding: 0; box-sizing: border-box; cursor: none; }
body { background-color: var(--bg-color); color: var(--text-main); font-family: 'Inter', sans-serif; overflow-x: hidden; }

/* === CURSOR LANTERNA === */
.cursor-dot { width: 40px; height: 40px; background: radial-gradient(circle, rgba(123, 44, 191, 0.8) 0%, rgba(123, 44, 191, 0) 70%); border-radius: 50%; position: fixed; pointer-events: none; transform: translate(-50%, -50%); z-index: 9999; transition: width 0.2s, height 0.2s; mix-blend-mode: screen; }

/* === HEADER === */
header { display: flex; justify-content: space-between; align-items: center; padding: 40px 8%; position: fixed; width: 100%; top: 0; z-index: 100; backdrop-filter: blur(0px); border-bottom: 1px solid transparent; transition: all 0.3s ease; }
.logo { font-family: 'Oswald', sans-serif; font-size: 28px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.logo span { color: var(--neon-accent); }
.nav-links { display: flex; gap: 50px; list-style: none; }
.nav-links a { color: var(--text-main); text-decoration: none; font-weight: 400; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s; }
.nav-links a:hover { color: var(--neon-accent); }
.hamburger { display: none; font-size: 24px; }

/* === HERO === */
.hero { height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 0 20px; position: relative; }
.hero h1 { font-family: 'Oswald', sans-serif; font-size: 5rem; line-height: 1.1; margin-bottom: 20px; text-transform: uppercase; z-index: 2; }
.hero p { font-size: 1.2rem; color: var(--text-muted); max-width: 600px; margin-bottom: 40px; z-index: 2; }
.btn-glow { padding: 15px 40px; font-size: 1rem; font-weight: 600; color: white; background: transparent; border: 1px solid var(--neon-accent); border-radius: 30px; text-transform: uppercase; letter-spacing: 1px; position: relative; overflow: hidden; transition: 0.3s; z-index: 2; }
.btn-glow:hover { background: var(--neon-accent); box-shadow: 0 0 20px var(--neon-accent); }
.bg-grid { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px); background-size: 50px 50px; z-index: 1; }

/* === SERVIÇOS === */
.services-section { padding: 150px 8%; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; position: relative; }
.manifesto { text-align: center; max-width: 800px; margin: 0 auto 100px auto; opacity: 0; transform: translateY(50px); }
.manifesto h2 { font-family: 'Oswald', sans-serif; font-size: 3rem; margin-bottom: 20px; text-transform: uppercase; }
.manifesto p { font-size: 1.2rem; color: var(--text-muted); line-height: 1.6; }
.cards-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { background: var(--card-bg); border: 1px solid var(--card-border); padding: 40px 30px; border-radius: 15px; backdrop-filter: blur(10px); transition: border-color 0.3s ease, box-shadow 0.3s ease; opacity: 0; transform: translateY(50px); }
.service-card:hover { border-color: var(--neon-accent); box-shadow: 0 10px 30px rgba(123, 44, 191, 0.1); }
.card-icon { font-size: 2.5rem; margin-bottom: 20px; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 15px; font-family: 'Oswald', sans-serif; letter-spacing: 1px; }
.service-card p { color: var(--text-muted); line-height: 1.5; font-size: 1rem; }

/* === PORTFÓLIO === */
.portfolio-section { background-color: var(--bg-color); position: relative; overflow: hidden; }
.portfolio-header { padding: 100px 8% 50px 8%; text-align: center; }
.portfolio-header h2 { font-family: 'Oswald', sans-serif; font-size: 3.5rem; text-transform: uppercase; margin-bottom: 15px; }
.portfolio-header p { color: var(--text-muted); font-size: 1.2rem; }
.portfolio-container { width: 100%; height: 100vh; display: flex; align-items: center; overflow: hidden; }
.portfolio-track { display: flex; width: 300vw; height: 80vh; }
.portfolio-item { width: 100vw; height: 100%; display: flex; justify-content: center; align-items: center; padding: 0 8%; }
.item-content { display: flex; align-items: center; justify-content: space-between; gap: 50px; width: 100%; max-width: 1200px; }
.item-text { flex: 1; }
.item-text h3 { font-family: 'Oswald', sans-serif; font-size: 2.5rem; margin-bottom: 20px; color: var(--neon-accent); }
.item-text p { color: var(--text-main); font-size: 1.1rem; line-height: 1.6; margin-bottom: 30px; }
.case-link { display: inline-block; color: white; text-decoration: none; border-bottom: 1px solid var(--neon-accent); padding-bottom: 5px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; transition: 0.3s; }
.case-link:hover { color: var(--neon-accent); }
.item-visual { flex: 1; height: 500px; border-radius: 20px; display: flex; justify-content: center; align-items: center; border: 1px solid var(--card-border); position: relative; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.placeholder-text { color: rgba(255,255,255,0.3); font-family: 'Oswald', sans-serif; font-size: 1.5rem; text-transform: uppercase; letter-spacing: 2px; }

/* === BLOG === */
.blog-section { padding: 150px 8%; background-color: var(--bg-color); position: relative; }
.blog-header { text-align: center; margin-bottom: 80px; }
.blog-header h2 { font-family: 'Oswald', sans-serif; font-size: 3.5rem; text-transform: uppercase; margin-bottom: 15px; }
.blog-header p { color: var(--text-muted); font-size: 1.2rem; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; max-width: 1200px; margin: 0 auto; }
.blog-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 15px; overflow: hidden; transition: transform 0.3s ease, border-color 0.3s ease; opacity: 0; transform: translateY(50px); }
.blog-card:hover { transform: translateY(-10px); border-color: var(--neon-accent); }
.blog-content { padding: 30px; }
.blog-category { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--neon-accent); font-weight: 600; margin-bottom: 15px; display: inline-block; }
.blog-content h3 { font-family: 'Oswald', sans-serif; font-size: 1.5rem; margin-bottom: 15px; line-height: 1.3; }
.blog-content p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 25px; }
.read-more { color: var(--text-main); text-decoration: none; font-weight: 600; font-size: 0.9rem; text-transform: uppercase; transition: color 0.3s; }
.read-more:hover { color: var(--neon-accent); }

/* === CONTATO === */
.contact-section { padding: 150px 8%; min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; background: radial-gradient(circle at center, rgba(123, 44, 191, 0.1) 0%, var(--bg-color) 70%); }
.contact-content { max-width: 700px; }
.contact-section h2 { font-family: 'Oswald', sans-serif; font-size: 4rem; margin-bottom: 20px; text-transform: uppercase; }
.contact-section p { color: var(--text-muted); font-size: 1.2rem; line-height: 1.6; margin-bottom: 50px; }
.btn-whatsapp { display: inline-flex; align-items: center; gap: 15px; background-color: var(--text-main); color: var(--bg-color); padding: 20px 50px; border-radius: 50px; font-size: 1.2rem; font-weight: 600; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s ease; }
.btn-whatsapp:hover { background-color: var(--neon-accent); color: white; transform: translateY(-5px); box-shadow: 0 15px 30px rgba(123, 44, 191, 0.4); }
.wpp-icon { font-size: 1.5rem; }

/* === RESPONSIVO === */
@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .manifesto h2 { font-size: 2rem; }
    .nav-links { display: none; }
    .hamburger { display: block; }
    header { padding: 20px 5%; }
    .services-section { padding: 100px 5%; }
}