:root {
--bg: #07080d;
--surface: #0e1018;
--accent: #2563eb;
--accent2: #3b82f6;
--text: #f0f2ff;
--muted: #8b93b0;
--border: rgba(255,255,255,0.07);
--white: #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
font-family: 'DM Sans', sans-serif;
background: var(--bg); color: var(--text);
overflow-x: hidden; line-height: 1.6;
}

body::before {
content: ''; position: fixed; inset: 0;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
pointer-events: none; z-index: 0; opacity: 0.5;
}

nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
display: flex; align-items: center; justify-content: space-between;
padding: 1.2rem 6%;
background: rgba(7,8,13,0.85); backdrop-filter: blur(16px);
border-bottom: 1px solid var(--border);
}

.nav-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--white); letter-spacing: -0.02em; }
.nav-logo span { color: var(--accent2); }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }

.nav-cta { background: var(--accent); color: var(--white) !important; padding: 0.5rem 1.25rem; border-radius: 6px; font-weight: 600 !important; }
.nav-cta:hover { background: var(--accent2) !important; }

#hero {
min-height: 100vh; display: flex; align-items: center;
padding: 8rem 6% 5rem; position: relative; overflow: hidden;
}

.hero-glow { position: absolute; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 70%); top: -150px; right: -100px; pointer-events: none; }
.hero-glow2 { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%); bottom: 0; left: 10%; pointer-events: none; }

.hero-inner { display: grid; grid-template-columns: 1fr 420px; gap: 4rem; align-items: center; width: 100%; max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

.hero-badge {
display: inline-flex; align-items: center; gap: 0.6rem;
background: rgba(37,99,235,0.12); border: 1px solid rgba(37,99,235,0.3);
color: var(--accent2); font-size: 0.8rem; font-weight: 600;
padding: 0.35rem 0.9rem; border-radius: 100px; margin-bottom: 1.5rem;
animation: fadeUp 0.6s ease both;
}

.pulse-dot { width: 7px; height: 7px; background: #22c55e; border-radius: 50%; animation: pulse-anim 2s infinite; }

@keyframes pulse-anim { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }

h1 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.8rem); line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 1.25rem; animation: fadeUp 0.6s 0.1s ease both; }
h1 .accent { color: var(--accent2); }

.hero-sub { font-size: 1.1rem; color: var(--muted); max-width: 520px; margin-bottom: 2.5rem; font-weight: 300; line-height: 1.7; animation: fadeUp 0.6s 0.2s ease both; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.6s 0.3s ease both; }

.btn-primary { display: inline-flex; align-items: center; gap: 0.6rem; background: var(--accent); color: var(--white); padding: 0.9rem 2rem; border-radius: 8px; font-weight: 600; font-size: 1rem; text-decoration: none; transition: all 0.25s; box-shadow: 0 0 30px rgba(37,99,235,0.3); }
.btn-primary:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 0 50px rgba(37,99,235,0.5); }

.btn-secondary { display: inline-flex; align-items: center; gap: 0.6rem; background: transparent; color: var(--text); padding: 0.9rem 2rem; border-radius: 8px; font-weight: 500; font-size: 1rem; text-decoration: none; border: 1px solid var(--border); transition: all 0.25s; }
.btn-secondary:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); }

.hero-stats { display: flex; gap: 2rem; margin-top: 3rem; animation: fadeUp 0.6s 0.4s ease both; }
.stat-num { font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--white); display: flex; align-items: center; gap: 0.3rem; }
.stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 0.1rem; }

.hero-photo-wrap { position: relative; animation: fadeUp 0.6s 0.2s ease both; }
.hero-photo-frame { position: relative; border-radius: 20px; overflow: hidden; border: 1px solid var(--border); background: var(--surface); box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05); }
.hero-photo-frame img { width: 100%; height: 520px; object-fit: cover; object-position: top; display: block; filter: grayscale(20%); }
.hero-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,8,13,0.7) 0%, transparent 50%); }

