/* ==========================================================================
   DESTAKWEB - CSS Global & Design System
   Design: Premium Light High-Tech & Clean
   ========================================================================== */

:root {
  /* Paleta Base Light Tech */
  --bg-primary: #f8fafc;
  --bg-secondary: #f1f5f9;
  --bg-card: rgba(255, 255, 255, 0.88);
  --bg-card-hover: rgba(255, 255, 255, 0.98);
  --bg-glass: rgba(255, 255, 255, 0.75);
  
  /* Textos e Contraste */
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #64748b;
  --text-inverse: #ffffff;

  /* Cores Globais da Marca */
  --brand-blue: #2563eb;
  --brand-blue-hover: #1d4ed8;
  --brand-indigo: #4f46e5;
  --brand-cyan: #06b6d4;
  --brand-teal: #0d9488;
  --brand-emerald: #10b981;
  --brand-purple: #7c3aed;
  --brand-pink: #ec4899;
  --brand-amber: #f59e0b;

  /* Seção 1: Desenvolvimento Web (Azul & Ciano Tecnológico) */
  --web-primary: #0284c7;
  --web-gradient: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
  --web-bg: #f0f9ff;
  --web-glow: rgba(2, 132, 199, 0.18);

  /* Seção 2: Retrô Games (Púrpura & Magenta Arcade) */
  --retro-primary: #8b5cf6;
  --retro-gradient: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  --retro-bg: #faf5ff;
  --retro-glow: rgba(139, 92, 246, 0.22);

  /* Seção 3: Nuvem & Backup Local (Teal & Esmeralda Segurança) */
  --cloud-primary: #0d9488;
  --cloud-gradient: linear-gradient(135deg, #0d9488 0%, #10b981 100%);
  --cloud-bg: #f0fdfa;
  --cloud-glow: rgba(13, 148, 136, 0.18);

  /* Seção 4: Manutenção de Notebooks & PCs (Âmbar & Laranja Tecnológico) */
  --maint-primary: #d97706;
  --maint-gradient: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  --maint-bg: #fffbeb;
  --maint-glow: rgba(245, 158, 11, 0.20);

  /* Bordas e Sombras */
  --border-light: rgba(226, 232, 240, 0.9);
  --border-glow: rgba(37, 99, 235, 0.25);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 24px -4px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 20px 40px -10px rgba(15, 23, 42, 0.10);
  --shadow-glow: 0 10px 30px rgba(37, 99, 235, 0.15);

  /* Tipografia */
  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', var(--font-main);
  --font-mono: 'JetBrains Mono', monospace;

  /* Transições */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  /* Dimensões */
  --container-max: 1240px;
  --navbar-height: 86px;
  --border-radius-sm: 10px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-full: 9999px;
}

/* ==========================================================================
   TEMA ESCURO (DARK MODE)
   ========================================================================== */
[data-theme="dark"] {
  /* Paleta Base Dark Tech */
  --bg-primary: #090d16;
  --bg-secondary: #0f172a;
  --bg-card: rgba(15, 23, 42, 0.85);
  --bg-card-hover: rgba(30, 41, 59, 0.95);
  --bg-glass: rgba(15, 23, 42, 0.88);

  /* Textos e Contraste */
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-light: #64748b;
  --text-inverse: #090d16;

  /* Bordas e Sombras */
  --border-light: rgba(51, 65, 85, 0.6);
  --border-glow: rgba(56, 189, 248, 0.35);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 8px 24px -4px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.75);
  --shadow-glow: 0 10px 30px rgba(56, 189, 248, 0.2);

  /* Fundos específicos de seções no Dark */
  --web-bg: rgba(2, 132, 199, 0.12);
  --retro-bg: rgba(139, 92, 246, 0.14);
  --cloud-bg: rgba(13, 148, 136, 0.14);
  --maint-bg: rgba(245, 158, 11, 0.14);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

/* Background com Malha Tecnológica Sutil */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(37, 99, 235, 0.04) 0%, transparent 45%),
    radial-gradient(circle at 85% 30%, rgba(139, 92, 246, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(13, 148, 136, 0.04) 0%, transparent 50%),
    linear-gradient(rgba(226, 232, 240, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226, 232, 240, 0.4) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 48px 48px, 48px 48px;
  pointer-events: none;
  z-index: -1;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-muted);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img, svg {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Utilitários de Layout */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding: 6.5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--border-radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 1.25rem;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
}

/* Estilos de Tags Coloridas por Seção */
.tag-web {
  background-color: var(--web-bg);
  color: var(--web-primary);
  border: 1px solid rgba(2, 132, 199, 0.2);
}

.tag-retro {
  background-color: var(--retro-bg);
  color: var(--retro-primary);
  border: 1px solid rgba(139, 92, 246, 0.25);
}

.tag-cloud {
  background-color: var(--cloud-bg);
  color: var(--cloud-primary);
  border: 1px solid rgba(13, 148, 136, 0.25);
}

.tag-maint {
  background-color: var(--maint-bg);
  color: var(--maint-primary);
  border: 1px solid rgba(245, 158, 11, 0.35);
}

.tag-budget {
  background-color: #eff6ff;
  color: var(--brand-blue);
  border: 1px solid rgba(37, 99, 235, 0.25);
}

/* ==========================================================================
   HEADER / NAVBAR (CLEAN LIGHT TECH GLASS THEME)
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-height);
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  transition: background-color var(--transition-normal), box-shadow var(--transition-normal), backdrop-filter var(--transition-normal), border-color var(--transition-normal);
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.09);
  border-bottom-color: rgba(203, 213, 225, 0.9);
}

.header .container {
  height: 100%;
  max-width: 1440px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

/* Logotipo */
.logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 12px;
  text-decoration: none;
  flex-shrink: 0;
  z-index: 10;
  transition: all var(--transition-normal);
}

