/* ===== VARIABLES ===== */
:root {
  --bg: #06060f;
  --bg2: #0a0a1a;
  --bg3: #0f0f24;
  --card: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.08);
  --text: #e8e8f5;
  --text2: #8888aa;
  --neon: #4f9eff;
  --neon2: #00d4ff;
  --purple: #a855f7;
  --green: #22c55e;
  --pink: #ec4899;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 40px rgba(0,0,0,0.5);
  --trans: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --glow: 0 0 20px rgba(79,158,255,0.3);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', system-ui, sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--neon); border-radius: 99px; }

/* ===== LOADING ===== */
#loading {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loading.hidden { opacity: 0; visibility: hidden; }
.loading-inner { text-align: center; }
.loading-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem; font-weight: 900;
  color: var(--neon);
  text-shadow: var(--glow);
  margin-bottom: 2rem;
  animation: pulse 1s ease infinite alternate;
}
.loading-bar {
  width: 200px; height: 3px;
  background: rgba(79,158,255,0.15);
  border-radius: 99px; margin: 0 auto 1rem;
  overflow: hidden;
}
.loading-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--neon), var(--purple));
  border-radius: 99px;
  animation: loadFill 1.8s ease forwards;
}
@keyframes loadFill { to { width: 100%; } }
.loading-text { color: var(--text2); font-size: .85rem; letter-spacing: 2px; text-transform: uppercase; }
@keyframes pulse { from { text-shadow: 0 0 10px rgba(79,158,255,0.3); } to { text-shadow: 0 0 40px rgba(79,158,255,0.8); } }

/* ===== CANVAS ===== */
#particles-canvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
}

/* ===== GLASSMORPHISM ===== */
.glass {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: .75rem 0;
  transition: var(--trans);
}
#navbar.scrolled {
  background: rgba(6,6,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.nav-container {
  max-width: 1200px; margin: 0 auto;
  padding: 0 1.5rem;
  display: flex; align-items: center; gap: 2rem;
}
.nav-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem; font-weight: 900;
  color: var(--text);
  letter-spacing: -1px;
  flex-shrink: 0;
}
.nav-logo span { color: var(--neon); }
.nav-links {
  display: flex; list-style: none;
  gap: .25rem; flex: 1; justify-content: center;
}
.nav-links a {
  padding: .4rem .75rem; border-radius: var(--radius-sm);
  font-size: .88rem; font-weight: 500; color: var(--text2);
  transition: var(--trans);
}
.nav-links a:hover { color: var(--text); background: var(--card); }
.nav-cta {
  background: var(--neon); color: #fff;
  padding: .5rem 1.25rem; border-radius: var(--radius-sm);
  font-size: .85rem; font-weight: 600;
  transition: var(--trans); flex-shrink: 0;
  box-shadow: 0 0 20px rgba(79,158,255,0.25);
}
.nav-cta:hover { background: var(--neon2); box-shadow: var(--glow); transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .4rem;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 99px;
  transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 1; }

/* ===== SECTIONS ===== */
section { padding: 6rem 0; position: relative; }
.section-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(79,158,255,0.1); border: 1px solid rgba(79,158,255,0.2);
  color: var(--neon); font-size: .78rem; font-weight: 600;
  padding: .3rem .85rem; border-radius: 99px; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; line-height: 1.15;
  margin-bottom: .75rem;
}
.section-sub { color: var(--text2); font-size: 1.05rem; max-width: 500px; line-height: 1.6; margin-bottom: 3rem; }
.neon { color: var(--neon); }