.hero-tag { position: absolute; background: rgba(37,99,235,0.9); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.15); color: var(--white); padding: 0.6rem 1rem; border-radius: 10px; font-size: 0.8rem; font-weight: 600; display: flex; align-items: center; gap: 0.5rem; }
.hero-tag-tl { top: 20px; left: 20px; }
.hero-tag-br { bottom: 20px; right: 20px; background: rgba(13,15,25,0.95); font-size: 0.75rem; }
.tag-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; animation: pulse-anim 2s infinite; }

section { padding: 6rem 6%; position: relative; z-index: 1; }
.section-label { display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent2); margin-bottom: 0.75rem; }
h2 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.12; letter-spacing: -0.03em; margin-bottom: 1rem; }
.section-desc { color: var(--muted); max-width: 540px; font-weight: 300; line-height: 1.7; margin-bottom: 3.5rem; }
.max-w { max-width: 1200px; margin: 0 auto; }

#sobre { background: var(--surface); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-skills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
.skill-tag { background: rgba(37,99,235,0.1); border: 1px solid rgba(37,99,235,0.25); color: var(--accent2); padding: 0.35rem 0.8rem; border-radius: 6px; font-size: 0.8rem; font-weight: 500; }
.about-text p { color: var(--muted); font-weight: 300; line-height: 1.8; margin-bottom: 1rem; }
.about-diff { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.diff-item { display: flex; gap: 1rem; align-items: flex-start; }
.diff-icon { width: 36px; height: 36px; flex-shrink: 0; background: rgba(37,99,235,0.12); border: 1px solid rgba(37,99,235,0.25); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--accent2); font-size: 0.95rem; }
.diff-content strong { display: block; font-family: 'Syne', sans-serif; font-weight: 700; margin-bottom: 0.15rem; }
.diff-content span { color: var(--muted); font-size: 0.9rem; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.service-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; transition: all 0.3s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent2)); opacity: 0; transition: opacity 0.3s; }
.service-card:hover { border-color: rgba(37,99,235,0.3); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 30px rgba(37,99,235,0.1); }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 48px; height: 48px; background: rgba(37,99,235,0.12); border: 1px solid rgba(37,99,235,0.25); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; color: var(--accent2); margin-bottom: 1.25rem; }
.service-card h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 0.75rem; }
.service-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.25rem; }
.service-benefits { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.service-benefits li { font-size: 0.85rem; color: var(--muted); display: flex; gap: 0.6rem; align-items: center; }
.service-benefits li i { color: var(--accent2); font-size: 0.7rem; flex-shrink: 0; }

#beneficios { background: var(--surface); }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.benefit-card { background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 1.75rem; text-align: center; transition: all 0.3s; }
.benefit-card:hover { border-color: rgba(37,99,235,0.3); transform: translateY(-3px); }
.benefit-card .icon { font-size: 1.6rem; color: var(--accent2); margin-bottom: 1rem; }
.benefit-card h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 0.5rem; }
.benefit-card p { color: var(--muted); font-size: 0.85rem; line-height: 1.5; }