.logo::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.12), rgba(6, 182, 212, 0.06) 60%, transparent 80%);
  z-index: -1;
  opacity: 0;
  filter: blur(8px);
  transition: opacity var(--transition-normal);
  pointer-events: none;
}

.logo:hover {
  transform: translateY(-1px) scale(1.02);
  background: rgba(37, 99, 235, 0.04);
}

.logo:hover::before {
  opacity: 1;
}

.logo-img {
  height: 54px;
  max-height: 58px;
  width: auto;
  min-width: 100px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
  filter: drop-shadow(0 2px 6px rgba(15, 23, 42, 0.08));
}

.logo:hover .logo-img {
  transform: scale(1.02);
}

.logo-img-footer {
  height: 52px;
  max-height: 58px;
  width: auto;
  object-fit: contain;
  background: white;
  padding: 6px 12px;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25), 0 0 20px rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

/* Links de Navegação em Formato Pílula / Dock */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 5px 8px;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--border-radius-full);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  flex-shrink: 1;
}

.nav-link {
  font-weight: 600;
  font-size: 0.86rem;
  color: #475569;
  position: relative;
  padding: 0.42rem 0.85rem;
  border-radius: var(--border-radius-full);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover {
  color: #0f172a;
  background: rgba(37, 99, 235, 0.08);
}

.nav-link.active {
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  box-shadow: 0 3px 12px rgba(37, 99, 235, 0.35);
}

/* Área de Botões de Ação no Header */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.25rem;
  padding-left: 0.75rem;
  border-left: 1px solid rgba(226, 232, 240, 0.9);
  flex-shrink: 0;
}

.nav-actions .btn-header-cta {
  padding: 0.5rem 1.05rem;
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
  border-radius: var(--border-radius-full);
}

.nav-social-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-right: 0.4rem;
}

.nav-social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  transition: all var(--transition-fast);
}

.nav-social-icon:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.nav-social-icon svg {
  width: 16px;
  height: 16px;
}

/* Botão Hamburguer Mobile */
.mobile-toggle {
  display: none;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-fast);
}

