@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Exo+2:wght@300;400;500;600;700;800;900&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg-dark: #020b18;
  --bg-card: #050f1e;
  --bg-card2: #071526;
  --blue-neon: #00a8ff;
  --blue-bright: #0078d4;
  --green-neon: #00e676;
  --green-btn: #00c853;
  --white: #ffffff;
  --text-muted: #7fa8c9;
  --border: rgba(0,168,255,0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg-dark); color: var(--white); font-family: 'Exo 2', sans-serif; overflow-x: hidden; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--blue-neon); border-radius: 3px; }

/* ── Scroll animations ── */
.anim {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim.from-left { transform: translateX(-40px); }
.anim.from-right { transform: translateX(40px); }
.anim.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ── Keyframes ── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes orbFloat { 0%, 100% { transform: translateY(0); opacity: 0.3; } 50% { transform: translateY(-30px); opacity: 0.6; } }
@keyframes pulseRing { 0%, 100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.05); opacity: 1; } }
@keyframes ctaBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes waPulse { 0%, 100% { transform: scale(1); opacity: 0.45; } 50% { transform: scale(1.55); opacity: 0; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes successPop { from { transform: scale(0); } to { transform: scale(1); } }

.spin { animation: spin 1s linear infinite; }

/* ── Navbar ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 2rem; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.3s, border-bottom 0.3s, backdrop-filter 0.3s;
  animation: fadeInUp 0.6s ease forwards;
}
#navbar.scrolled {
  background: rgba(2,11,24,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,168,255,0.15);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 44px; border-radius: 50%; border: 2px solid rgba(0,168,255,0.5); }
.nav-logo-text .n1 { font-family: Orbitron; font-weight: 700; font-size: 0.95rem; color: #fff; line-height: 1.1; }
.nav-logo-text .n2 { font-family: Orbitron; font-weight: 700; font-size: 0.95rem; color: var(--blue-neon); line-height: 1.1; }
.nav-logo-text .n3 { font-size: 0.55rem; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; }

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-link {
  color: var(--text-muted); text-decoration: none;
  font-family: 'Exo 2'; font-weight: 600; font-size: 0.9rem; letter-spacing: 0.5px;
  transition: color 0.2s; position: relative; padding-bottom: 4px;
}
.nav-link:hover, .nav-link.active { color: var(--blue-neon); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--blue-neon), var(--green-neon));
  border-radius: 1px;
}
.btn-contratar {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #00c853, #00e676);
  color: #fff; padding: 10px 22px; border-radius: 50px;
  font-family: 'Exo 2'; font-weight: 700; font-size: 0.85rem;
  text-decoration: none; box-shadow: 0 0 20px rgba(0,230,118,0.35);
  transition: opacity 0.2s, transform 0.2s;
}
.btn-contratar:hover { opacity: 0.9; transform: scale(1.02); }
.btn-contratar svg { width: 16px; height: 16px; }

.hamburger { display: none; background: none; border: none; color: var(--blue-neon); cursor: pointer; padding: 4px; }
.hamburger svg { width: 28px; height: 28px; }

#mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; z-index: 999;
  background: rgba(2,11,24,0.98); backdrop-filter: blur(12px);
  padding: 1.5rem; flex-direction: column; gap: 0.75rem;
  border-bottom: 1px solid rgba(0,168,255,0.2);
}
#mobile-menu.open { display: flex; }
.mobile-link {
  color: #cdd9e5; text-decoration: none; font-weight: 600; font-size: 1.05rem;
  padding: 6px 0; border-bottom: 1px solid rgba(0,168,255,0.08); transition: color 0.2s;
}
.mobile-link:hover { color: var(--blue-neon); }
.btn-contratar-mobile {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, #00c853, #00e676);
  color: #fff; padding: 13px 22px; border-radius: 50px;
  font-family: 'Exo 2'; font-weight: 700; font-size: 1rem;
  text-decoration: none; box-shadow: 0 0 20px rgba(0,200,83,0.3);
  margin-top: 0.5rem;
}

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

/* ── Hero ── */
#home {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding-top: 72px;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 20% 50%, rgba(0,120,212,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(0,168,255,0.1) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(0,168,255,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,168,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,168,255,0.4), transparent);
  pointer-events: none;
  animation: orbFloat var(--dur, 4s) ease-in-out infinite;
  animation-delay: var(--del, 0s);
}
.hero-content { max-width: 1100px; margin: 0 auto; padding: 2rem; text-align: center; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,168,255,0.1); border: 1px solid rgba(0,168,255,0.3);
  border-radius: 50px; padding: 8px 20px; margin-bottom: 2rem;
  font-size: 0.85rem; color: var(--blue-neon); font-weight: 600; letter-spacing: 1px;
  animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-neon); box-shadow: 0 0 8px var(--green-neon); flex-shrink: 0; }
