/* ===== CSS Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Colors - Light Theme */
  --background: #fafafa;
  --foreground: #1a1a1a;
  --card: #f5f5f5;
  --card-foreground: #1a1a1a;
  --primary: #1e40af;
  --primary-foreground: #fafafa;
  --secondary: #f0f0f0;
  --secondary-foreground: #1a1a1a;
  --muted: #737373;
  --muted-foreground: #525252;
  --accent: #2563eb;
  --accent-foreground: #fafafa;
  --border: #e5e5e5;
  --input: #f0f0f0;
  --ring: #2563eb;
  --success: #22c55e;
  --error: #ef4444;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.625rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ===== Utility Classes ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

@media (min-width: 640px) {
  .container {
    padding: 0 var(--space-6);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-8);
  }
}

.hidden {
  display: none !important;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.text-lg {
  font-size: var(--text-lg);
}

.text-center {
  text-align: center;
}

/* ===== Gradient Text ===== */
.gradient-text {
  background: linear-gradient(to right, #2563eb, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Glass Effect ===== */
.glass {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(59, 130, 246, 0.1);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.05);
}

/* ===== Animated Background ===== */
.animated-background {
  position: fixed;
  inset: 0;
  z-index: -10;
  overflow: hidden;
  pointer-events: none;
}

.animated-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(-45deg, #3b82f6, #1e40af, #60a5fa, #1e3a8a);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  opacity: 0.6;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: blob 8s infinite;
}

.blob-1 {
  top: 5rem;
  left: -8rem;
  width: 24rem;
  height: 24rem;
  background: linear-gradient(to bottom right, #93c5fd, #3b82f6);
  opacity: 0.2;
}

.blob-2 {
  top: 50%;
  right: 0;
  width: 20rem;
  height: 20rem;
  background: linear-gradient(to bottom right, #60a5fa, #2563eb);
  opacity: 0.15;
  animation-delay: 2s;
}

.blob-3 {
  bottom: 0;
  left: 33%;
  width: 24rem;
  height: 24rem;
  background: linear-gradient(to bottom right, #bfdbfe, #60a5fa);
  opacity: 0.1;
  animation-delay: 4s;
}

.tech-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      0deg,
      transparent 24%,
      rgba(59, 130, 246, 0.05) 25%,
      rgba(59, 130, 246, 0.05) 26%,
      transparent 27%,
      transparent 74%,
      rgba(59, 130, 246, 0.05) 75%,
      rgba(59, 130, 246, 0.05) 76%,
      transparent 77%,
      transparent
    ),
    linear-gradient(
      90deg,
      transparent 24%,
      rgba(59, 130, 246, 0.05) 25%,
      rgba(59, 130, 246, 0.05) 26%,
      transparent 27%,
      transparent 74%,
      rgba(59, 130, 246, 0.05) 75%,
      rgba(59, 130, 246, 0.05) 76%,
      transparent 77%,
      transparent
    );
  background-size: 50px 50px;
  opacity: 0.3;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: pulseGlow 4s ease-in-out infinite;
}

.particle-1 {
  top: 25%;
  left: 25%;
  width: 0.5rem;
  height: 0.5rem;
  background: #3b82f6;
  opacity: 0.4;
}

.particle-2 {
  top: 33%;
  right: 25%;
  width: 0.375rem;
  height: 0.375rem;
  background: #60a5fa;
  opacity: 0.3;
  animation-delay: 1s;
}

.particle-3 {
  bottom: 33%;
  left: 50%;
  width: 0.5rem;
  height: 0.5rem;
  background: #2563eb;
  opacity: 0.35;
  animation-delay: 2s;
}

.particle-4 {
  bottom: 25%;
  right: 33%;
  width: 0.375rem;
  height: 0.375rem;
  background: #3b82f6;
  opacity: 0.4;
  animation-delay: 0.5s;
}

.noise-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ===== Animations ===== */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes blob {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2), 0 0 30px rgba(59, 130, 246, 0.1);
  }
  50% {
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.4), 0 0 50px rgba(59, 130, 246, 0.2);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.animate-glow {
  animation: glow 3s ease-in-out infinite;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* ===== NAVBAR COM CIRCUITOS TECNOLÓGICOS ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.97), rgba(30, 41, 59, 0.97));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(59, 130, 246, 0.3);
  z-index: 50;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 40px rgba(59, 130, 246, 0.1);
  overflow: hidden;
}