.mobile-toggle:hover {
  background-color: rgba(37, 99, 235, 0.08);
  color: var(--brand-blue);
}

/* ==========================================================================
   SEÇÃO HERO (HOME)
   ========================================================================== */
.hero-section {
  padding-top: 3.5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   SEÇÃO HERO (DARK TECH 3D SHOWCASE)
   ========================================================================== */
.hero-section {
  background: radial-gradient(circle at 80% 25%, rgba(124, 58, 237, 0.28) 0%, transparent 55%),
              radial-gradient(circle at 20% 75%, rgba(56, 189, 248, 0.18) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(217, 70, 239, 0.12) 0%, transparent 60%),
              linear-gradient(180deg, #070314 0%, #0d0622 55%, #130730 100%);
  color: #ffffff;
  padding-top: 4.5rem;
  padding-bottom: 6.5rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.badge-we-build {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid rgba(168, 85, 247, 0.5);
  border-radius: var(--border-radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c084fc;
  box-shadow: 0 0 16px rgba(124, 58, 237, 0.3);
}

.hero-title {
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #c084fc 0%, #d946ef 50%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-services-bullets {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 1.25rem;
}

.hero-services-bullets span {
  display: inline-flex;
  align-items: center;
}

.hero-services-bullets span::after {
  content: '•';
  color: #a855f7;
  margin-left: 0.75rem;
  font-size: 1.1rem;
}

.hero-services-bullets span:last-child::after {
  display: none;
}

.hero-description {
  font-size: 1.05rem;
  color: #94a3b8;
  margin-bottom: 2.25rem;
  max-width: 540px;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%);
  color: #ffffff;
  padding: 0.9rem 2rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--border-radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.45);
  transition: all var(--transition-normal);
  text-decoration: none;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.6);
  color: #ffffff;
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  padding: 0.9rem 1.85rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--border-radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(8px);
  transition: all var(--transition-normal);
  text-decoration: none;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #c084fc;
  transform: translateY(-3px);
  color: #ffffff;
}

/* ==========================================================================
   COMPOSIÇÃO VISUAL 3D DO HERO (LAPTOP + SMARTPHONE MOCKUPS)
   ========================================================================== */
.hero-3d-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

/* Mockup Laptop 3D */
.laptop-3d-wrap {
  width: 100%;
  max-width: 500px;
  transform: rotateY(-7deg) rotateX(5deg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.8));
  position: relative;
}

.laptop-3d-wrap:hover {
  transform: rotateY(-2deg) rotateX(2deg) translateY(-6px);
}

.laptop-bezel {
  background: #020617;
  border-radius: 14px 14px 0 0;
  border: 3px solid #334155;
  border-bottom: none;
  padding: 0.4rem 0.4rem 0 0.4rem;
  position: relative;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.9);
}

.laptop-camera {
  width: 6px;
  height: 6px;
  background: #1e293b;
  border-radius: 50%;
  margin: 0 auto 0.35rem auto;
  border: 1px solid #475569;
}

