/* ConnorTech — stylesheet
   Encoding: UTF-8 | Lines: LF */

/* ─── Reset & base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #0a0e27;
  --bg-card:     #0d1235;
  --bg-card2:    #0f1540;
  --blue-tech:   #00d4ff;
  --blue-deep:   #0066ff;
  --pink:        #ff0080;
  --orange:      #ff4d00;
  --white:       #ffffff;
  --gray:        #8892b0;
  --gray-light:  #ccd6f6;
  --font-display: 'Orbitron', 'Courier New', monospace;
  --font-body:    'Inter', 'Segoe UI', system-ui, sans-serif;
  --transition:   0.3s ease;
  --radius:       4px;
  --glow-blue:    0 0 20px rgba(0,212,255,0.4), 0 0 40px rgba(0,212,255,0.15);
  --glow-pink:    0 0 20px rgba(255,0,128,0.4), 0 0 40px rgba(255,0,128,0.15);
  --glow-orange:  0 0 20px rgba(255,77,0,0.4);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue-deep); border-radius: 3px; }

/* ─── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; letter-spacing: 0.15em; }

p { color: var(--gray-light); line-height: 1.75; }
.section-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--blue-tech);
  margin-bottom: 0.75rem;
  display: block;
}

/* ─── Circuit grid background ───────────────────────────────── */
.circuit-bg {
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.circuit-bg-sm {
  background-image:
    linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

/* ─── Scanline overlay ──────────────────────────────────────── */
.scanline::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.08) 2px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
  z-index: 1;
}