/* Container de animações do header */
.circuit-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Grid tecnológico animado */
.circuit-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(59, 130, 246, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(59, 130, 246, 0.06) 1px, transparent 1px);
  background-size: 25px 25px;
  animation: gridSlide 20s linear infinite;
}

@keyframes gridSlide {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 50px;
  }
}

/* Linhas de circuito horizontais */
.circuit-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59, 130, 246, 0.6),
    rgba(96, 165, 250, 0.8),
    rgba(59, 130, 246, 0.6),
    transparent
  );
  border-radius: 2px;
}

.circuit-line-1 {
  top: 15%;
  width: 150px;
  animation: circuitFlow 6s linear infinite;
}

.circuit-line-2 {
  top: 40%;
  width: 200px;
  animation: circuitFlow 8s linear infinite;
  animation-delay: 1s;
}

.circuit-line-3 {
  top: 65%;
  width: 120px;
  animation: circuitFlow 7s linear infinite;
  animation-delay: 2s;
}

.circuit-line-4 {
  top: 85%;
  width: 180px;
  animation: circuitFlow 9s linear infinite;
  animation-delay: 0.5s;
}

.circuit-line-5 {
  top: 30%;
  width: 100px;
  animation: circuitFlowReverse 7s linear infinite;
}

.circuit-line-6 {
  top: 55%;
  width: 160px;
  animation: circuitFlowReverse 8s linear infinite;
  animation-delay: 1.5s;
}

.circuit-line-7 {
  top: 75%;
  width: 130px;
  animation: circuitFlowReverse 6s linear infinite;
  animation-delay: 3s;
}

@keyframes circuitFlow {
  0% {
    left: -200px;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes circuitFlowReverse {
  0% {
    right: -200px;
    left: auto;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    right: 100%;
    left: auto;
    opacity: 0;
  }
}

/* Nós de circuito (pontos de conexão) */
.circuit-node {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #3b82f6;
  border-radius: 50%;
  box-shadow: 0 0 10px #3b82f6, 0 0 20px rgba(59, 130, 246, 0.5);
}

.circuit-node-1 {
  top: 20%;
  left: 15%;
  animation: nodeBlink 2s ease-in-out infinite;
}
.circuit-node-2 {
  top: 50%;
  left: 30%;
  animation: nodeBlink 2s ease-in-out infinite 0.3s;
}
.circuit-node-3 {
  top: 70%;
  left: 50%;
  animation: nodeBlink 2s ease-in-out infinite 0.6s;
}
.circuit-node-4 {
  top: 35%;
  left: 70%;
  animation: nodeBlink 2s ease-in-out infinite 0.9s;
}
.circuit-node-5 {
  top: 60%;
  left: 85%;
  animation: nodeBlink 2s ease-in-out infinite 1.2s;
}
.circuit-node-6 {
  top: 25%;
  left: 45%;
  animation: nodeBlink 2s ease-in-out infinite 1.5s;
}
.circuit-node-7 {
  top: 80%;
  left: 25%;
  animation: nodeBlink 2s ease-in-out infinite 0.4s;
}
.circuit-node-8 {
  top: 45%;
  left: 60%;
  animation: nodeBlink 2s ease-in-out infinite 0.8s;
}

@keyframes nodeBlink {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
    box-shadow: 0 0 6px #3b82f6, 0 0 12px rgba(59, 130, 246, 0.4);
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
    box-shadow: 0 0 15px #3b82f6, 0 0 30px rgba(59, 130, 246, 0.8);
  }
}

/* Partículas de dados fluindo */
.data-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #60a5fa;
  border-radius: 50%;
  box-shadow: 0 0 8px #60a5fa, 0 0 15px rgba(96, 165, 250, 0.6);
}