.laptop-screen-content {
  background: linear-gradient(135deg, #09051a 0%, #150930 100%);
  border-radius: 8px 8px 0 0;
  padding: 1.25rem;
  min-height: 250px;
  border: 1px solid rgba(139, 92, 246, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.laptop-code-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.6rem;
  margin-bottom: 0.75rem;
}

.laptop-dots {
  display: flex;
  gap: 0.35rem;
}

.laptop-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.laptop-dots .d-red { background: #ef4444; }
.laptop-dots .d-yellow { background: #eab308; }
.laptop-dots .d-green { background: #22c55e; }

.laptop-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #c084fc;
  background: rgba(124, 58, 237, 0.2);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

.laptop-hero-inner h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 0.35rem;
}

.laptop-hero-inner p {
  font-size: 0.78rem;
  color: #94a3b8;
  margin-bottom: 0.75rem;
}

.laptop-mini-btn {
  display: inline-block;
  background: #7c3aed;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: var(--border-radius-full);
}

.laptop-base-bottom {
  height: 12px;
  background: linear-gradient(180deg, #64748b 0%, #334155 60%, #1e293b 100%);
  border-radius: 0 0 16px 16px;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.laptop-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: #0f172a;
  border-radius: 0 0 4px 4px;
}

/* Mockup Smartphone 3D */
.phone-3d-wrap {
  position: absolute;
  right: -15px;
  bottom: -25px;
  width: 175px;
  background: #020617;
  border: 3.5px solid #475569;
  border-radius: 28px;
  padding: 0.35rem;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.75), 0 0 30px rgba(124, 58, 237, 0.3);
  transform: rotateY(-10deg) rotateX(4deg) translateZ(45px);
  transition: transform 0.5s ease;
  z-index: 10;
}

.phone-3d-wrap:hover {
  transform: rotateY(-3deg) rotateX(0deg) translateZ(65px);
}

.phone-screen-inner {
  background: linear-gradient(180deg, #0f0728 0%, #1e0f47 100%);
  border-radius: 22px;
  padding: 0.85rem 0.65rem;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(217, 70, 239, 0.3);
}

.phone-notch-bar {
  width: 40px;
  height: 4px;
  background: #334155;
  border-radius: 4px;
  margin: 0 auto 0.6rem auto;
}

.phone-profile-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.phone-avatar-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #7c3aed;
  color: #fff;
  font-weight: 800;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-stats-row {
  display: flex;
  justify-content: space-around;
  text-align: center;
  font-size: 0.7rem;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.4rem;
  border-radius: 8px;
  margin-bottom: 0.6rem;
}

.phone-stats-row strong {
  display: block;
  font-size: 0.85rem;
  color: #ffffff;
}

.phone-grid-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem;
  margin-bottom: 0.6rem;
}

.phone-mini-icon {
  background: rgba(124, 58, 237, 0.25);
  border: 1px solid rgba(124, 58, 237, 0.4);
  border-radius: 8px;
  padding: 0.35rem;
  text-align: center;
  font-size: 0.75rem;
}

.phone-chart-preview {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  padding: 0.5rem;
  text-align: center;
}

.phone-chart-line {
  height: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3px;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(180deg, #d946ef, #7c3aed);
  border-radius: 2px 2px 0 0;
}

.upcoming-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.upcoming-tags {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.upcoming-tag-item {
  font-size: 0.78rem;
  font-weight: 600;
  background: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-full);
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: var(--brand-purple);
}

/* ==========================================================================
   SEÇÃO 1: DESENVOLVIMENTO DE SITES & SISTEMAS
   ========================================================================== */
.section-web {
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(240, 249, 255, 0.45) 50%, var(--bg-primary) 100%);
}

.web-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 2.25rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  transition: background var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.3);
  background: var(--bg-card-hover);
}

.service-card.web-card:hover::before {
  background: var(--web-gradient);
}

.service-card.maint-card:hover::before {
  background: var(--maint-gradient);
}

.service-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: transform var(--transition-fast);
}

.service-card:hover .service-icon-wrap {
  transform: scale(1.08);
}

.web-icon-wrap {
  background: rgba(2, 132, 199, 0.1);
  color: var(--web-primary);
  border: 1px solid rgba(2, 132, 199, 0.2);
}

.maint-icon-wrap {
  background: rgba(245, 158, 11, 0.12);
  color: var(--maint-primary);
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-features {
  border-top: 1px solid var(--border-light);
  padding-top: 1.25rem;
  margin-top: auto;
}

.feature-list-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.feature-list-item svg {
  color: var(--brand-emerald);
  flex-shrink: 0;
}

/* Grid de Tecnologias */
.tech-stack-row {
  margin-top: 3.5rem;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.tech-stack-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: var(--bg-secondary);
  border-radius: var(--border-radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

/* ==========================================================================
   SEÇÃO: MANUTENÇÃO DE NOTEBOOKS & PCS
   ========================================================================== */
.section-maint {
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(254, 243, 199, 0.35) 50%, var(--bg-primary) 100%);
  position: relative;
}

.maint-workflow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.maint-step-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  transition: all var(--transition-fast);
}

.maint-step-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: var(--shadow-md);
}

.maint-step-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--maint-primary);
  opacity: 0.4;
  line-height: 1;
}

