* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
:root {
    --bg-color: #0a0a0a;
    --card-bg: #141414;
    --accent-color: #DFFF00;
    --accent-glow: rgba(223, 255, 0, 0.3);
    --text-color: #e0e0e0;
    --text-muted: #888;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --radius: 12px;
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.3);
}
body { background: var(--bg-color); color: var(--text-color); line-height: 1.6; overflow-x: hidden; }

/* Custom Cursor */
.cursor-dot, .cursor-ring { pointer-events: none; position: fixed; z-index: 99999; transform: translate(-50%, -50%); }
.cursor-dot { width: 6px; height: 6px; background: var(--accent-color); border-radius: 50%; mix-blend-mode: difference; }
.cursor-ring { width: 35px; height: 35px; border: 2px solid var(--accent-color); border-radius: 50%; transition: all .15s ease-out; opacity: .4; z-index: 99998; }

/* Page Loader */
.page-loader { position: fixed; inset: 0; background: var(--bg-color); z-index: 99999; display: flex; align-items: center; justify-content: center; transition: opacity .6s, visibility .6s; }
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-ring { width: 50px; height: 50px; border: 3px solid rgba(223,255,0,0.1); border-top: 3px solid var(--accent-color); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Navbar */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 20px; background: rgba(10,10,10,0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); position: fixed; top: 0; width: 100%; z-index: 100; border-bottom: 1px solid rgba(223,255,0,0.05); transition: var(--transition); }
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.3); backdrop-filter: blur(30px); padding: 15px 20px; }
.logo { color: var(--accent-color); font-weight: 700; font-size: 1.2rem; letter-spacing: 2px; text-transform: uppercase; position: relative; }
.logo::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--accent-color); transition: width .4s; }
.logo:hover::after { width: 100%; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { color: var(--text-muted); font-size: .9rem; transition: color .3s; position: relative; padding: 4px 0; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--accent-color); transition: width .3s; }
.nav-links a:hover { color: var(--accent-color); }
.nav-links a:hover::after { width: 100%; }
.menu-icon { color: var(--accent-color); cursor: pointer; display: none; font-size: 1.5rem; }
.mobile-menu { display: none; background: var(--card-bg); padding: 20px; position: fixed; width: 100%; top: 60px; left: 0; z-index: 99; text-align: center; transform: translateY(-110%); transition: transform .4s cubic-bezier(.25,.46,.45,.94); }
.mobile-menu.active { display: flex; flex-direction: column; gap: 15px; transform: translateY(0); }
.mobile-menu a { color: var(--text-color); font-weight: 500; padding: 12px; transition: all .3s; border-radius: 8px; }
.mobile-menu a:hover { background: rgba(223,255,0,0.05); color: var(--accent-color); }