.data-particle-1 {
  top: 25%;
  animation: dataStream 5s linear infinite;
}
.data-particle-2 {
  top: 45%;
  animation: dataStream 6s linear infinite 0.8s;
}
.data-particle-3 {
  top: 65%;
  animation: dataStream 5.5s linear infinite 1.6s;
}
.data-particle-4 {
  top: 35%;
  animation: dataStreamReverse 6s linear infinite;
}
.data-particle-5 {
  top: 55%;
  animation: dataStreamReverse 5s linear infinite 1s;
}
.data-particle-6 {
  top: 75%;
  animation: dataStreamReverse 7s linear infinite 2s;
}

@keyframes dataStream {
  0% {
    left: -10px;
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    left: calc(100% + 10px);
    opacity: 0;
  }
}

@keyframes dataStreamReverse {
  0% {
    right: -10px;
    left: auto;
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    right: calc(100% + 10px);
    left: auto;
    opacity: 0;
  }
}

/* Pulsos de energia */
.energy-pulse {
  position: absolute;
  height: 1px;
  width: 80px;
  background: linear-gradient(90deg, transparent, #3b82f6, #60a5fa, #93c5fd, #60a5fa, #3b82f6, transparent);
}

.energy-pulse-1 {
  top: 20%;
  animation: energyWave 3s ease-in-out infinite;
}
.energy-pulse-2 {
  top: 50%;
  animation: energyWave 3.5s ease-in-out infinite 1s;
}
.energy-pulse-3 {
  top: 80%;
  animation: energyWave 4s ease-in-out infinite 2s;
}

@keyframes energyWave {
  0% {
    left: -100px;
    opacity: 0;
    transform: scaleX(0.5);
  }
  20% {
    opacity: 1;
    transform: scaleX(1);
  }
  80% {
    opacity: 1;
    transform: scaleX(1);
  }
  100% {
    left: 100%;
    opacity: 0;
    transform: scaleX(0.5);
  }
}

/* Linhas verticais de conexão */
.vertical-line {
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(59, 130, 246, 0.3) 50%, transparent 100%);
}

.vertical-line-1 {
  left: 10%;
  animation: verticalPulse 4s ease-in-out infinite;
}
.vertical-line-2 {
  left: 25%;
  animation: verticalPulse 4s ease-in-out infinite 0.5s;
}
.vertical-line-3 {
  left: 40%;
  animation: verticalPulse 4s ease-in-out infinite 1s;
}
.vertical-line-4 {
  left: 55%;
  animation: verticalPulse 4s ease-in-out infinite 1.5s;
}
.vertical-line-5 {
  left: 70%;
  animation: verticalPulse 4s ease-in-out infinite 2s;
}
.vertical-line-6 {
  left: 85%;
  animation: verticalPulse 4s ease-in-out infinite 2.5s;
}

@keyframes verticalPulse {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.6;
  }
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
  position: relative;
  z-index: 10;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  transition: opacity var(--transition-fast);
}

.navbar-brand:hover {
  opacity: 0.8;
}

.navbar-logo {
  height: 3rem;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.5));
}

.navbar-menu {
  display: none;
  align-items: center;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .navbar-menu {
    display: flex;
  }
}

.nav-link {
  color: #e2e8f0;
  font-weight: 500;
  transition: all var(--transition-fast);
  text-shadow: 0 0 10px rgba(59, 130, 246, 0);
}

.nav-link:hover {
  color: #60a5fa;
  text-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
}

.navbar-toggle {
  display: block;
  color: #e2e8f0;
  padding: var(--space-2);
}

@media (min-width: 768px) {
  .navbar-toggle {
    display: none;
  }
}

.icon-menu {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  padding: var(--space-4);
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  margin: var(--space-2) var(--space-4) var(--space-4);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.mobile-nav-link {
  display: block;
  padding: var(--space-2) var(--space-4);
  color: #e2e8f0;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.mobile-nav-link:hover {
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.1);
}

.btn-mobile {
  background: linear-gradient(to right, #2563eb, #3b82f6);
  color: white !important;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-6);
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
}