.maint-step-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-main);
}

.maint-step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SEÇÃO 2: RETRÔ GAMES (SISTEMAS & PCS)
   ========================================================================== */
.section-retro {
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(250, 245, 255, 0.5) 50%, var(--bg-primary) 100%);
  position: relative;
}

.retro-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.retro-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: var(--border-radius-lg);
  padding: 2.25rem;
  position: relative;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.retro-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.4);
}

.retro-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--retro-gradient);
}

.retro-badge-top {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(139, 92, 246, 0.1);
  color: var(--retro-primary);
  border: 1px solid rgba(139, 92, 246, 0.3);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-full);
  text-transform: uppercase;
}

.retro-icon-wrap {
  background: rgba(139, 92, 246, 0.12);
  color: var(--retro-primary);
  border: 1px solid rgba(139, 92, 246, 0.25);
}

.retro-specs-box {
  background: rgba(250, 245, 255, 0.7);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: var(--border-radius-md);
  padding: 1.25rem;
  margin: 1.5rem 0;
}

.retro-spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 0.35rem 0;
  border-bottom: 1px dashed rgba(139, 92, 246, 0.15);
}

.retro-spec-row:last-child {
  border-bottom: none;
}

.retro-spec-label {
  color: var(--text-light);
  font-weight: 500;
}

.retro-spec-val {
  color: var(--text-main);
  font-weight: 700;
}

/* Faixa de Emuladores e Plataformas Suportadas */
.retro-consoles-bar {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.retro-consoles-title {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.consoles-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.console-chip {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-full);
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.console-chip:hover {
  background: var(--retro-primary);
  color: white;
  border-color: var(--retro-primary);
  transform: translateY(-2px);
}

/* ==========================================================================
   SEÇÃO 3: NUVEM & BACKUP LOCAL (NEXTCLOUD)
   ========================================================================== */
.section-cloud {
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(240, 253, 250, 0.5) 50%, var(--bg-primary) 100%);
  position: relative;
}

.cloud-grid-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.cloud-benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.cloud-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-card);
  padding: 1.25rem;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(13, 148, 136, 0.15);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

.cloud-benefit-item:hover {
  transform: translateX(4px);
  border-color: rgba(13, 148, 136, 0.35);
}

.cloud-benefit-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--border-radius-sm);
  background: rgba(13, 148, 136, 0.12);
  color: var(--cloud-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.cloud-benefit-info h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.cloud-benefit-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Card Comparativo: Nuvem Própria vs Nuvem Pública */
.cloud-compare-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.compare-header {
  text-align: center;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 0.85rem 0.75rem;
  font-size: 0.9rem;
  text-align: left;
}

.compare-table th {
  font-weight: 700;
  color: var(--text-muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.compare-table tr:not(:last-child) td {
  border-bottom: 1px solid var(--border-light);
}

.compare-highlight {
  color: var(--cloud-primary);
  font-weight: 700;
}

/* ==========================================================================
   SEÇÃO 4: SIMULADOR DE ORÇAMENTO INTERATIVO & CONTATO
   ========================================================================== */
.section-budget {
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(239, 246, 255, 0.6) 100%);
  position: relative;
}

.calculator-wrapper {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 3rem;
  max-width: 960px;
  margin: 0 auto;
}

.calc-step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.step-circle {
  width: 38px;
  height: 38px;
  border-radius: var(--border-radius-full);
  background: var(--brand-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.step-title {
  font-size: 1.3rem;
  font-weight: 700;
}

/* Seleção de Categoria de Serviço */
.service-selector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.service-option-card {
  border: 2px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 1.5rem 1.25rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: var(--bg-primary);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  user-select: none;
}

.service-option-card:hover {
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
  background: white;
}

.service-option-card.selected {
  border-color: var(--brand-blue);
  background: rgba(37, 99, 235, 0.04);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.12);
}

.service-option-icon {
  font-size: 2rem;
}

.service-option-name {
  font-weight: 700;
  font-size: 1rem;
}

.service-option-sub {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Opções Dinâmicas por Serviço */
.calc-dynamic-options {
  background: var(--bg-secondary);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  margin-bottom: 2.5rem;
}

.calc-options-group {
  margin-bottom: 1.75rem;
}

.calc-options-group:last-child {
  margin-bottom: 0;
}

.calc-group-label {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
  display: block;
}

.calc-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.85rem;
}

.calc-check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  padding: 0.85rem 1rem;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: all var(--transition-fast);
  user-select: none;
}

.calc-check-item:hover {
  border-color: var(--brand-blue);
}

.calc-check-item input[type="checkbox"],
.calc-check-item input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--brand-blue);
  cursor: pointer;
}