.hero-title {
  font-family: Rajdhani; font-weight: 700;
  font-size: clamp(2.8rem, 7vw, 5.5rem); line-height: 1.05; margin-bottom: 1.5rem;
  animation: fadeInUp 0.7s ease 0.35s both;
}
.hero-title .grad {
  background: linear-gradient(90deg, var(--blue-neon), var(--green-neon));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem); color: var(--text-muted);
  max-width: 620px; margin: 0 auto 2.5rem; line-height: 1.6;
  animation: fadeInUp 0.6s ease 0.5s both;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: fadeInUp 0.6s ease 0.65s both; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #00c853, #00e676);
  color: #fff; padding: 16px 36px; border-radius: 50px;
  font-family: 'Exo 2'; font-weight: 800; font-size: 1.05rem;
  text-decoration: none; box-shadow: 0 0 30px rgba(0,200,83,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 0 40px rgba(0,200,83,0.5); }
.btn-primary svg { width: 20px; height: 20px; }

.quick-picks-label {
  color: var(--text-muted); font-size: 0.8rem; font-weight: 700;
  margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 2px;
  margin-top: 2.5rem; animation: fadeInUp 0.6s ease 0.8s both;
}
.quick-picks { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; animation: fadeInUp 0.6s ease 0.85s both; }
.quick-pick {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,168,255,0.06); border: 1px solid rgba(0,168,255,0.25);
  border-radius: 50px; padding: 10px 20px;
  color: #fff; font-family: 'Exo 2'; font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: background 0.2s, border-color 0.2s;
}
.quick-pick:hover { background: rgba(0,168,255,0.12); border-color: rgba(0,168,255,0.6); }
.quick-pick svg { width: 18px; height: 18px; color: var(--blue-neon); }

.trust-badges { margin-top: 3rem; display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; animation: fadeIn 0.6s ease 1.0s both; }
.trust-badge { display: flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: 0.85rem; font-weight: 600; }
.trust-badge svg { width: 18px; height: 18px; color: var(--blue-neon); }