.btn-primary {
  background: linear-gradient(to right, #2563eb, #3b82f6);
  color: white;
}

.btn-primary:hover {
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid #2563eb;
  color: #2563eb;
}

.btn-outline:hover {
  background: rgba(59, 130, 246, 0.05);
}

.btn-rounded {
  border-radius: var(--radius-full);
}

.btn-full {
  width: 100%;
}

/* ===== Sections ===== */
.section {
  padding: var(--space-20) 0;
}

.section-alt {
  background: rgba(59, 130, 246, 0.02);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.section-title {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: var(--space-4);
}

@media (min-width: 640px) {
  .section-title {
    font-size: var(--text-5xl);
  }
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--muted);
  max-width: 42rem;
  margin: 0 auto;
}

/* ===== Hero Section ===== */
.hero-section {
  padding-top: 8rem;
  padding-bottom: var(--space-20);
  position: relative;
  overflow: hidden;
}

.hero-decoration-1 {
  position: absolute;
  top: 5rem;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: linear-gradient(to bottom right, #93c5fd, #60a5fa);
  opacity: 0.15;
  border-radius: 50%;
  filter: blur(60px);
  animation: float 6s ease-in-out infinite;
}

.hero-decoration-2 {
  position: absolute;
  bottom: -8rem;
  left: 0;
  width: 24rem;
  height: 24rem;
  background: linear-gradient(to bottom right, #bfdbfe, #93c5fd);
  opacity: 0.1;
  border-radius: 50%;
  filter: blur(60px);
}

/* Imagem de fundo no hero para mobile com gradiente */
@media (max-width: 767px) {
  .hero-section {
    position: relative;
    background-image: url("../images/modern-developer-workspace.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  /* Gradiente escuro por cima da imagem para o texto ficar legível */
  .hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      to bottom,
      rgba(15, 23, 42, 0.85) 0%,
      rgba(30, 41, 59, 0.9) 50%,
      rgba(15, 23, 42, 0.95) 100%
    );
    z-index: 1;
  }

  /* Garante que o conteúdo fique acima do gradiente */
  .hero-section .container {
    position: relative;
    z-index: 2;
  }

  /* Ajusta cores do texto para ficar visível no fundo escuro */
  .hero-title {
    color: #ffffff;
  }

  .hero-subtitle {
    color: #cbd5e1;
  }

  .feature-text {
    color: #e2e8f0;
  }

  .stat-number {
    color: #60a5fa;
  }

  .stat-label {
    color: #94a3b8;
  }

  .hero-stats {
    border-top-color: rgba(148, 163, 184, 0.3);
  }

  /* Esconde as decorações no mobile já que temos a imagem de fundo */
  .hero-decoration-1,
  .hero-decoration-2 {
    display: none;
  }
}

.hero-grid {
  display: grid;
  gap: var(--space-12);
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.hero-title {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: #111827;
  line-height: 1.1;
  margin-bottom: var(--space-6);
}

@media (min-width: 640px) {
  .hero-title {
    font-size: var(--text-5xl);
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: var(--text-6xl);
  }
}

.hero-subtitle {
  font-size: var(--text-xl);
  color: #4b5563;
  line-height: 1.6;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(to bottom right, #dbeafe, #eff6ff);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bfdbfe;
}

.feature-icon .icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #2563eb;
}

.feature-text {
  color: #1f2937;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding-top: var(--space-4);
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-buttons .btn {
  padding: var(--space-3) var(--space-8);
}

.hero-stats {
  display: flex;
  gap: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid #dbeafe;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: #2563eb;
}

.stat-label {
  color: #4b5563;
  font-size: var(--text-sm);
}

.hero-image-wrapper {
  display: none;
  position: relative;
}

@media (min-width: 768px) {
  .hero-image-wrapper {
    display: block;
  }
}

.hero-image-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(147, 197, 253, 0.3), transparent);
  border-radius: var(--radius-2xl);
  filter: blur(40px);
}

.hero-image-container {
  position: relative;
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
}

.hero-image {
  width: 100%;
  border-radius: var(--radius-lg);
}

/* ===== Cards ===== */
.card {
  border-radius: var(--radius-xl);
  transition: all var(--transition-normal);
}

.card:hover {
  border-color: rgba(59, 130, 246, 0.3);
}

.card-content {
  padding: var(--space-6);
}

.card-content + .card-content {
  padding-top: 0;
}

.card-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: var(--space-3);
}

.card-text {
  color: var(--muted);
  line-height: 1.6;
}

/* ===== About Section ===== */
.about-grid {
  display: grid;
  gap: var(--space-12);
  margin-bottom: var(--space-20);
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  color: var(--muted);
}

.check-icon {
  color: #2563eb;
  font-weight: 700;
}

.profile-card {
  overflow: hidden;
}

.profile-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Skills Section */
.skills-section {
  margin-bottom: var(--space-20);
}

.skills-title,
.experience-title {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--foreground);
  text-align: center;
  margin-bottom: var(--space-10);
}

.skills-grid {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .skills-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.skill-card {
  padding: var(--space-8);
}

.skill-category {
  font-size: var(--text-xl);
  font-weight: 700;
  color: #2563eb;
  margin-bottom: var(--space-6);
}

.skill-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.skill-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--muted);
}