.calc-check-text {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-main);
  flex-grow: 1;
}

.calc-check-price {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-blue);
}

/* Resumo e Botão de Ação */
.calc-summary-box {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: white;
  border-radius: var(--border-radius-md);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.calc-summary-info {
  max-width: 420px;
}

.calc-summary-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.35rem;
}

.calc-summary-desc {
  font-size: 0.88rem;
  color: #94a3b8;
}

.calc-price-display {
  display: flex;
  flex-direction: column;
}

.calc-price-label {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.calc-price-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #38bdf8;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 5rem 0 2rem 0;
  border-top: 1px solid #1e293b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 0.95rem;
  max-width: 320px;
  line-height: 1.6;
}

.footer-col h4 {
  color: white;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: #94a3b8;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: #38bdf8;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #1e293b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-copy {
  color: #64748b;
}

/* ==========================================================================
   TOP PROMO BANNER (Gatilho de Urgência & Bônus)
   ========================================================================== */
.top-promo-bar {
  background: linear-gradient(90deg, #0f172a 0%, #1e1b4b 30%, #312e81 65%, #0f172a 100%);
  background-size: 200% auto;
  animation: promoGradientMove 8s ease infinite;
  color: #ffffff;
  padding: 0.5rem 1rem;
  font-size: 0.86rem;
  position: relative;
  z-index: 1001;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@keyframes promoGradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.top-promo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  text-align: center;
  line-height: 1.4;
}

.top-promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(236, 72, 153, 0.2);
  border: 1px solid rgba(244, 114, 182, 0.5);
  color: #f472b6;
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.65rem;
  border-radius: var(--border-radius-full);
}

.top-promo-text {
  font-weight: 500;
  color: #f8fafc;
}

.top-promo-text strong {
  color: #ffffff;
  font-weight: 700;
}

.top-promo-timer {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(15, 23, 42, 0.65);
  padding: 0.2rem 0.65rem;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.78rem;
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.35);
  letter-spacing: 0.02em;
}

.top-promo-link {
  background: #fde047;
  color: #0f172a;
  font-weight: 800;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-full);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 2px 8px rgba(253, 224, 71, 0.35);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.top-promo-link:hover {
  background: #ffffff;
  color: #0f172a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   TYPEWRITER & CURSOR DINÂMICO NO HERO
   ========================================================================== */
.hero-typewriter {
  display: inline;
  position: relative;
}

.typewriter-cursor {
  display: inline-block;
  width: 3px;
  height: 1.1em;
  background: var(--brand-blue);
  margin-left: 4px;
  vertical-align: middle;
  animation: typewriterBlink 0.8s infinite;
}

/* ==========================================================================
   FAIXA DE DIFERENCIAIS ESCURA (DARK FEATURE RIBBON)
   ========================================================================== */
.dark-feature-ribbon {
  background: #080417;
  color: #ffffff;
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.dark-feature-ribbon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.feature-ribbon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-ribbon-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-ribbon-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid rgba(168, 85, 247, 0.4);
  color: #c084fc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.25);
}

.feature-ribbon-icon svg {
  width: 24px;
  height: 24px;
}

.feature-ribbon-text h4 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.25rem;
}