/* ── Shared section ── */
.section { padding: 100px 2rem; position: relative; }
.container { max-width: 1100px; margin: 0 auto; }
.container-lg { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-eyebrow {
  display: inline-block; background: rgba(0,168,255,0.1);
  border: 1px solid rgba(0,168,255,0.3); border-radius: 50px;
  padding: 6px 18px; color: var(--blue-neon); font-size: 0.8rem;
  font-weight: 700; letter-spacing: 2px; margin-bottom: 1rem; text-transform: uppercase;
}
.section-title { font-family: Rajdhani; font-weight: 700; font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.1; color: #fff; }
.section-subtitle { color: var(--text-muted); margin-top: 1rem; font-size: 1.05rem; max-width: 720px; margin-left: auto; margin-right: auto; }

/* ── Services ── */
#servicos { overflow: hidden; }
.services-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0,120,212,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: rgba(5,15,30,0.9); border: 1px solid rgba(0,168,255,0.15);
  border-radius: 20px; overflow: hidden; transition: all 0.3s ease; position: relative;
}
.service-card:hover {
  background: rgba(0,168,255,0.06); border-color: rgba(0,168,255,0.4);
  box-shadow: 0 0 40px rgba(0,168,255,0.15);
}
.service-card.highlight { border: 2px solid rgba(0,230,118,0.5); box-shadow: 0 0 40px rgba(0,230,118,0.15); }
.badge-popular {
  position: absolute; top: 16px; right: 16px;
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, #00c853, #00e676);
  color: #fff; padding: 4px 14px; border-radius: 50px;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 1px; z-index: 2;
}
.badge-popular svg { width: 12px; height: 12px; }
.card-image { height: 200px; overflow: hidden; position: relative; }
.card-image img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.4s ease; }
.service-card:hover .card-image img { transform: scale(1.05); }
.card-image-overlay { position: absolute; bottom: 0; left: 0; right: 0; height: 60px; background: linear-gradient(transparent, #050f1e); }
.card-icon {
  position: absolute; top: 16px; left: 16px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(2,11,24,0.75); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; z-index: 2;
}
.card-icon svg { width: 22px; height: 22px; }
.card-body { padding: 1.5rem; }
.card-title { font-family: Rajdhani; font-weight: 700; font-size: 1.5rem; color: #fff; margin-bottom: 4px; }
.card-subtitle { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1.2rem; }
.price-box { background: rgba(0,168,255,0.08); border: 1px solid rgba(0,168,255,0.2); border-radius: 12px; padding: 1rem; margin-bottom: 1.2rem; }
.price-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.price-value { font-family: Rajdhani; font-weight: 700; font-size: 2rem; }
.price-value.sm { font-size: 1.5rem; }
.price-sub { font-size: 0.8rem; color: var(--text-muted); }
.delivery-row { margin-top: 6px; font-size: 0.78rem; color: var(--green-neon); display: flex; align-items: center; gap: 6px; }
.delivery-row svg { width: 14px; height: 14px; }
.features-list { list-style: none; margin-bottom: 1.5rem; }
.features-list li { display: flex; align-items: center; gap: 8px; color: #cdd9e5; font-size: 0.875rem; padding: 4px 0; }
.features-list li svg { width: 16px; height: 16px; color: var(--green-neon); flex-shrink: 0; }
.btn-card {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; text-decoration: none; padding: 13px; border-radius: 50px;
  font-family: 'Exo 2'; font-weight: 800; font-size: 0.9rem; color: #fff;
  transition: opacity 0.2s;
}
.btn-card:hover { opacity: 0.9; }
.btn-card svg { width: 16px; height: 16px; }
.btn-card.blue { background: linear-gradient(135deg, #0078d4, #00a8ff); box-shadow: 0 0 25px rgba(0,120,212,0.35); }
.btn-card.green { background: linear-gradient(135deg, #00c853, #00e676); box-shadow: 0 0 25px rgba(0,200,83,0.35); }
.card-note { margin-top: 0.75rem; font-size: 0.78rem; color: var(--text-muted); text-align: center; }

/* ── About ── */
#sobre { background: rgba(5,15,30,0.5); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin-bottom: 5rem; }
.stat-card { text-align: center; padding: 2rem 1rem; background: rgba(0,168,255,0.06); border: 1px solid rgba(0,168,255,0.2); border-radius: 16px; }
.stat-value { font-family: Orbitron; font-weight: 700; font-size: 2.5rem; color: var(--blue-neon); margin-bottom: 6px; }
.stat-label { color: var(--text-muted); font-size: 0.9rem; }
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 4rem; align-items: center; }
.about-photo { text-align: center; }
.photo-wrapper { position: relative; display: inline-block; }
.photo-pulse {
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,168,255,0.3), transparent);
  position: absolute; top: -20px; left: -20px;
  animation: pulseRing 3s ease-in-out infinite;
}
.about-photo img {
  width: 240px; height: 240px; border-radius: 50%; object-fit: cover;
  border: 3px solid rgba(0,168,255,0.5); box-shadow: 0 0 40px rgba(0,168,255,0.3);
  position: relative; z-index: 1;
}
.about-name { font-family: Orbitron; font-weight: 700; font-size: 1.3rem; color: #fff; margin-top: 1.5rem; }
.about-role { color: var(--blue-neon); font-size: 0.9rem; font-weight: 600; margin-top: 4px; }
.eyebrow-sm {
  display: inline-block; background: rgba(0,168,255,0.1); border: 1px solid rgba(0,168,255,0.3);
  border-radius: 50px; padding: 6px 18px; color: var(--blue-neon);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; margin-bottom: 1rem; text-transform: uppercase;
}
.about-heading { font-family: Rajdhani; font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.2; color: #fff; margin-bottom: 1.5rem; }
.about-p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; font-size: 1rem; }
.about-p strong { color: #cdd9e5; }
.stack-label { display: flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.stack-label svg { width: 14px; height: 14px; color: var(--blue-neon); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.5rem; }
.tag { background: rgba(0,168,255,0.08); border: 1px solid rgba(0,168,255,0.2); border-radius: 6px; padding: 4px 10px; font-size: 0.8rem; color: #cdd9e5; font-family: 'Exo 2'; font-weight: 600; }
.why-section { margin-top: 5rem; }
.why-title { font-family: Rajdhani; font-weight: 700; font-size: clamp(1.5rem, 3vw, 2.2rem); color: #fff; text-align: center; margin-bottom: 2.5rem; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.why-card { padding: 1.5rem; background: rgba(0,168,255,0.05); border: 1px solid rgba(0,168,255,0.15); border-radius: 16px; transition: transform 0.3s; }
.why-card:hover { transform: translateY(-5px); }
.why-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(0,168,255,0.1); border: 1px solid rgba(0,168,255,0.25); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.why-icon svg { width: 22px; height: 22px; color: var(--blue-neon); }
.why-card-title { font-family: Rajdhani; font-weight: 700; font-size: 1.15rem; color: #fff; margin-bottom: 8px; }
.why-card-desc { color: var(--text-muted); font-size: 0.875rem; line-height: 1.6; }

/* ── Experience ── */
.companies-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin-bottom: 3.5rem; }
.company-card { padding: 1.2rem; background: rgba(0,168,255,0.05); border: 1px solid rgba(0,168,255,0.15); border-radius: 14px; text-align: center; }
.company-name { font-family: Rajdhani; font-weight: 700; font-size: 1.05rem; color: #fff; margin-bottom: 4px; }
.company-role { color: var(--blue-neon); font-size: 0.8rem; font-weight: 600; margin-bottom: 2px; }
.company-period { color: var(--text-muted); font-size: 0.75rem; }
.highlights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.highlight-card { padding: 1.5rem; background: rgba(0,168,255,0.05); border: 1px solid rgba(0,168,255,0.15); border-radius: 16px; transition: transform 0.3s; }
.highlight-card:hover { transform: translateY(-5px); }
.highlight-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(0,168,255,0.1); border: 1px solid rgba(0,168,255,0.25); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.highlight-icon svg { width: 22px; height: 22px; color: var(--blue-neon); }
.highlight-title { font-family: Rajdhani; font-weight: 700; font-size: 1.15rem; color: #fff; margin-bottom: 8px; }
.highlight-desc { color: var(--text-muted); font-size: 0.875rem; line-height: 1.6; }
.tech-stack-box { margin-top: 3.5rem; padding: 2rem; background: rgba(0,168,255,0.04); border: 1px solid rgba(0,168,255,0.12); border-radius: 20px; }
.tech-stack-header { display: flex; align-items: center; gap: 10px; margin-bottom: 1.5rem; }
.tech-stack-header svg { width: 18px; height: 18px; color: var(--blue-neon); }
.tech-stack-header span { font-family: Rajdhani; font-weight: 700; font-size: 1.1rem; color: #fff; letter-spacing: 1px; text-transform: uppercase; }
.tech-cats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.2rem; }
.tech-cat-label { font-size: 0.72rem; color: var(--blue-neon); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
.tech-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tech-tag { background: rgba(0,168,255,0.08); border: 1px solid rgba(0,168,255,0.18); border-radius: 6px; padding: 3px 10px; font-size: 0.8rem; color: #cdd9e5; font-family: 'Exo 2'; font-weight: 600; }

/* ── Portfolio ── */
#portfolio { background: rgba(5,15,30,0.65); }
.portfolio-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.portfolio-card {
  display: flex; flex-direction: column; gap: 1rem; padding: 1.7rem;
  background: rgba(11,24,44,0.95); border: 1px solid rgba(0,168,255,0.12);
  border-radius: 24px; text-decoration: none; color: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25); transition: transform 0.3s;
}
.portfolio-card:hover { transform: translateY(-6px); }
.portfolio-header { display: flex; align-items: center; gap: 16px; }
.portfolio-logo { width: 70px; height: 70px; border-radius: 18px; overflow: hidden; background: #0b1628; display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.08); flex-shrink: 0; }
.portfolio-logo img { width: 100%; height: 100%; object-fit: contain; }
.portfolio-name { font-family: Rajdhani; font-weight: 700; font-size: 1.15rem; color: #fff; }
.portfolio-type { color: var(--text-muted); font-size: 0.85rem; }
.portfolio-desc { color: #cdd9e5; line-height: 1.7; }
.portfolio-cta { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-neon); font-weight: 700; font-size: 0.9rem; }
.portfolio-cta svg { width: 16px; height: 16px; }
.portfolio-bottom { text-align: center; margin-top: 3rem; }
.portfolio-bottom p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1rem; }

/* ── Process ── */
.process-wrapper { position: relative; }
.process-line { position: absolute; left: 28px; top: 40px; bottom: 40px; width: 2px; background: linear-gradient(to bottom, var(--blue-neon), var(--green-neon)); opacity: 0.3; }
.process-step { display: flex; gap: 1.5rem; margin-bottom: 2rem; align-items: flex-start; }
.step-bubble { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, #0078d4, #00a8ff); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 0 20px rgba(0,168,255,0.4); z-index: 1; }
.step-bubble svg { width: 24px; height: 24px; color: #fff; }
.step-card { background: rgba(5,15,30,0.8); border: 1px solid rgba(0,168,255,0.15); border-radius: 16px; padding: 1.25rem 1.5rem; flex: 1; }
.step-num { font-family: Orbitron; font-size: 0.75rem; color: var(--blue-neon); font-weight: 700; margin-bottom: 6px; }
.step-title { font-family: Rajdhani; font-weight: 700; font-size: 1.15rem; color: #fff; margin-bottom: 6px; }
.step-desc { color: var(--text-muted); font-size: 0.875rem; line-height: 1.6; }

/* ── CTA ── */
#contato { overflow: hidden; }
.cta-bg1 { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(0,120,212,0.15) 0%, transparent 70%); pointer-events: none; }
.cta-bg2 { position: absolute; inset: 0; background-image: linear-gradient(rgba(0,168,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0,168,255,0.04) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }
.cta-inner { max-width: 900px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.cta-icon { margin-bottom: 1.5rem; display: flex; justify-content: center; animation: ctaBob 3s ease-in-out infinite; }
.cta-icon svg { width: 64px; height: 64px; color: var(--blue-neon); }
.cta-title { font-family: Rajdhani; font-weight: 700; font-size: clamp(2rem, 6vw, 4rem); line-height: 1.1; color: #fff; margin-bottom: 1rem; }
.cta-subtitle { color: var(--text-muted); font-size: 1.1rem; line-height: 1.7; max-width: 560px; margin: 0 auto 3rem; }
.cta-services { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-bottom: 3rem; }
.cta-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 1.5rem 1rem; background: rgba(5,15,30,0.7);
  border-radius: 16px; text-decoration: none; transition: transform 0.2s;
}
.cta-card:hover { transform: translateY(-4px); }
.cta-card-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.cta-card-icon svg { width: 22px; height: 22px; }
.cta-card-label { font-family: Rajdhani; font-weight: 700; color: #fff; font-size: 1rem; }
.cta-card-desc { color: var(--text-muted); font-size: 0.78rem; line-height: 1.4; }
.cta-card-price { font-family: Rajdhani; font-weight: 700; font-size: 0.9rem; }
.cta-card-link { display: flex; align-items: center; gap: 4px; font-size: 0.8rem; font-weight: 600; }
.cta-card-link svg { width: 13px; height: 13px; }
.guarantees { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.guarantee { display: flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: 0.9rem; font-weight: 600; }
.guarantee svg { width: 16px; height: 16px; color: var(--blue-neon); }

/* ── Footer ── */
footer { background: #020b18; border-top: 1px solid rgba(0,168,255,0.15); padding: 3.5rem 2rem 2rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.footer-brand img { height: 42px; border-radius: 50%; border: 2px solid rgba(0,168,255,0.4); }
.footer-brand-n1 { font-family: Orbitron; font-weight: 700; color: #fff; font-size: 0.9rem; }
.footer-brand-n2 { font-family: Orbitron; font-weight: 700; color: var(--blue-neon); font-size: 0.9rem; }
.footer-desc { color: var(--text-muted); font-size: 0.875rem; line-height: 1.7; }
.footer-col-title { font-family: Rajdhani; font-weight: 700; color: #fff; margin-bottom: 1rem; font-size: 1rem; letter-spacing: 1px; text-transform: uppercase; }
.footer-link { color: var(--text-muted); text-decoration: none; font-size: 0.875rem; display: block; margin-bottom: 8px; transition: color 0.2s; }
.footer-link:hover { color: var(--blue-neon); }
.footer-guarantee { display: flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: 0.875rem; margin-bottom: 10px; }
.footer-guarantee svg { width: 15px; height: 15px; color: var(--blue-neon); }
.footer-bottom { border-top: 1px solid rgba(0,168,255,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; color: var(--text-muted); font-size: 0.8rem; }
.footer-bottom .dim { color: rgba(127,168,201,0.5); }

/* ── WhatsApp Float ── */
#whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 9000; display: flex; align-items: center; gap: 12px; }
.wa-tooltip { background: #fff; color: #111; padding: 8px 14px; border-radius: 10px; font-size: 0.85rem; font-weight: 600; white-space: nowrap; box-shadow: 0 4px 20px rgba(0,0,0,0.18); opacity: 0; transition: opacity 0.18s; pointer-events: none; }
#whatsapp-float:hover .wa-tooltip { opacity: 1; }
.wa-pulse { position: absolute; inset: 0; border-radius: 50%; background: #25D366; animation: waPulse 2.2s ease-in-out infinite; pointer-events: none; }
.wa-btn { position: relative; display: flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, #25D366, #128C7E); color: #fff; box-shadow: 0 4px 24px rgba(37,211,102,0.5); text-decoration: none; flex-shrink: 0; transition: transform 0.2s; }
.wa-btn:hover { transform: scale(1.1); }
.wa-btn svg { width: 30px; height: 30px; fill: #fff; }

/* ── Service Page ── */
.service-page-main { background: #020b18; min-height: 100vh; padding-top: 72px; position: relative; overflow: hidden; }
.sp-bg1 { position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 30%, rgba(0,120,212,0.12) 0%, transparent 60%), radial-gradient(ellipse at 80% 70%, rgba(0,168,255,0.07) 0%, transparent 50%); pointer-events: none; }
.sp-bg2 { position: absolute; inset: 0; background-image: linear-gradient(rgba(0,168,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0,168,255,0.04) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }
.sp-content { max-width: 1200px; margin: 0 auto; padding: 48px 2rem 80px; position: relative; z-index: 1; }
.sp-hero { margin-bottom: 3rem; text-align: center; }
.badge-popular-sp { display: inline-flex; align-items: center; gap: 6px; background: linear-gradient(135deg, #00c853, #00e676); color: #fff; padding: 5px 16px; border-radius: 50px; font-size: 0.72rem; font-weight: 800; letter-spacing: 1px; margin-bottom: 1rem; }
.badge-popular-sp svg { width: 12px; height: 12px; }
.sp-title { font-family: Rajdhani; font-weight: 700; font-size: clamp(2.2rem, 5vw, 3.8rem); color: #fff; line-height: 1.05; margin-bottom: 0.75rem; }
.sp-subtitle { color: var(--text-muted); font-size: 1.1rem; max-width: 540px; margin: 0 auto 1.5rem; line-height: 1.6; }
.sp-badges { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.sp-price-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,168,255,0.08); border: 1px solid rgba(0,168,255,0.25); border-radius: 50px; padding: 8px 18px; font-family: Rajdhani; font-weight: 700; font-size: 1.1rem; }
.sp-delivery-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,230,118,0.07); border: 1px solid rgba(0,230,118,0.2); border-radius: 50px; padding: 8px 18px; color: var(--green-neon); font-size: 0.85rem; font-weight: 600; }
.sp-delivery-badge svg { width: 14px; height: 14px; }
.service-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 2.5rem; align-items: start; }
@media (max-width: 768px) { .service-grid { grid-template-columns: 1fr; } }
.sp-img { border-radius: 20px; overflow: hidden; margin-bottom: 1.5rem; position: relative; height: 240px; }
.sp-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.sp-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(2,11,24,0.7) 0%, transparent 60%); }
.features-box { border-radius: 16px; padding: 1.5rem; margin-bottom: 1.5rem; }
.features-box h3 { font-family: Rajdhani; font-weight: 700; font-size: 1.1rem; color: #fff; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 1px; }
.features-box ul { list-style: none; display: grid; gap: 10px; }
.features-box li { display: flex; align-items: center; gap: 10px; color: #cdd9e5; font-size: 0.9rem; }
.features-box li svg { width: 16px; height: 16px; color: var(--green-neon); flex-shrink: 0; }
.trust-list { display: grid; gap: 8px; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 0.85rem; font-weight: 600; }
.trust-item svg { width: 16px; height: 16px; }

/* Form */
.form-card { background: rgba(5,15,30,0.9); border: 1px solid rgba(0,168,255,0.2); border-radius: 22px; overflow: hidden; box-shadow: 0 0 60px rgba(0,168,255,0.08); }
.form-header { padding: 20px 24px; border-bottom: 1px solid rgba(0,168,255,0.12); }
.form-header-title { font-family: Rajdhani; font-weight: 700; font-size: 1.2rem; color: #fff; margin-bottom: 12px; }
.progress-bar { display: flex; gap: 4px; }
.progress-seg { flex: 1; height: 4px; border-radius: 4px; background: rgba(0,168,255,0.15); transition: background 0.3s; }
.progress-seg.active { background: var(--blue-neon); }
.form-body { padding: 24px; }
.form-grid { display: grid; gap: 16px; }
.form-group { display: grid; gap: 6px; }
.form-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 13px 15px; border-radius: 12px;
  background: rgba(2,11,24,0.85); border: 1px solid rgba(0,168,255,0.25);
  color: #fff; font-family: 'Exo 2', sans-serif; font-size: 0.95rem; outline: none;
  transition: border-color 0.2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: rgba(0,168,255,0.6); }
.form-textarea { resize: vertical; min-height: 90px; }
.form-select option { background: #050f1e; color: #fff; }
.btn-action {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px; border-radius: 50px; border: none;
  cursor: pointer; font-family: 'Exo 2'; font-weight: 800; font-size: 1rem; color: #fff;
  transition: transform 0.2s; box-shadow: 0 0 25px rgba(0,168,255,0.4);
}
.btn-action svg { width: 18px; height: 18px; }
.btn-action:disabled { background: rgba(127,168,201,0.15) !important; box-shadow: none !important; cursor: not-allowed; opacity: 0.55; }
.btn-action:not(:disabled):hover { transform: scale(1.02); }
.btn-back { flex: 0 0 auto; display: flex; align-items: center; gap: 6px; background: rgba(0,168,255,0.08); border: 1px solid rgba(0,168,255,0.25); border-radius: 50px; padding: 13px 18px; color: var(--text-muted); font-family: 'Exo 2'; font-weight: 700; font-size: 0.9rem; cursor: pointer; }
.btn-back:hover { color: #fff; }
.btn-back svg { width: 16px; height: 16px; }
.step-row { display: flex; gap: 10px; margin-top: 4px; }
.form-privacy { font-size: 0.75rem; color: var(--text-muted); text-align: center; margin-top: 8px; }
.success-icon { width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 20px; background: rgba(0,230,118,0.1); border: 2px solid var(--green-neon); display: flex; align-items: center; justify-content: center; animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }
.success-icon svg { width: 38px; height: 38px; color: var(--green-neon); }
.success-title { font-family: Rajdhani; font-weight: 700; font-size: 1.65rem; color: #fff; margin-bottom: 8px; }
.success-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; margin-bottom: 22px; max-width: 300px; margin-left: auto; margin-right: auto; }
.success-info { display: grid; gap: 10px; margin-bottom: 22px; text-align: left; }
.success-info-item { display: flex; align-items: center; gap: 12px; border-radius: 12px; padding: 12px 14px; }
.success-info-item.blue { background: rgba(0,168,255,0.06); border: 1px solid rgba(0,168,255,0.15); }
.success-info-item.green { background: rgba(0,230,118,0.06); border: 1px solid rgba(0,230,118,0.15); }
.success-info-item svg { width: 18px; height: 18px; flex-shrink: 0; }
.info-label { color: #fff; font-weight: 700; font-size: 0.85rem; }
.info-sub { color: var(--text-muted); font-size: 0.75rem; }
.success-wa-text { color: var(--text-muted); font-size: 0.78rem; margin-bottom: 10px; }
.btn-wa-secondary { display: inline-flex; align-items: center; gap: 7px; color: var(--green-neon); text-decoration: none; font-weight: 700; font-size: 0.85rem; border: 1px solid rgba(0,230,118,0.3); border-radius: 50px; padding: 9px 20px; }
.btn-wa-secondary svg { width: 15px; height: 15px; }
.success-center { text-align: center; padding: 8px 0; }

/* ── Urgency notice ── */
.urgency-notice {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,152,0,0.1); border: 1px solid rgba(255,152,0,0.3);
  border-radius: 50px; padding: 8px 20px; margin-bottom: 1.5rem;
  font-size: 0.82rem; color: #ff9800; font-weight: 700; letter-spacing: 0.5px;
  animation: fadeInUp 0.6s ease 0.1s both;
}
.urgency-notice svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── WhatsApp secondary button ── */
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(37,211,102,0.08); border: 2px solid rgba(37,211,102,0.45);
  color: #25D366; padding: 15px 30px; border-radius: 50px;
  font-family: 'Exo 2'; font-weight: 800; font-size: 1rem;
  text-decoration: none; transition: all 0.2s;
}
.btn-whatsapp:hover { background: rgba(37,211,102,0.18); border-color: #25D366; }
.btn-whatsapp svg { width: 18px; height: 18px; fill: currentColor; }

/* ── Testimonials ── */
#depoimentos { background: rgba(5,15,30,0.55); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}
.testimonial-card {
  background: rgba(5,15,30,0.9); border: 1px solid rgba(0,168,255,0.15);
  border-radius: 20px; padding: 1.75rem; display: flex; flex-direction: column;
  gap: 1.2rem; transition: transform 0.3s, border-color 0.3s;
}
.testimonial-card:hover { transform: translateY(-5px); border-color: rgba(0,168,255,0.38); }

.testimonial-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.testimonial-author-row { display: flex; align-items: center; gap: 12px; }

.avatar-circle {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: Rajdhani; font-weight: 700; font-size: 1.1rem; color: #fff;
}
.avatar-dr { background: linear-gradient(135deg, #0078d4, #00a8ff); }
.avatar-lr { background: linear-gradient(135deg, #00c853, #00e676); }

.author-name { font-family: Rajdhani; font-weight: 700; color: #fff; font-size: 1rem; }
.author-role { color: var(--text-muted); font-size: 0.78rem; margin-top: 2px; }

.google-badge {
  display: flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 5px 10px; flex-shrink: 0;
  font-size: 0.72rem; color: #9aa5b4; font-weight: 600;
}
.google-badge svg { width: 14px; height: 14px; }

.stars { color: #ffd700; font-size: 1rem; letter-spacing: 2px; }
.testimonial-quote {
  color: #cdd9e5; line-height: 1.8; font-size: 0.96rem; flex: 1;
  padding-left: 1rem; border-left: 2px solid rgba(0,168,255,0.35);
}

/* ── FAQ ── */
.faq-list { display: grid; gap: 0.75rem; }
.faq-item {
  background: rgba(5,15,30,0.85); border: 1px solid rgba(0,168,255,0.15);
  border-radius: 14px; overflow: hidden; transition: border-color 0.2s;
}
.faq-item[open] { border-color: rgba(0,168,255,0.42); }
.faq-question {
  list-style: none; padding: 1.2rem 1.5rem; color: #fff;
  font-family: Rajdhani; font-weight: 700; font-size: 1.05rem;
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; user-select: none; gap: 1rem;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+'; color: var(--blue-neon); font-size: 1.5rem;
  font-weight: 300; line-height: 1; flex-shrink: 0; transition: transform 0.25s;
}
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer { padding: 0 1.5rem 1.25rem; color: var(--text-muted); line-height: 1.75; font-size: 0.93rem; }
.faq-answer strong { color: #cdd9e5; }

/* ── Guarantee box in CTA ── */
.guarantee-box {
  display: flex; align-items: center; gap: 1.2rem;
  background: rgba(0,230,118,0.05); border: 1px solid rgba(0,230,118,0.22);
  border-radius: 16px; padding: 1.2rem 1.5rem; max-width: 500px;
  margin: 0 auto 2.5rem; text-align: left;
}
.guarantee-box-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: rgba(0,230,118,0.1); border: 1px solid rgba(0,230,118,0.25);
  display: flex; align-items: center; justify-content: center;
}
.guarantee-box-icon svg { width: 24px; height: 24px; color: var(--green-neon); }
.guarantee-box-title { font-family: Rajdhani; font-weight: 700; color: #fff; font-size: 1rem; margin-bottom: 4px; }
.guarantee-box-desc { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; }

/* ── Footer social links ── */
.footer-social { display: flex; gap: 10px; margin-top: 1rem; }
.footer-social-link {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(0,168,255,0.08); border: 1px solid rgba(0,168,255,0.2);
  color: var(--text-muted); text-decoration: none; transition: all 0.2s;
}
.footer-social-link:hover { background: rgba(0,168,255,0.15); color: var(--blue-neon); border-color: rgba(0,168,255,0.5); }
.footer-social-link svg { width: 17px; height: 17px; }