.skill-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #2563eb;
  border-radius: 50%;
}

/* Experience Section */
.experience-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.experience-card {
  padding: var(--space-8);
  border-left: 4px solid #2563eb;
}

.experience-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

@media (min-width: 768px) {
  .experience-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.experience-job-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--foreground);
}

.experience-company {
  color: #2563eb;
  font-weight: 600;
}

.experience-year {
  color: var(--muted);
  font-weight: 600;
}

.experience-description {
  color: var(--muted);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  gap: var(--space-6);
  margin-top: var(--space-20);
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  padding: var(--space-6);
  text-align: center;
}

.stat-value {
  font-size: var(--text-3xl);
  font-weight: 700;
}

/* ===== Services Section ===== */
.services-grid {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  padding: var(--space-8);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.875rem;
  margin-bottom: var(--space-4);
  transition: transform var(--transition-normal);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon-cyan-blue {
  background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.2), rgba(59, 130, 246, 0.2));
}

.service-icon-emerald-cyan {
  background: linear-gradient(to bottom right, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.2));
}

.service-icon-purple-pink {
  background: linear-gradient(to bottom right, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
}

.service-icon-orange-red {
  background: linear-gradient(to bottom right, rgba(249, 115, 22, 0.2), rgba(239, 68, 68, 0.2));
}

.service-icon-blue-cyan {
  background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.2));
}

.service-icon-yellow-orange {
  background: linear-gradient(to bottom right, rgba(234, 179, 8, 0.2), rgba(249, 115, 22, 0.2));
}

.service-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: var(--space-3);
}

.service-description {
  color: var(--muted);
  line-height: 1.6;
}

/* ===== Projects Section ===== */
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}

.filter-btn {
  padding: var(--space-2) var(--space-6);
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: all var(--transition-normal);
  border: 2px solid var(--border);
  color: var(--muted);
}

.filter-btn:hover {
  border-color: #2563eb;
}

.filter-btn.active {
  background: #2563eb;
  color: white;
  border-color: #2563eb;
}