.feature-ribbon-text p {
  color: #94a3b8;
  font-size: 0.84rem;
  line-height: 1.45;
}

/* ==========================================================================
   CARDS DE SERVIÇOS COM PREVIEW VISUAL EMBUTIDO (WHAT WE DO / OUR SERVICES)
   ========================================================================== */
.services-embedded-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card-embedded {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card-embedded:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(124, 58, 237, 0.12);
  border-color: rgba(124, 58, 237, 0.35);
}

.service-round-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #7c3aed;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.4);
}

.service-round-icon svg {
  width: 24px;
  height: 24px;
}

.service-card-embedded h3 {
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.service-card-embedded .service-subtext {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.service-checklist-styled {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.service-checklist-styled li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
}

.service-checklist-styled li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7c3aed;
  flex-shrink: 0;
}

.service-embedded-mockup {
  margin-top: auto;
  background: #0f172a;
  border-radius: 12px;
  padding: 0.85rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   PORTFÓLIO: PROJETOS RECENTES EM 4 COLUNAS (OUR WORK / RECENT PROJECTS)
   ========================================================================== */
.recent-projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.project-card-modern {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.project-card-modern:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.3);
}

.project-thumb-modern {
  height: 160px;
  background: #0f172a;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.project-footer-bar {
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
}

.project-badge-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(124, 58, 237, 0.12);
  color: #7c3aed;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.project-badge-icon svg {
  width: 18px;
  height: 18px;
}

.project-meta-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.project-meta-info span {
  font-size: 0.78rem;
  color: #64748b;
}

/* ==========================================================================
   DEPOIMENTOS DE CLIENTES (WHAT OUR CLIENTS SAY)
   ========================================================================== */
.testimonials-section {
  background: #f8fafc;
  padding: 5.5rem 0;
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card-modern {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2.25rem 2rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-fast);
  position: relative;
}

.testimonial-card-modern:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.08);
}

.quote-mark-purple {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 0.8;
  color: #7c3aed;
  margin-bottom: 0.85rem;
}

.testimonial-text {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

.author-avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #7c3aed;
}

.author-details h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.author-details span {
  font-size: 0.78rem;
  color: #64748b;
}

/* ==========================================================================
   RODAPÉ DARK DE CONVERSÃO & WHATSAPP (READY TO GROW YOUR BUSINESS?)
   ========================================================================== */