/* ─── Neon text ─────────────────────────────────────────────── */
.neon-text {
  color: var(--blue-tech);
  text-shadow: 0 0 10px var(--blue-tech), 0 0 30px rgba(0,212,255,0.4);
}
.neon-text-pink {
  color: var(--pink);
  text-shadow: 0 0 10px var(--pink), 0 0 30px rgba(255,0,128,0.4);
}
.gradient-text {
  background: linear-gradient(135deg, var(--blue-tech) 0%, var(--blue-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-accent {
  background: linear-gradient(135deg, var(--pink) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn:hover::before { transform: translateX(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--blue-tech), var(--blue-deep));
  color: var(--bg);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  box-shadow: var(--glow-blue);
}
.btn-primary:hover {
  box-shadow: 0 0 30px rgba(0,212,255,0.7), 0 0 60px rgba(0,212,255,0.3);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--blue-tech);
  border: 1px solid var(--blue-tech);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn-outline:hover {
  background: rgba(0,212,255,0.08);
  box-shadow: var(--glow-blue);
  transform: translateY(-2px);
}

.btn-cta {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: var(--white);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  box-shadow: var(--glow-pink);
  animation: pulse-cta 2.5s infinite;
}
.btn-cta:hover {
  box-shadow: 0 0 40px rgba(255,0,128,0.7), 0 0 70px rgba(255,77,0,0.4);
  transform: translateY(-2px);
  animation: none;
}

@keyframes pulse-cta {
  0%, 100% { box-shadow: var(--glow-pink); }
  50% { box-shadow: 0 0 30px rgba(255,0,128,0.6), 0 0 60px rgba(255,77,0,0.3); }
}

/* ─── HUD card ──────────────────────────────────────────────── */
.hud-card {
  background: var(--bg-card);
  border: 1px solid rgba(0,212,255,0.15);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  position: relative;
  transition: all var(--transition);
}
.hud-card::before {
  content: '';
  position: absolute;
  inset: 0;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  background: linear-gradient(135deg, rgba(0,212,255,0.05), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.hud-card:hover {
  border-color: rgba(0,212,255,0.5);
  box-shadow: var(--glow-blue), inset 0 0 30px rgba(0,212,255,0.03);
  transform: translateY(-4px);
}
.hud-card:hover::before { opacity: 1; }

/* corner accent */
.hud-card::after {
  content: '';
  position: absolute;
  top: -1px;
  right: -1px;
  width: 16px;
  height: 16px;
  border-top: 2px solid var(--blue-tech);
  border-right: 2px solid var(--blue-tech);
}

/* ─── Section layout ────────────────────────────────────────── */
.section {
  padding: 6rem 0;
  position: relative;
}
.container {
  width: min(90%, 1200px);
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { max-width: 600px; margin: 0 auto; }
.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-tech), var(--blue-deep));
  margin: 1.5rem auto;
  box-shadow: var(--glow-blue);
}

/* ─── Fade-in on scroll ─────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ─── NAVIGATION ────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.4s ease;
}
#nav.scrolled {
  background: rgba(10,14,39,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(0,212,255,0.15);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(92%, 1200px);
  margin: 0 auto;
}
.nav-logo img { height: 36px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--blue-tech);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--blue-tech); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 1rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue-tech);
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,14,39,0.97);
  z-index: 999;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  color: var(--white);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--blue-tech); }

/* ─── HERO ──────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 5rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0,102,255,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 30% 40% at 80% 20%, rgba(0,212,255,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 25% 35% at 20% 80%, rgba(255,0,128,0.05) 0%, transparent 60%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 2px,
    rgba(0,0,0,0.06) 2px, rgba(0,0,0,0.06) 4px
  );
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: min(90%, 900px);
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255,0,128,0.4);
  background: rgba(255,0,128,0.08);
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1.75rem;
  animation: pulse-badge 2s infinite;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
  animation: blink 1s infinite;
}
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.2; } }
@keyframes pulse-badge {
  0%,100% { border-color: rgba(255,0,128,0.4); box-shadow: none; }
  50% { border-color: rgba(255,0,128,0.7); box-shadow: 0 0 15px rgba(255,0,128,0.2); }
}

.hero-title {
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--white) 0%, var(--blue-tech) 50%, var(--white) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 100%;
  animation: shimmer 4s infinite;
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.hero-subtitle-accent {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  color: var(--blue-tech);
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
  text-shadow: 0 0 20px rgba(0,212,255,0.4);
}
.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--gray-light);
  max-width: 650px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray);
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--blue-tech), transparent);
  animation: scroll-drop 2s infinite;
}
@keyframes scroll-drop {
  0% { opacity: 1; transform: scaleY(1) translateY(0); }
  100% { opacity: 0; transform: scaleY(0.5) translateY(20px); }
}

/* ─── SERVICES ──────────────────────────────────────────────── */
#servicos {
  background: var(--bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  padding: 2.25rem 2rem;
}
.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,212,255,0.25);
  background: rgba(0,212,255,0.05);
  margin-bottom: 1.5rem;
  position: relative;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  border-color: var(--blue-tech);
  background: rgba(0,212,255,0.1);
  box-shadow: var(--glow-blue);
}
.service-icon svg { width: 28px; height: 28px; color: var(--blue-tech); }
.service-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: var(--white);
  margin-bottom: 0.75rem;
}
.service-card h3 { margin-bottom: 0.75rem; color: var(--white); }
.service-card p { font-size: 0.9rem; }

/* ─── SOBRE ─────────────────────────────────────────────────── */
#sobre {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-card) 50%, var(--bg) 100%);
}
.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}
.sobre-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.photo-frame {
  position: relative;
  width: min(340px, 100%);
}
.photo-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(0,212,255,0.3);
  filter: contrast(1.05) brightness(0.95);
}
.photo-frame::before {
  content: '';
  position: absolute;
  top: -8px; left: -8px; right: 8px; bottom: 8px;
  border: 1px solid rgba(0,212,255,0.2);
  pointer-events: none;
  z-index: 1;
}
.photo-frame::after {
  content: '';
  position: absolute;
  top: 8px; left: 8px; right: -8px; bottom: -8px;
  border: 1px solid rgba(0,102,255,0.2);
  pointer-events: none;
}
.photo-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(0,212,255,0.12), transparent 70%);
  z-index: -1;
}
.photo-overlay-text {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.25rem;
  background: linear-gradient(0deg, rgba(10,14,39,0.95) 0%, transparent 100%);
  z-index: 2;
}
.photo-overlay-text span {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--blue-tech);
  text-transform: uppercase;
}