.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.portfolio-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: all 0.3s; }
.portfolio-card:hover { border-color: rgba(37,99,235,0.3); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.portfolio-thumb { height: 200px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.portfolio-thumb i { font-size: 2.8rem; color: rgba(255,255,255,0.85); }
.portfolio-thumb-1 { background: linear-gradient(135deg, #1e3a8a, #3b82f6); }
.portfolio-thumb-2 { background: linear-gradient(135deg, #064e3b, #10b981); }
.portfolio-thumb-3 { background: linear-gradient(135deg, #1e1b4b, #7c3aed); }
.portfolio-body { padding: 1.5rem; }
.portfolio-body h4 { font-family: 'Syne', sans-serif; font-weight: 700; margin-bottom: 0.5rem; }
.portfolio-body p { color: var(--muted); font-size: 0.875rem; margin-bottom: 1rem; }
.portfolio-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.ptag { background: rgba(255,255,255,0.06); border: 1px solid var(--border); color: var(--muted); padding: 0.2rem 0.6rem; border-radius: 4px; font-size: 0.75rem; }

.btn-outline { display: inline-flex; align-items: center; gap: 0.5rem; border: 1px solid rgba(37,99,235,0.4); color: var(--accent2); padding: 0.5rem 1rem; border-radius: 6px; font-size: 0.85rem; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.btn-outline:hover { background: rgba(37,99,235,0.1); border-color: var(--accent2); }

#depoimentos { background: var(--surface); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testimonial-card { background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; }
.stars { color: #fbbf24; font-size: 0.85rem; margin-bottom: 1rem; display: flex; gap: 3px; }
.testimonial-text { color: var(--muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; gap: 0.75rem; align-items: center; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent2)); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; color: var(--white); }
.author-name { font-weight: 600; font-size: 0.9rem; }
.author-role { color: var(--muted); font-size: 0.8rem; }

#contato { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--muted); margin-bottom: 2rem; line-height: 1.7; }
.contact-links { display: flex; flex-direction: column; gap: 1rem; }
.contact-link { display: flex; gap: 1rem; align-items: center; text-decoration: none; color: var(--text); padding: 1rem 1.25rem; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; transition: all 0.2s; }
.contact-link:hover { border-color: rgba(37,99,235,0.3); background: rgba(37,99,235,0.05); }
.cl-icon { width: 36px; height: 36px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--accent2); }
.cl-text { font-size: 0.9rem; }
.cl-label { font-size: 0.75rem; color: var(--muted); }

.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 2.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; background: var(--bg); border: 1px solid var(--border); color: var(--text); padding: 0.8rem 1rem; border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; outline: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: rgba(37,99,235,0.5); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.btn-submit { width: 100%; background: var(--accent); color: var(--white); border: none; cursor: pointer; padding: 1rem; border-radius: 8px; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; transition: all 0.25s; box-shadow: 0 0 30px rgba(37,99,235,0.3); display: flex; align-items: center; justify-content: center; gap: 0.6rem; }
.btn-submit:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 0 50px rgba(37,99,235,0.5); }

footer { background: var(--surface); border-top: 1px solid var(--border); padding: 2.5rem 6%; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; position: relative; z-index: 1; }
.footer-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--white); }
.footer-logo span { color: var(--accent2); }
footer p { color: var(--muted); font-size: 0.85rem; }

.social-links { display: flex; gap: 0.75rem; }
.social-link { width: 36px; height: 36px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; text-decoration: none; color: var(--muted); font-size: 0.9rem; transition: all 0.2s; }
.social-link:hover { background: rgba(37,99,235,0.15); border-color: rgba(37,99,235,0.3); color: var(--accent2); }

.divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(37,99,235,0.3), transparent); margin: 0 6%; position: relative; z-index: 1; }

.whatsapp-float { position: fixed; bottom: 2rem; right: 2rem; z-index: 200; width: 56px; height: 56px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; color: white; font-size: 1.7rem; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: all 0.3s; animation: bounceIn 1s 1s ease both; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounceIn { from { opacity: 0; transform: scale(0); } to { opacity: 1; transform: scale(1); } }

.reveal { opacity: 0; transform: translateY(32px); transition: all 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.hamburger { display: none; cursor: pointer; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; }

@media (max-width: 900px) {
.nav-links { display: none; }
.hamburger { display: block; }
.hero-inner { grid-template-columns: 1fr; }
.hero-photo-wrap { order: -1; }
.hero-photo-frame img { height: 350px; }
.about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
.form-row { grid-template-columns: 1fr; }
footer { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
nav { padding: 1rem 5%; }
section { padding: 4rem 5%; }
h1 { font-size: 2.2rem; }
}