.conversion-footer-dark {
  background: #070314;
  color: #ffffff;
  padding: 4.5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.conversion-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.conversion-cta-box h3 {
  font-size: 1.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.conversion-cta-box h3 span {
  background: linear-gradient(135deg, #c084fc, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.conversion-cta-box p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #cbd5e1;
  font-size: 0.88rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: #38bdf8;
  flex-shrink: 0;
}

.whatsapp-direct-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: 18px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.whatsapp-direct-box:hover {
  transform: translateY(-4px);
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.25);
}

.whatsapp-direct-icon {
  width: 48px;
  height: 48px;
  background: #22c55e;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.4);
}

.whatsapp-direct-icon svg {
  width: 26px;
  height: 26px;
}

.whatsapp-direct-text h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

.whatsapp-direct-text span {
  font-size: 0.82rem;
  color: #4ade80;
  font-weight: 600;
}

[data-theme="dark"] .typewriter-cursor {
  background: var(--brand-cyan);
}

@keyframes typewriterBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ==========================================================================
   AJUSTES DARK MODE GERAIS
   ========================================================================== */
[data-theme="dark"] body::before {
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(37, 99, 235, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 85% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(13, 148, 136, 0.08) 0%, transparent 50%),
    linear-gradient(rgba(51, 65, 85, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 65, 85, 0.22) 1px, transparent 1px);
}

[data-theme="dark"] .header {
  background-color: rgba(9, 13, 22, 0.88);
  border-bottom: 1px solid rgba(51, 65, 85, 0.5);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .btn-secondary {
  background: #1e293b;
  color: #f8fafc;
  border-color: #334155;
}

[data-theme="dark"] .btn-secondary:hover {
  background: #334155;
  border-color: #64748b;
  color: #38bdf8;
}

[data-theme="dark"] .service-card,
[data-theme="dark"] .retro-card,
[data-theme="dark"] .cloud-compare-card,
[data-theme="dark"] .hero-card-main,
[data-theme="dark"] .maint-step-card,
[data-theme="dark"] .modal-box,
[data-theme="dark"] .portfolio-card,
[data-theme="dark"] .compare-interactive-box,
[data-theme="dark"] .savings-calculator-card,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .trust-badge-card {
  background: var(--bg-card);
  border-color: var(--border-light);
  box-shadow: var(--shadow-md);
}

[data-theme="dark"] .service-card:hover,
[data-theme="dark"] .retro-card:hover,
[data-theme="dark"] .portfolio-card:hover,
[data-theme="dark"] .maint-step-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
}

[data-theme="dark"] .quick-pillar-item {
  background: rgba(30, 41, 59, 0.6);
  border-color: rgba(51, 65, 85, 0.5);
}

[data-theme="dark"] .quick-pillar-item:hover {
  background: rgba(30, 41, 59, 0.95);
  border-color: var(--border-glow);
}

[data-theme="dark"] .form-control {
  background: #1e293b;
  color: #f8fafc;
  border-color: #334155;
}

[data-theme="dark"] .form-control:focus {
  background: #0f172a;
  border-color: #38bdf8;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
}

[data-theme="dark"] .upcoming-banner {
  background: linear-gradient(135deg, rgba(30, 27, 75, 0.8) 0%, rgba(88, 28, 135, 0.65) 100%);
  border-color: rgba(139, 92, 246, 0.4);
}

[data-theme="dark"] .compare-table td {
  border-bottom-color: rgba(51, 65, 85, 0.4);
}

[data-theme="dark"] .compare-table th {
  background: rgba(30, 41, 59, 0.7);
  color: #f8fafc;
}

[data-theme="dark"] .retro-specs-box {
  background: rgba(30, 41, 59, 0.6);
  border-color: rgba(51, 65, 85, 0.6);
}

[data-theme="dark"] .retro-spec-row {
  border-bottom-color: rgba(51, 65, 85, 0.4);
}

[data-theme="dark"] .cloud-benefit-item {
  background: rgba(30, 41, 59, 0.5);
  border-color: rgba(51, 65, 85, 0.5);
}

[data-theme="dark"] .service-option-card {
  background: rgba(30, 41, 59, 0.7);
  border-color: rgba(51, 65, 85, 0.7);
}

[data-theme="dark"] .service-option-card:hover {
  border-color: var(--brand-cyan);
}

[data-theme="dark"] .service-option-card.selected {
  background: rgba(14, 116, 144, 0.25);
  border-color: #06b6d4;
  box-shadow: 0 0 16px rgba(6, 182, 212, 0.25);
}

[data-theme="dark"] .calc-card-item {
  background: rgba(30, 41, 59, 0.6);
  border-color: rgba(51, 65, 85, 0.6);
}

[data-theme="dark"] .calc-card-item.selected {
  background: rgba(37, 99, 235, 0.2);
  border-color: #38bdf8;
}

[data-theme="dark"] .calc-addon-item {
  background: rgba(30, 41, 59, 0.5);
  border-color: rgba(51, 65, 85, 0.5);
}

[data-theme="dark"] .calc-addon-item.selected {
  background: rgba(16, 185, 129, 0.15);
  border-color: #10b981;
}

[data-theme="dark"] .calc-summary-box {
  background: linear-gradient(135deg, #0f172a 0%, #020617 100%);
  border: 1px solid #334155;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

