* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #0a0e1a; --bg2: #111827; --bg3: #1a2235;
  --blue: #1e90ff; --orange: #ff6b00;
  --text: #f0f4ff; --muted: #8899bb; --border: rgba(30,144,255,0.18);
  --card: rgba(255,255,255,0.04);
}
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'Segoe UI', sans-serif; overflow-x: hidden; }

nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(10,14,26,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 60px;
}
.nav-logo { font-size: 1.1rem; font-weight: 700; color: var(--blue); letter-spacing: 1px; }
.nav-logo span { color: #e02020; }
.nav-links { display: flex; gap: 1.2rem; list-style: none; align-items: center; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.88rem; transition: color .2s; }
.nav-links a:hover { color: var(--blue); }
.nav-apps-btn {
  background: rgba(255,107,0,0.15) !important;
  border: 1.5px solid rgba(255,107,0,0.5) !important;
  color: #ffb070 !important;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-apps-btn:hover { background: rgba(255,107,0,0.3) !important;
  color: #ffd0a0 !important; }

.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 80px 2rem 2rem; text-align: center;
  position: relative; overflow: hidden;
  background-image: url('../fotos/Gemini_Generated_Image_klgj3nklgj3nklgj.png');
  background-size: cover; background-position: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(5,8,18,0.88) 0%, rgba(5,8,18,0.72) 60%, rgba(5,8,18,0.92) 100%);
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; max-width: 700px; }
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.1; margin-bottom: 0.5rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.8);
}
.hero h1 span { color: #e02020; }
.hero h1 em { font-style: normal; color: var(--orange); }
.tagline { font-size: 1.05rem; color: #d0dff8; margin-bottom: 2rem; text-shadow: 0 1px 8px rgba(0,0,0,0.9); }
.badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin-bottom: 2rem; }
.badge { background: rgba(10,18,40,0.75); border: 1px solid rgba(30,144,255,0.45); color: #c8dfff; padding: 0.4rem 1rem; border-radius: 100px; font-size: 0.82rem; font-weight: 600; backdrop-filter: blur(6px); }
.badge.orange { background: rgba(30,12,0,0.7); border-color: rgba(255,107,0,0.45); color: #ffca90; }
.stats-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; margin: 0 0 2rem; }
.stat-num { font-size: 2.2rem; font-weight: 800; color: #5fb8ff; text-shadow: 0 2px 12px rgba(0,0,0,0.9); }
.stat-label { font-size: 0.75rem; color: #a8c0e8; text-transform: uppercase; letter-spacing: 1px; text-shadow: 0 1px 6px rgba(0,0,0,0.9); }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: var(--blue); color: #fff; border: none; padding: 0.75rem 2rem; border-radius: 8px; font-size: 0.95rem; font-weight: 600; cursor: pointer; text-decoration: none; transition: opacity .2s; }
.btn-primary:hover { opacity: 0.85; }
.btn-outline { background: transparent; color: var(--orange); border: 1.5px solid var(--orange); padding: 0.75rem 2rem; border-radius: 8px; font-size: 0.95rem; font-weight: 600; cursor: pointer; text-decoration: none; transition: background .2s; }
.btn-outline:hover { background: rgba(255,107,0,0.1); }

section { padding: 5rem 2rem; max-width: 1000px; margin: 0 auto; }
.sec-title { font-size: 1.6rem; font-weight: 700; margin-bottom: 0.4rem; }
.sec-title span { color: var(--blue); }
.sec-sub { color: var(--muted); font-size: 0.92rem; margin-bottom: 2.5rem; }
.divider { width: 48px; height: 3px; background: var(--orange); border-radius: 2px; margin: 0.4rem 0 0.8rem; }

.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 600px) { .sobre-grid { grid-template-columns: 1fr; } .nav-links { gap: 0.7rem; } }
.sobre-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem; display: flex; gap: 1rem; align-items: flex-start; }
.sobre-icon { width: 44px; height: 44px; min-width: 44px; border-radius: 10px; background: rgba(30,144,255,0.12); border: 1px solid rgba(30,144,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.sobre-card h3 { font-size: 0.93rem; font-weight: 600; margin-bottom: 0.25rem; }
.sobre-card p { font-size: 0.81rem; color: var(--muted); line-height: 1.5; }

.servicos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; }
.servico-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 14px; padding: 1.75rem; transition: border-color .2s, transform .2s; }
.servico-card:hover { border-color: var(--blue); transform: translateY(-3px); }
.srv-icon { font-size: 2rem; margin-bottom: 1rem; }
.servico-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.servico-card p { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }

.contato-box { background: var(--bg3); border: 1px solid var(--border); border-radius: 16px; padding: 2.5rem; text-align: center; }
.contato-box p { color: var(--muted); margin-bottom: 1.5rem; font-size: 0.95rem; }
.contato-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.c-btn { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: 10px; font-size: 0.9rem; font-weight: 600; text-decoration: none; transition: opacity .2s; }
.c-btn:hover { opacity: 0.8; }
.c-btn.ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.c-btn.wa { background: #25d366; color: #fff; }
.c-btn.yt { background: #ff0000; color: #fff; }

footer { text-align: center; padding: 2rem; color: var(--muted); font-size: 0.8rem; border-top: 1px solid var(--border); margin-top: 2rem; }
footer span { color: var(--orange); }