/* Hero */
/* Background Particles */
.bg-particles { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.ptcl { position: absolute; border-radius: 50%; background: var(--accent-color); opacity: .04; animation: ptclFloat 12s ease-in-out infinite; }
@keyframes ptclFloat { 0%,100%{transform:translateY(0) translateX(0) scale(1);opacity:.04} 25%{transform:translateY(-40px) translateX(20px) scale(1.2);opacity:.07} 50%{transform:translateY(20px) translateX(-15px) scale(.8);opacity:.03} 75%{transform:translateY(-15px) translateX(30px) scale(1.1);opacity:.06} }

.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; background: radial-gradient(ellipse at center, #151515 0%, #0a0a0a 70%); overflow: hidden; }
.hero::before { content: ''; position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(223,255,0,0.03), transparent 70%); border-radius: 50%; animation: morphBlob 20s ease-in-out infinite; pointer-events: none; }
.hero::after { content: ''; position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(223,255,0,0.02), transparent 70%); border-radius: 50%; bottom: -100px; right: -100px; animation: morphBlob 15s ease-in-out infinite reverse; }
@keyframes morphBlob { 0%,100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; } 50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; } }
@keyframes floatUp { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
@keyframes glowPulse { 0%,100% { filter: drop-shadow(0 0 20px var(--accent-glow)); } 50% { filter: drop-shadow(0 0 50px var(--accent-glow)); } }
.hero-content { position: relative; z-index: 2; padding: 0 20px; }
.hero h1 { font-size: 4rem; margin-bottom: 15px; font-weight: 800; letter-spacing: -2px; animation: floatUp 6s ease-in-out infinite; }
.hero h1 .destaque { background: linear-gradient(135deg, var(--accent-color), #b3cc00, #7a9900); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; background-size: 300% 100%; animation: shimmerGold 4s ease-in-out infinite; filter: drop-shadow(0 0 30px var(--accent-glow)); }
@keyframes shimmerGold { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }
.hero p { color: var(--text-muted); margin-bottom: 30px; font-size: 1.2rem; max-width: 500px; margin: 0 auto 30px; }
.btn { background: var(--accent-color); color: #000; padding: 16px 36px; border-radius: 50px; font-weight: 700; display: inline-block; transition: var(--bounce); text-transform: uppercase; font-size: .9rem; letter-spacing: 1px; position: relative; overflow: hidden; border: none; cursor: pointer; }
.btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent); transition: left .5s; }
.btn:hover::before { left: 100%; }
.btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 40px var(--accent-glow); }
.hero-stats { display: flex; justify-content: center; gap: 40px; margin-top: 50px; }
.hs-item { text-align: center; padding: 15px 25px; background: rgba(20,20,20,0.6); border-radius: var(--radius); border: 1px solid rgba(223,255,0,0.05); transition: var(--transition); }
.hs-item:hover { background: rgba(20,20,20,0.9); border-color: rgba(223,255,0,0.15); transform: translateY(-5px); }
.hs-num { font-size: 2.5rem; font-weight: 800; color: var(--accent-color); line-height: 1; }
.hs-label { font-size: .8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; }

/* Sections */
.section-dark { padding: 100px 0; position: relative; }
.section-dark::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(223,255,0,0.1), transparent); }
.section-dark::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(223,255,0,0.05), transparent); }
.titulo-neon { color: var(--accent-color); font-size: 2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 30px; position: relative; display: inline-block; }
.titulo-neon::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 40px; height: 2px; background: var(--accent-color); transition: width .5s; }
.titulo-neon:hover::after { width: 100%; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.icon-section { font-size: 40px; color: #333; transition: var(--transition); }
.icon-section:hover { color: var(--accent-color); transform: rotate(90deg); }
.sobre-content p { margin-bottom: 20px; color: var(--text-muted); line-height: 1.8; }
.quote-box { border-left: 3px solid var(--accent-color); padding-left: 20px; font-style: italic; color: #aaa; margin-top: 20px; background: rgba(223,255,0,0.02); border-radius: 0 8px 8px 0; padding: 15px 20px; transition: var(--transition); }
.quote-box:hover { background: rgba(223,255,0,0.04); transform: translateX(5px); }
.trabalho-card { background: var(--card-bg); border-radius: var(--radius); overflow: hidden; margin-top: 20px; border: 1px solid rgba(223,255,0,0.05); transition: var(--transition); position: relative; }
.trabalho-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(223,255,0,0.02), transparent); opacity: 0; transition: opacity .5s; }
.trabalho-card:hover::before { opacity: 1; }
.trabalho-card:hover { transform: translateY(-8px); border-color: rgba(223,255,0,0.15); box-shadow: 0 10px 40px rgba(0,0,0,0.3); }
.img-placeholder { overflow: hidden; }
.img-placeholder img { width: 100%; height: auto; display: block; transition: transform .6s cubic-bezier(.25,.46,.45,.94); }
.trabalho-card:hover .img-placeholder img { transform: scale(1.08); }
.card-info { padding: 25px; }
.categoria { display: block; font-size: .8rem; color: #777; margin-bottom: 10px; text-transform: uppercase; font-weight: 600; letter-spacing: 1px; }
.categoria .ano { float: right; }
.card-info h3 { color: var(--accent-color); margin-bottom: 10px; font-size: 1.4rem; transition: var(--transition); }
.trabalho-card:hover .card-info h3 { filter: drop-shadow(0 0 10px var(--accent-glow)); }
.card-info p { color: var(--text-muted); font-size: .95rem; line-height: 1.7; }

/* Location */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch; }
.loc-card { background: #141414; padding: 35px; border-radius: var(--radius); display: flex; flex-direction: column; justify-content: center; border: 1px solid rgba(223,255,0,0.05); transition: var(--transition); }
.loc-card:hover { border-color: rgba(223,255,0,0.2); transform: translateY(-5px); box-shadow: 0 10px 40px rgba(0,0,0,0.2); }
.endereco { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 25px; }
.endereco .pin-icon { color: var(--accent-color); font-size: 2rem; transition: var(--bounce); }
.loc-card:hover .pin-icon { transform: scale(1.2); }
.endereco p { color: var(--text-muted); margin-bottom: 5px; font-size: .9rem; }
.btn-full { width: 100%; text-align: center; justify-content: center; display: flex; align-items: center; gap: 10px; }
.map-placeholder { min-height: 300px; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(223,255,0,0.05); transition: var(--transition); }
.map-placeholder:hover { border-color: rgba(223,255,0,0.15); box-shadow: 0 5px 30px rgba(0,0,0,0.2); }

/* Footer */
footer { padding: 60px 0 0; border-top: 1px solid rgba(223,255,0,0.05); }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand .titulo-neon { margin-bottom: 10px; }
.footer-brand p { color: var(--text-muted); font-size: .9rem; }
.footer-contact h3, .footer-social h3 { color: var(--text-color); font-size: 1.1rem; margin-bottom: 20px; }
.footer-contact p { color: var(--text-muted); font-size: .9rem; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.footer-contact p:hover { color: var(--accent-color); }
.footer-social .social-icons { display: flex; flex-direction: column; gap: 10px; }
.footer-social .social-icons a { color: var(--text-muted); font-size: .9rem; transition: var(--transition); }
.footer-social .social-icons a:hover { color: var(--accent-color); transform: translateX(5px); }
.copyright { text-align: center; padding: 20px; border-top: 1px solid rgba(255,255,255,0.05); font-size: .85rem; color: var(--text-muted); }

/* WhatsApp Float */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: linear-gradient(135deg, #25D366, #128C7E); color: #fff; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; box-shadow: 0 4px 20px rgba(37,211,102,0.4); z-index: 999; transition: var(--bounce); animation: pulseWA 2s ease-in-out infinite; text-decoration: none; }
@keyframes pulseWA { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); transform: scale(1); } 50% { box-shadow: 0 4px 40px rgba(37,211,102,0.6); transform: scale(1.05); } }
.whatsapp-float:hover { transform: scale(1.15) rotate(-10deg); }
.whatsapp-tooltip { position: fixed; bottom: 100px; right: 30px; background: var(--card-bg); color: var(--text-color); padding: 12px 20px; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.3); z-index: 998; font-size: .85rem; font-weight: 500; opacity: 0; transform: translateY(10px) scale(.9); transition: all .4s cubic-bezier(.25,.46,.45,.94); pointer-events: none; white-space: nowrap; border: 1px solid rgba(223,255,0,0.1); }
.whatsapp-tooltip.show { opacity: 1; transform: translateY(0) scale(1); }

/* Back to Top */
.back-to-top { position: fixed; bottom: 100px; right: 35px; width: 44px; height: 44px; border-radius: 50%; background: var(--card-bg); color: var(--accent-color); border: 1px solid rgba(223,255,0,0.15); display: flex; align-items: center; justify-content: center; z-index: 998; opacity: 0; transform: translateY(20px); pointer-events: none; transition: var(--transition); text-decoration: none; }
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { background: var(--accent-color); color: #000; transform: translateY(-3px); box-shadow: 0 8px 25px var(--accent-glow); }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-color); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--accent-color), #b3cc00); border-radius: 4px; }

/* Reveal Animations */
.reveal-left, .reveal-right, .reveal-bottom { opacity: 0; transition: all .8s cubic-bezier(.25,.46,.45,.94); }
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }
.reveal-bottom { transform: translateY(40px); }
.reveal-left.revealed, .reveal-right.revealed, .reveal-bottom.revealed { opacity: 1; transform: translate(0); }

/* Responsive */
@media (max-width: 768px) {
    .cursor-dot, .cursor-ring { display: none; }
    .nav-links { display: none; }
    .menu-icon { display: block; }
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1rem; }
    .hero-stats { gap: 15px; flex-wrap: wrap; }
    .hs-item { padding: 10px 15px; }
    .hs-num { font-size: 1.8rem; }
    .loc-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .section-dark { padding: 60px 0; }
    .titulo-neon { font-size: 1.5rem; }
    .footer-contact p { justify-content: center; }
    .footer-social .social-icons a:hover { transform: translateX(0) translateY(-2px); }
    .whatsapp-tooltip { display: none; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .btn { padding: 14px 25px; font-size: .8rem; }
    .hero-stats { gap: 10px; }
}