.sobre-content .section-label { margin-bottom: 1.5rem; }
.sobre-content h2 { margin-bottom: 0.5rem; }
.sobre-name-accent {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--blue-tech);
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  display: block;
}
.sobre-content p { margin-bottom: 1rem; }

.sobre-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,212,255,0.1);
  flex-wrap: wrap;
}
.stat-item {}
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue-tech);
  text-shadow: 0 0 20px rgba(0,212,255,0.4);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 0.25rem;
  letter-spacing: 0.05em;
  display: block;
}

/* ─── APPS ──────────────────────────────────────────────────── */
#apps {
  background: var(--bg);
}
.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}
.app-card {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
}
.app-pioneer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
  box-shadow: var(--glow-pink);
}
.app-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 2rem;
  border: 1px solid rgba(0,212,255,0.2);
  overflow: hidden;
  background: rgba(0,212,255,0.05);
}
.app-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}
.app-card h3 { margin-bottom: 0.5rem; }
.app-card p { font-size: 0.88rem; flex: 1; margin-bottom: 1.5rem; }
.app-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.25rem;
}
.star { color: #ffc700; font-size: 0.9rem; }
.stat-half-star {
  position: relative;
  display: inline-block;
}
.stat-half-star::before {
  content: '★';
  opacity: 0.25;
}
.stat-half-star::after {
  content: '★';
  position: absolute;
  left: 0;
  top: 0;
  clip-path: inset(0 50% 0 0);
}
.star-half {
  position: relative;
  display: inline-block;
  font-size: 0.9rem;
}
.star-half::before {
  content: '★';
  color: rgba(255,199,0,0.25);
}
.star-half::after {
  content: '★';
  position: absolute;
  left: 0;
  top: 0;
  clip-path: inset(0 50% 0 0);
  color: #ffc700;
}
.app-stores {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.store-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 0.7rem;
  color: var(--gray-light);
  transition: all var(--transition);
}
.store-badge:hover {
  border-color: var(--blue-tech);
  color: var(--blue-tech);
}

/* ─── CLIENTES ──────────────────────────────────────────────── */
#clientes {
  background: var(--bg-card);
  border-top: 1px solid rgba(0,212,255,0.08);
  border-bottom: 1px solid rgba(0,212,255,0.08);
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.client-card {
  padding: 2rem 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.client-logo-box {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-tech);
}
.client-card h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.client-card p { font-size: 0.82rem; color: var(--gray); line-height: 1.5; }
.client-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  color: var(--blue-tech);
  margin-top: 0.5rem;
  transition: gap var(--transition);
}
.client-link:hover { gap: 0.6rem; }

/* ─── CTA FINAL ─────────────────────────────────────────────── */
#cta {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(0,102,255,0.1) 0%, transparent 70%);
}
.cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { margin-bottom: 1rem; }
.cta-content p { max-width: 550px; margin: 0 auto 2.5rem; }
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ─── FOOTER ────────────────────────────────────────────────── */
#footer {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(0,212,255,0.1);
  padding: 3.5rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.88rem;
  margin-top: 1rem;
  max-width: 280px;
}
.footer-brand img { height: 34px; width: auto; }
.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--blue-tech);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--gray);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--blue-tech); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--gray);
}
.footer-bottom p span { color: var(--blue-tech); }
.footer-socials {
  display: flex;
  gap: 1rem;
}
.footer-socials a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--gray);
  font-size: 0.8rem;
  transition: all var(--transition);
}
.footer-socials a:hover {
  border-color: var(--blue-tech);
  color: var(--blue-tech);
  box-shadow: var(--glow-blue);
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .sobre-inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .sobre-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .photo-frame { width: min(280px, 100%); margin: 0 auto; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }

  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 320px; justify-content: center; }

  .sobre-stats { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .section { padding: 4rem 0; }
  .services-grid,
  .apps-grid,
  .clients-grid { grid-template-columns: 1fr; }
}