/* ===== HERO ===== */
#hero {
  min-height: 100vh; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-content { max-width: 600px; z-index: 1; position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(79,158,255,0.08); border: 1px solid rgba(79,158,255,0.2);
  padding: .4rem 1rem; border-radius: 99px;
  font-size: .8rem; font-weight: 600; color: var(--neon);
  margin-bottom: 1.5rem; letter-spacing: .5px;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--neon);
  box-shadow: 0 0 8px var(--neon);
  animation: blink 1.2s ease infinite alternate;
}
@keyframes blink { to { opacity: .3; } }
.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 900; line-height: 1; margin-bottom: 1rem;
  letter-spacing: -2px;
}
.hero-title .neon { text-shadow: 0 0 40px rgba(79,158,255,0.5); }
.hero-sub { font-size: clamp(1.5rem, 5vw, 3rem); color: var(--text2); font-weight: 300; letter-spacing: 4px; }
.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text2); line-height: 1.6;
  margin-bottom: 1rem; min-height: 2.5em;
}
.hero-tagline::after { content: '|'; animation: cursor .7s step-end infinite; color: var(--neon); }
@keyframes cursor { 50% { opacity: 0; } }
.hero-ceo {
  color: var(--text2); font-size: .9rem; margin-bottom: 2rem;
}
.hero-ceo strong { color: var(--neon); font-weight: 700; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--neon), var(--neon2));
  color: #fff; border: none; border-radius: var(--radius-sm);
  padding: .8rem 1.75rem; font-size: .95rem; font-weight: 600;
  cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: var(--trans);
  box-shadow: 0 0 24px rgba(79,158,255,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(79,158,255,0.5); }
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: .8rem 1.75rem; font-size: .95rem; font-weight: 500;
  cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: var(--trans);
}
.btn-ghost:hover { border-color: var(--neon); color: var(--neon); background: rgba(79,158,255,0.05); }
.hero-stats { display: flex; align-items: center; gap: 2rem; }
.stat { text-align: center; }
.stat-num {
  display: block; font-size: 1.8rem; font-weight: 800; color: var(--neon);
  font-family: 'Orbitron', sans-serif;
}
.stat-label { font-size: .78rem; color: var(--text2); text-transform: uppercase; letter-spacing: 1px; }
.stat-div { width: 1px; height: 40px; background: var(--border); }
.hero-visual {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  width: 380px; z-index: 1;
}
.hero-orb {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(79,158,255,0.12) 0%, transparent 70%);
  animation: orbPulse 4s ease infinite alternate;
  pointer-events: none;
}
@keyframes orbPulse { to { transform: translate(-50%,-50%) scale(1.2); opacity: .5; } }
.hero-card {
  position: relative; z-index: 2; padding: 1.25rem;
  animation: float 6s ease infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.card-top { display: flex; gap: 6px; margin-bottom: 1rem; }
.card-dot { width: 12px; height: 12px; border-radius: 50%; }
.card-dot.green { background: #22c55e; }
.card-dot.yellow { background: #f59e0b; }
.card-dot.red { background: #ef4444; }
.card-code { font-family: 'Courier New', monospace; font-size: .82rem; line-height: 1.8; }
.c-purple { color: #a855f7; }
.c-blue { color: #60a5fa; }
.c-white { color: #e2e8f0; }
.c-green { color: #86efac; }
.c-yellow { color: #fcd34d; }
.c-neon { color: var(--neon); }
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--text2); font-size: .75rem; letter-spacing: 1px;
  animation: fadeInUp 2s ease 2s both;
}
.scroll-arrow {
  width: 20px; height: 20px; border-right: 2px solid var(--neon);
  border-bottom: 2px solid var(--neon);
  transform: rotate(45deg);
  animation: bounce 1.5s ease infinite;
}
@keyframes bounce { 0%,100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(6px); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateX(-50%) translateY(20px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }

/* ===== SOBRE ===== */
#sobre { background: var(--bg2); }
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.sobre-text p { color: var(--text2); line-height: 1.8; }
.sobre-items { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.sobre-item {
  display: flex; align-items: center; gap: .75rem;
  font-size: .9rem; font-weight: 500;
}
.sobre-item i { color: var(--neon); font-size: .9rem; }
.sobre-card { padding: 1.25rem; }
.sobre-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(79,158,255,0.12); color: var(--neon);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: .85rem;
}
.sobre-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.sobre-card p { font-size: .85rem; color: var(--text2); line-height: 1.6; }

/* ===== SERVIÇOS ===== */
#servicos { background: var(--bg); }
.servicos-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.servico-card {
  padding: 1.75rem; cursor: default;
  transition: var(--trans); position: relative; overflow: hidden;
}
.servico-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(79,158,255,0.2); }
.servico-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: rgba(79,158,255,0.12); color: var(--neon);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 1.25rem;
  transition: var(--trans);
}
.servico-card:hover .servico-icon { transform: scale(1.1); }
.servico-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .6rem; }
.servico-card p { font-size: .85rem; color: var(--text2); line-height: 1.6; margin-bottom: 1rem; }
.servico-list { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.servico-list li {
  font-size: .8rem; color: var(--text2);
  display: flex; align-items: center; gap: .5rem;
}
.servico-list li::before { content: '→'; color: var(--neon); font-size: .75rem; }
.servico-hover-line {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--neon), var(--purple));
  transform: scaleX(0); transition: var(--trans); transform-origin: left;
}
.servico-card:hover .servico-hover-line { transform: scaleX(1); }

/* ===== CEO ===== */
#ceo { background: var(--bg2); }
.ceo-grid { display: grid; grid-template-columns: 400px 1fr; gap: 4rem; align-items: center; }
.ceo-photo-wrap { position: relative; display: flex; justify-content: center; }
.ceo-photo-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle, rgba(79,158,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.ceo-photo {
  width: 280px; height: 280px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  border: 2px solid rgba(79,158,255,0.3);
  box-shadow: 0 0 60px rgba(79,158,255,0.15);
}
.ceo-avatar {
  width: 220px; height: 220px; border-radius: 50%;
  background: linear-gradient(135deg, var(--bg3), #1a1a3e);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; color: var(--text2);
  border: 2px solid rgba(79,158,255,0.15);
}
.ceo-rings { position: absolute; inset: -20px; pointer-events: none; }
.ceo-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(79,158,255,0.1);
  animation: spin 15s linear infinite;
}
.r1 { inset: 0; border-color: rgba(79,158,255,0.15); animation-duration: 12s; }
.r2 { inset: -15px; border-color: rgba(168,85,247,0.1); animation-direction: reverse; animation-duration: 18s; }
.r3 { inset: -30px; border-color: rgba(79,158,255,0.07); animation-duration: 25s; }
@keyframes spin { to { transform: rotate(360deg); } }
.ceo-badge-float {
  position: absolute; bottom: -10px; right: 0;
  padding: .5rem 1rem; font-size: .8rem; font-weight: 600;
  color: var(--neon); display: flex; align-items: center; gap: .4rem;
  border-color: rgba(79,158,255,0.3);
}
.ceo-badge-float i { color: #f59e0b; }
.ceo-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem; font-weight: 900; color: var(--neon);
  text-shadow: 0 0 30px rgba(79,158,255,0.4);
  margin-bottom: .25rem;
}
.ceo-title { color: var(--text2); font-size: .95rem; margin-bottom: 1.5rem; }
.ceo-desc p { color: var(--text2); line-height: 1.8; font-size: .92rem; }
.ceo-desc em { color: var(--neon); font-style: italic; }
.ceo-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.ceo-tag {
  background: rgba(79,158,255,0.08); border: 1px solid rgba(79,158,255,0.2);
  color: var(--neon); font-size: .75rem; font-weight: 600;
  padding: .25rem .75rem; border-radius: 99px;
}
.ceo-socials { display: flex; gap: .75rem; margin-top: 1.25rem; }
.ceo-social {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; color: var(--text2); transition: var(--trans);
}
.ceo-social:hover { color: var(--neon); border-color: var(--neon); background: rgba(79,158,255,0.08); }

/* ===== PORTFOLIO ===== */
#portfolio { background: var(--bg); }
.portfolio-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.portfolio-item {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); position: relative;
  transition: var(--trans); cursor: pointer;
}
.portfolio-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(79,158,255,0.2); }
.portfolio-img {
  height: 220px; display: flex; align-items: center; justify-content: center;
  position: relative;
}
.portfolio-mockup {
  width: 75%; background: rgba(0,0,0,0.4); border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1); padding: .75rem; overflow: hidden;
}
.mock-bar { display: flex; gap: 5px; margin-bottom: .6rem; }
.mock-bar span { width: 8px; height: 8px; border-radius: 50%; }
.mock-bar span:nth-child(1) { background: #ef4444; }
.mock-bar span:nth-child(2) { background: #f59e0b; }
.mock-bar span:nth-child(3) { background: #22c55e; }
.mock-content { display: flex; flex-direction: column; gap: .4rem; }
.mock-line { height: 6px; border-radius: 99px; background: rgba(79,158,255,0.3); }
.mock-line.w80 { width: 80%; }
.mock-line.w60 { width: 60%; }
.mock-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem; margin-top: .4rem; }
.mock-block { height: 40px; border-radius: 6px; }
.portfolio-info { padding: 1.25rem; background: var(--bg2); }
.portfolio-tag {
  background: rgba(79,158,255,0.1); color: var(--neon);
  font-size: .72rem; font-weight: 600; padding: .2rem .65rem;
  border-radius: 99px; display: inline-block; margin-bottom: .5rem;
}
.portfolio-info h3 { font-size: 1rem; font-weight: 700; margin-bottom: .3rem; }
.portfolio-info p { font-size: .82rem; color: var(--text2); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: rgba(6,6,15,0.92);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--trans); border-radius: var(--radius);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay-content { text-align: center; padding: 2rem; }
.portfolio-overlay-content h3 { font-size: 1.2rem; font-weight: 700; color: var(--neon); margin-bottom: .5rem; }
.portfolio-overlay-content p { font-size: .85rem; color: var(--text2); margin-bottom: 1.25rem; line-height: 1.6; }

/* ===== DEPOIMENTOS ===== */
#depoimentos { background: var(--bg2); }
.dep-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
.dep-card { padding: 1.75rem; transition: var(--trans); }
.dep-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(79,158,255,0.2); }
.dep-stars { color: #f59e0b; font-size: .85rem; margin-bottom: .75rem; display: flex; gap: 2px; }
.dep-card p { color: var(--text2); line-height: 1.7; font-size: .9rem; margin-bottom: 1.25rem; font-style: italic; }
.dep-author { display: flex; align-items: center; gap: .75rem; }
.dep-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.dep-author strong { display: block; font-size: .88rem; }
.dep-author span { display: block; font-size: .75rem; color: var(--text2); }

/* ===== CONTATO ===== */
#contato { background: var(--bg); }
.contato-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 2rem; }
.contato-canais h3, .contato-form h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.25rem; }
.canal-btn {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem; margin-bottom: .75rem;
  transition: var(--trans); cursor: pointer;
}
.canal-btn:hover { border-color: var(--neon); transform: translateX(4px); }
.canal-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.canal-btn div { flex: 1; }
.canal-btn strong { display: block; font-size: .9rem; font-weight: 600; }
.canal-btn span { display: block; font-size: .78rem; color: var(--text2); margin-top: 2px; }
.canal-arrow { color: var(--text2); font-size: .8rem; transition: var(--trans); }
.canal-btn:hover .canal-arrow { color: var(--neon); transform: translateX(3px); }
.contato-info { padding: 1.25rem; margin-top: .75rem; }
.info-item { display: flex; align-items: center; gap: .85rem; padding: .5rem 0; }
.info-item i { font-size: 1rem; width: 20px; text-align: center; flex-shrink: 0; }
.info-item strong { display: block; font-size: .85rem; font-weight: 600; }
.info-item span { display: block; font-size: .78rem; color: var(--text2); margin-top: 1px; }
.contato-form { padding: 1.75rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .75rem; font-weight: 600; color: var(--text2); text-transform: uppercase; letter-spacing: .5px; margin-bottom: .35rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); color: var(--text);
  border-radius: var(--radius-sm); padding: .65rem .9rem;
  font-size: .88rem; font-family: inherit; outline: none;
  transition: var(--trans);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--neon); box-shadow: 0 0 0 3px rgba(79,158,255,0.1);
}
.form-group select option { background: #0f0f24; }
.form-group textarea { resize: vertical; min-height: 80px; }
.full-w { width: 100%; justify-content: center; }

/* ===== FOOTER ===== */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
  position: relative; z-index: 1;
}
.footer-top { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem; font-weight: 900; margin-bottom: .5rem;
}
.footer-brand p { color: var(--text2); font-size: .85rem; line-height: 1.6; margin-bottom: 1rem; max-width: 280px; }
.footer-socials { display: flex; gap: .5rem; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: var(--text2); transition: var(--trans);
}
.footer-socials a:hover { color: var(--neon); border-color: var(--neon); }
.footer-links { display: flex; gap: 3rem; }
.footer-col h4 { font-size: .85rem; font-weight: 700; margin-bottom: .85rem; color: var(--text); }
.footer-col a { display: block; font-size: .83rem; color: var(--text2); margin-bottom: .4rem; transition: var(--trans); }
.footer-col a:hover { color: var(--neon); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.5rem; border-top: 1px solid var(--border);
  font-size: .8rem; color: var(--text2);
}

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== FORM SUCCESS ===== */
.form-success {
  text-align: center; padding: 2rem;
}
.form-success i { font-size: 2.5rem; color: var(--green); margin-bottom: 1rem; display: block; }
.form-success h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.form-success p { color: var(--text2); font-size: .88rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .servicos-grid { grid-template-columns: repeat(2,1fr); }
  .hero-visual { display: none; }
  .ceo-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ceo-photo-wrap { order: -1; }
}
@media (max-width: 900px) {
  .sobre-grid { grid-template-columns: 1fr; }
  .dep-grid { grid-template-columns: 1fr; }
  .contato-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 60px; left: 0; right: 0;
    background: rgba(6,6,15,0.97); backdrop-filter: blur(20px);
    flex-direction: column; align-items: center;
    padding: 1.5rem; gap: .5rem;
    transform: translateY(-110%); transition: var(--trans);
    border-bottom: 1px solid var(--border); z-index: 99;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: .6rem 1.5rem; font-size: 1rem; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1rem; }
  .stat-num { font-size: 1.3rem; }
  section { padding: 4rem 0; }
}
@media (max-width: 480px) {
  .servicos-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-ghost { justify-content: center; }
  .footer-links { flex-direction: column; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .ceo-photo { width: 220px; height: 220px; }
  .ceo-avatar { width: 170px; height: 170px; font-size: 4rem; }
}