.projects-grid {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.project-card {
  overflow: hidden;
  cursor: pointer;
  animation: fadeInUp 0.6s ease-out both;
}

.project-image-wrapper {
  position: relative;
  height: 12rem;
  overflow: hidden;
  background: var(--secondary);
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.project-card:hover .project-image {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--primary), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-content {
  padding: var(--space-6);
}

.project-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: var(--space-2);
}

.project-description {
  color: var(--muted);
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-technologies {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.tech-tag {
  padding: var(--space-1) var(--space-3);
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  font-size: var(--text-xs);
  border-radius: var(--radius-full);
  font-weight: 600;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  color: #2563eb;
  font-weight: 600;
  transition: gap var(--transition-fast);
}

.project-link:hover {
  gap: var(--space-2);
}

.icon-arrow {
  width: 1rem;
  height: 1rem;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
  margin-bottom: var(--space-20);
}

.testimonials-grid {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  padding: var(--space-8);
}

.stars {
  display: flex;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
}

.star-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #2563eb;
}

.testimonial-text {
  color: var(--muted);
  margin-bottom: var(--space-6);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 700;
  color: var(--foreground);
}

.testimonial-company {
  font-size: var(--text-sm);
  color: var(--muted);
}

/* Clients Section */
.clients-section {
  border-top: 1px solid var(--border);
  padding-top: var(--space-20);
}

.clients-title {
  text-align: center;
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: var(--space-12);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .clients-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.client-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  opacity: 0.6;
  transition: opacity var(--transition-normal);
}

.client-card:hover {
  opacity: 1;
}

.client-logo {
  max-width: 100%;
  height: 2rem;
  object-fit: contain;
}

/* ===== Blog Section ===== */
.blog-grid {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  overflow: hidden;
  cursor: pointer;
}

.blog-image-wrapper {
  position: relative;
  height: 12rem;
  overflow: hidden;
  background: var(--secondary);
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.blog-card:hover .blog-image {
  transform: scale(1.1);
}

.blog-content {
  padding: var(--space-6);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.blog-category {
  padding: var(--space-1) var(--space-3);
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  font-size: var(--text-xs);
  border-radius: var(--radius-full);
  font-weight: 600;
}

.blog-read-time {
  font-size: var(--text-xs);
  color: var(--muted);
}

.blog-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: var(--space-2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition-fast);
}

.blog-card:hover .blog-title {
  color: #2563eb;
}

.blog-excerpt {
  color: var(--muted);
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-date {
  font-size: var(--text-xs);
  color: var(--muted);
}

.blog-link {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  color: #2563eb;
  font-size: var(--text-sm);
  font-weight: 600;
  transition: gap var(--transition-fast);
}

.blog-link:hover {
  gap: var(--space-2);
}

/* ===== Contact Section ===== */
.contact-grid {
  display: grid;
  gap: var(--space-12);
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.contact-item {
  display: flex;
  gap: var(--space-4);
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(37, 99, 235, 0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon .icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #2563eb;
}

.contact-label {
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: var(--space-1);
}

.contact-value {
  color: var(--muted);
  transition: color var(--transition-fast);
}

a.contact-value:hover {
  color: #2563eb;
}

.social-section {
  padding-top: var(--space-8);
}

.social-title {
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: var(--space-4);
}

.social-links {
  display: flex;
  gap: var(--space-4);
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(37, 99, 235, 0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.social-link:hover {
  background: rgba(37, 99, 235, 0.4);
}

.social-link .icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #2563eb;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: var(--space-2);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--foreground);
  font-family: inherit;
  font-size: var(--text-base);
  transition: border-color var(--transition-fast);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #2563eb;
}

.form-textarea {
  resize: none;
}

/* Alerts */
.alert {
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-4);
}

.alert-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid var(--success);
  color: var(--success);
}

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid var(--error);
  color: var(--error);
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: var(--space-12) 0;
}

.footer-grid {
  display: grid;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.footer-description {
  color: var(--muted);
  font-size: var(--text-sm);
}

.footer-title {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: var(--space-4);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-links a {
  color: var(--muted);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: #2563eb;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding-top: var(--space-8);
  border-top: 1px solid var(--border);
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  color: var(--muted);
  font-size: var(--text-sm);
}

.footer-social {
  display: flex;
  gap: var(--space-4);
}

.footer-social a {
  color: var(--muted);
  transition: color var(--transition-fast);
}

.footer-social a:hover {
  color: #2563eb;
}

.footer-social .icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* ===== Icons ===== */
.icon {
  width: 1.5rem;
  height: 1.5rem;
}

/* ===== CIRCUIT BOX - Caixas de Texto com Circuitos ===== */
.circuit-box {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-6);
  overflow: hidden;
}

.circuit-box .circuit-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.circuit-box .circuit-line {
  position: absolute;
  height: 1px;
  background: rgba(59, 130, 246, 0.2);
}

.circuit-box .circuit-line-1 {
  top: 25%;
  left: 0;
  right: 0;
}

.circuit-box .circuit-line-2 {
  top: 50%;
  left: 0;
  right: 0;
}

.circuit-box .circuit-line-3 {
  top: 75%;
  left: 0;
  right: 0;
}

.circuit-box .circuit-energy {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #3b82f6, #60a5fa, #93c5fd, #60a5fa, #3b82f6, transparent);
  border-radius: 2px;
  box-shadow: 0 0 10px #3b82f6, 0 0 20px rgba(59, 130, 246, 0.5);
  animation: circuitEnergyFlow 3s linear infinite;
}

@keyframes circuitEnergyFlow {
  0% {
    left: -60px;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

.circuit-box .circuit-node {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #3b82f6;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 8px #3b82f6, 0 0 16px rgba(59, 130, 246, 0.6);
  animation: circuitNodePulse 2s ease-in-out infinite;
}

.circuit-box .circuit-node-left {
  left: 8px;
}

.circuit-box .circuit-node-right {
  right: 8px;
  animation-delay: 1s;
}

@keyframes circuitNodePulse {
  0%,
  100% {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 0 8px #3b82f6, 0 0 16px rgba(59, 130, 246, 0.6);
  }
  50% {
    transform: translateY(-50%) scale(1.3);
    box-shadow: 0 0 15px #3b82f6, 0 0 30px rgba(59, 130, 246, 0.8);
  }
}

.circuit-box .feature-icon {
  background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.3), rgba(96, 165, 250, 0.2));
  border: 1px solid rgba(96, 165, 250, 0.4);
  position: relative;
  z-index: 2;
}

.circuit-box .feature-icon .icon {
  color: #60a5fa;
}

.circuit-box .feature-text {
  color: #e2e8f0;
  position: relative;
  z-index: 2;
}

/* ===== BTN CIRCUIT GLOW - Botão Agendar Consultoria ===== */
.btn-circuit-glow {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 2px solid rgba(59, 130, 246, 0.5);
  color: #e2e8f0 !important;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
  animation: btnGlowPulse 2s ease-in-out infinite;
}

.btn-circuit-glow::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59, 130, 246, 0.4),
    rgba(96, 165, 250, 0.6),
    rgba(59, 130, 246, 0.4),
    transparent
  );
  animation: btnEnergyFlow 2.5s linear infinite;
}

.btn-circuit-glow:hover {
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.5), 0 0 40px rgba(59, 130, 246, 0.3);
  transform: translateY(-2px);
}

@keyframes btnGlowPulse {
  0%,
  100% {
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3), 0 0 30px rgba(59, 130, 246, 0.1);
  }
  50% {
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.5), 0 0 50px rgba(59, 130, 246, 0.2);
  }
}

@keyframes btnEnergyFlow {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 0 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5), 0 0 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  color: white;
  z-index: 3;
}

/* Efeito de pulse/brilho */
.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: whatsappPulse 2s ease-out infinite;
  z-index: 1;
}

.whatsapp-pulse-2 {
  animation-delay: 1s;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* Brilho interno do botão */
.whatsapp-float::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  z-index: 2;
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
  z-index: 2;
}

/* Responsivo - ajusta posição no mobile */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }
}

/* Responsive para circuit-box em mobile - esconde circuitos das 3 caixas mas mantém no botão */
@media (max-width: 640px) {
  .circuit-box {
    padding: var(--space-3) var(--space-4);
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%);
    border: 1px solid rgba(96, 165, 250, 0.4);
  }

  /* Esconde os circuitos das 3 caixas no mobile */
  .circuit-box .circuit-lines,
  .circuit-box .circuit-energy,
  .circuit-box .circuit-node {
    display: none !important;
  }

  /* Mantém o botão Agendar Consultoria com efeito */
  .btn-circuit-glow::before {
    animation: btnEnergyFlow 2.5s linear infinite;
  }

  .btn-circuit-glow {
    animation: btnGlowPulse 2s ease-in-out infinite;
  }
}
