/* ============================================
   RESET E BASE - DESIGN FUTURISTA
   ============================================ */
:root {
  --color-primary: #6366f1;
  --color-primary-dark: #4f46e5;
  --color-primary-light: #818cf8;
  --color-secondary: #1e293b;
  --color-secondary-dark: #0f172a;
  --color-secondary-light: #334155;
  --color-accent: #06b6d4;
  --color-accent-2: #8b5cf6;
  --color-text: #ffffff;
  --color-text-muted: #94a3b8;
  --color-background: #0a0e27;
  --color-background-2: #1a1f3a;
  --color-border: rgba(99, 102, 241, 0.3);
  --color-success: #10b981;
  --color-error: #ef4444;
  --color-warning: #f59e0b;
  --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --border-radius: 1rem;
  --border-radius-lg: 1.5rem;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 20px 60px -10px rgba(99, 102, 241, 0.3);
  --shadow-hover: 0 30px 80px -15px rgba(99, 102, 241, 0.5);
  --glow: 0 0 20px rgba(99, 102, 241, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background: var(--color-background);
  background-image: 
    radial-gradient(at 20% 30%, rgba(99, 102, 241, 0.15) 0px, transparent 50%),
    radial-gradient(at 80% 70%, rgba(6, 182, 212, 0.15) 0px, transparent 50%),
    radial-gradient(at 40% 80%, rgba(139, 92, 246, 0.1) 0px, transparent 50%);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}


body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  /* Removido animation para melhor performance */
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ============================================
   LAYOUT E CONTAINERS
   ============================================ */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* Partículas de Fundo */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ============================================
   BUTTONS FUTURISTAS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: white;
  box-shadow: var(--shadow);
  z-index: 1;
  transform: translateZ(0); /* GPU acceleration */
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--border-radius);
  padding: 2px;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent), var(--color-accent-2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  box-shadow: var(--shadow), var(--glow);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02) translateZ(0);
  box-shadow: var(--shadow-hover), 0 0 30px rgba(99, 102, 241, 0.6);
}

.btn-outline {
  background: rgba(99, 102, 241, 0.15);
  /* Removido backdrop-filter para melhor performance */
  border: 2px solid var(--color-border);
  color: white;
  box-shadow: none;
}

.btn-outline:hover {
  border-color: var(--color-primary);
  background: rgba(99, 102, 241, 0.2);
  transform: translateY(-3px) translateZ(0);
  box-shadow: var(--glow);
}

.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.btn-xl {
  padding: 1.5rem 3rem;
  font-size: 1.25rem;
}

.btn i {
  margin-left: 0.75rem;
  transition: var(--transition);
}

.btn:hover i {
  transform: translateX(6px) translateZ(0);
}

/* ============================================
   BADGE FUTURISTA
   ============================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background: rgba(99, 102, 241, 0.2);
  /* Removido backdrop-filter para melhor performance */
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: var(--color-primary-light);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

/* Removido badge::before animation para melhor performance */

.badge-dot {
  position: relative;
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  z-index: 1;
}

.badge-dot::before {
  content: "";
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  animation: pulse 2s infinite;
  box-shadow: 0 0 10px var(--color-primary);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(0.95);
    opacity: 1;
    box-shadow: 0 0 10px var(--color-primary);
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
    box-shadow: 0 0 20px var(--color-primary), 0 0 30px var(--color-primary);
  }
}

/* ============================================
   HEADER FUTURISTA
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(99, 102, 241, 0.2);
  transition: background 0.3s ease;
  transform: translateZ(0);
}

.header-scrolled {
  background: rgba(10, 14, 39, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-bottom-color: rgba(99, 102, 241, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  width: 100%;
}

.logo {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.logo img {
  height: 35px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.4));
  transition: filter 0.3s ease, transform 0.3s ease;
}

.logo:hover img {
  filter: drop-shadow(0 0 15px rgba(99, 102, 241, 0.6));
  transform: scale(1.05);
}

.main-nav {
  display: none;
  flex: 1;
  justify-content: center;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  position: relative;
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.3s ease;
  padding: 0.4rem 0;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transition: width 0.3s ease;
  box-shadow: 0 0 8px var(--color-primary);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-text);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.contact-btn {
  flex-shrink: 0;
  display: none;
  padding: 0.6rem 1.1rem;
  font-size: 0.875rem;
  white-space: nowrap;
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-shrink: 0;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 2px;
  transition: var(--transition);
  box-shadow: 0 0 5px rgba(99, 102, 241, 0.5);
}

/* ============================================
   MENU MOBILE FUTURISTA
   ============================================ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 14, 39, 0.98);
  backdrop-filter: blur(20px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(.4,2,.6,1), visibility 0.4s;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(40px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(.4,2,.6,1), opacity 0.5s;
}

.mobile-menu.active .container {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  width: 100%;
  padding: 0;
  margin: 0;
}

.mobile-nav-link {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  transition: var(--transition);
  position: relative;
  transform: translateZ(0);
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 999px;
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.mobile-nav-link:hover::before,
.mobile-nav-link:active::before {
  opacity: 0.2;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  transform: scale(1.05) translateZ(0);
  -webkit-text-fill-color: #fff;
}

/* Exibe menu mobile apenas em telas menores que 768px */
@media (max-width: 767px) {
  .mobile-menu {
    display: block;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
    position: fixed;
    top: 22px;
    right: 22px;
    z-index: 10001;
    background: rgba(30,41,59,0.95);
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(59,130,246,0.10);
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border: none;
    transition: background 0.3s, box-shadow 0.3s;
  }
  .mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--color-primary-light);
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(.4,2,.6,1);
  }
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
  }
}

/* ============================================
   SECTIONS FUTURISTAS
   ============================================ */
.section {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

.section-alt {
  background: rgba(26, 31, 58, 0.5);
  /* Removido backdrop-filter para melhor performance */
  border-top: 1px solid rgba(99, 102, 241, 0.2);
  border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--color-text), var(--color-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* Removida animação de gradiente para melhor performance */
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.highlight {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* Removida animação de gradiente para melhor performance */
  position: relative;
}

/* ============================================
   HERO SECTION FUTURISTA
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}


.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(99, 102, 241, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
  z-index: -1;
  /* Removido animation para melhor performance */
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
}

/* Black Friday Promo Integrada */
.hero-bf-promo {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(26, 26, 46, 0.9));
  border-radius: 1rem;
  border: 2px solid rgba(255, 0, 0, 0.5);
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.hero-bf-badge {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #ff0000, #ff3333);
  color: #ffffff !important;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.5);
  animation: hero-bf-pulse 2s ease-in-out infinite;
  margin-bottom: 1rem;
}

.hero-bf-flash {
  font-size: 1.25rem;
  animation: hero-bf-flash 1s ease-in-out infinite;
}

@keyframes hero-bf-flash {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.1); }
}

@keyframes hero-bf-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 0, 0, 0.5); }
  50% { transform: scale(1.05); box-shadow: 0 6px 20px rgba(255, 0, 0, 0.7); }
}

.hero-bf-text {
  display: flex !important;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-bf-offer {
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 1.125rem !important;
  display: inline-block;
}

.hero-bf-price {
  display: flex !important;
  align-items: baseline;
  gap: 0.75rem;
}

.hero-bf-old {
  color: #94a3b8 !important;
  text-decoration: line-through;
  font-size: 1rem !important;
  font-weight: 400;
}

.hero-bf-new {
  color: #10b981 !important;
  font-size: 1.75rem !important;
  font-weight: 900 !important;
  text-shadow: 0 0 15px rgba(16, 185, 129, 0.8) !important;
}

.hero-bf-timer {
  color: #ffd700 !important;
  font-size: 0.9375rem !important;
  font-weight: 600;
  font-style: italic;
}

/* Black Friday Promo Sections */
.bf-promo-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(26, 26, 46, 0.9));
  border-radius: 1.5rem;
  border: 2px solid rgba(255, 0, 0, 0.5);
  box-shadow: 0 8px 32px rgba(255, 0, 0, 0.3), inset 0 0 40px rgba(255, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
}

.bf-promo-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.2), transparent);
  animation: shimmer 3s infinite;
}

.bf-promo-section.bf-promo-final {
  margin-bottom: 0;
  margin-top: 2rem;
}

.section-spacer {
  height: 2rem;
}

.bf-promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #ff0000, #ff3333);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.5);
  animation: hero-bf-pulse 2s ease-in-out infinite;
  z-index: 1;
}

.bf-promo-flash {
  font-size: 1.5rem;
  animation: hero-bf-flash 1s ease-in-out infinite;
}

.bf-promo-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  z-index: 1;
}

.bf-promo-offer {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
}

.bf-promo-price {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.bf-promo-old {
  color: #94a3b8;
  text-decoration: line-through;
  font-size: 1.125rem;
  font-weight: 400;
}

.bf-promo-new {
  color: #10b981;
  font-size: 2rem;
  font-weight: 900;
  text-shadow: 0 0 15px rgba(16, 185, 129, 0.8);
}

.bf-promo-timer {
  color: #ffd700;
  font-size: 1rem;
  font-weight: 600;
  font-style: italic;
}

.bf-promo-btn {
  background: linear-gradient(135deg, #ff0000, #ff3333);
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 800;
  font-size: 1.125rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(255, 0, 0, 0.5);
  z-index: 1;
}

.bf-promo-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(255, 0, 0, 0.7);
}

.hero-text h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  max-width: 750px;
  word-wrap: break-word;
}

.hero-text h1 span {
  display: inline;
  white-space: nowrap;
}

.hero-text p {
  font-size: 1.375rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  max-width: 550px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.clients-preview {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.clients-avatars {
  display: flex;
  gap: -0.5rem;
}

.client-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  border: 3px solid var(--color-background);
  margin-left: -0.75rem;
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
  transition: var(--transition);
  transform: translateZ(0);
}

.client-avatar:first-child {
  margin-left: 0;
}

.client-avatar:hover {
  transform: translateY(-5px) scale(1.1) translateZ(0);
  box-shadow: 0 0 25px rgba(99, 102, 241, 0.8);
  z-index: 10;
}

.clients-text {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  font-weight: 500;
}

.clients-text span {
  color: var(--color-primary-light);
  font-weight: 700;
  font-size: 1.125rem;
}

/* ============================================
   LOGO SHOWCASE FUTURISTA
   ============================================ */
.hero-video {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.logo-showcase {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

/* Container 3D Principal */
.logo-3d-container {
  position: relative;
  width: 500px;
  height: 500px;
  transform-style: preserve-3d;
  /* Simplificado: removida animação 3D para melhor performance */
}

/* Anéis Orbitais */
.orbital-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 2px solid;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
}

.orbital-ring-1 {
  width: 450px;
  height: 450px;
  border-color: rgba(99, 102, 241, 0.25);
  border-style: dashed;
  animation: rotateRing1 30s linear infinite;
  transform: translate(-50%, -50%) rotateX(60deg);
  /* Animação mais lenta para melhor performance */
}

.orbital-ring-2 {
  width: 400px;
  height: 400px;
  border-color: rgba(6, 182, 212, 0.25);
  border-style: dotted;
  /* Removida animação para melhor performance */
  transform: translate(-50%, -50%) rotateY(60deg);
}

.orbital-ring-3 {
  width: 420px;
  height: 420px;
  border-color: rgba(139, 92, 246, 0.2);
  border-style: solid;
  /* Removida animação para melhor performance */
  transform: translate(-50%, -50%) rotateX(-60deg);
}

@keyframes rotateRing1 {
  0% {
    transform: translate(-50%, -50%) rotateX(60deg) rotateZ(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateX(60deg) rotateZ(360deg);
  }
}

/* Partículas Flutuantes - Reduzidas para melhor performance */
.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, var(--color-primary-light), transparent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--color-primary);
  animation: floatParticle 12s ease-in-out infinite;
  opacity: 0.5;
}

.particle-1 {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.particle-2 {
  top: 30%;
  right: 15%;
  animation-delay: 2s;
  background: radial-gradient(circle, var(--color-accent), transparent);
  box-shadow: 0 0 6px var(--color-accent);
}

.particle-3 {
  bottom: 25%;
  left: 25%;
  animation-delay: 4s;
  background: radial-gradient(circle, var(--color-accent-2), transparent);
  box-shadow: 0 0 6px var(--color-accent-2);
}

/* Removidas partículas 4, 5 e 6 para melhor performance */

@keyframes floatParticle {
  0%, 100% {
    transform: translate(0, 0);
    opacity: 0.4;
  }
  50% {
    transform: translate(15px, -20px);
    opacity: 0.7;
  }
}

/* Container da Logo com Glow */
.logo-glow-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* Pulse Effect - Simplificado */
.logo-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.25), transparent 70%);
  /* Removida animação para melhor performance */
  opacity: 0.4;
}

/* Logo Principal */
.logo-main {
  position: relative;
  z-index: 2;
  /* Removida animação para melhor performance */
  filter: drop-shadow(0 0 15px rgba(99, 102, 241, 0.4));
  transition: transform 0.3s ease;
}

.logo-main:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.6));
}

.logo-main img {
  width: 260px;
  height: auto;
  display: block;
}

/* Reflexo da Logo - Simplificado */
.logo-reflection {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translateX(-50%) scaleY(-1);
  width: 260px;
  height: 80px;
  background: linear-gradient(to bottom, rgba(99, 102, 241, 0.15), transparent);
  opacity: 0.3;
  filter: blur(6px);
  z-index: 1;
  /* Removida animação para melhor performance */
}

/* Efeitos de Luz - Removidos para melhor performance */

/* Badge de Destaque */
.showcase-badge {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: rgba(26, 31, 58, 0.98);
  /* Removido backdrop-filter para melhor performance */
  border: 2px solid rgba(99, 102, 241, 0.3);
  border-radius: 20px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  /* Removida animação para melhor performance */
  z-index: 20;
}

@keyframes badgeSlideIn {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.showcase-badge .badge-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
  /* Removida animação para melhor performance */
}

.showcase-badge .badge-content {
  display: flex;
  flex-direction: column;
}

.showcase-badge .badge-number {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.showcase-badge .badge-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ============================================
   TARGET AUDIENCE - DESIGN MODERNO VERTICAL
   ============================================ */
.target-vertical-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.target-vertical-card {
  width: 100%;
}

.target-card-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.85), rgba(15, 23, 42, 0.7));
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.target-card-wrapper:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
}

.target-card-wrapper.image-right {
  grid-template-columns: 1.5fr 1fr;
}

.target-card-wrapper.image-right .target-card-image {
  order: 2;
}

.target-card-wrapper.image-right .target-card-content {
  order: 1;
}

.target-card-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.target-image-placeholder {
  width: 100%;
  max-width: 400px;
  height: 300px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(6, 182, 212, 0.1));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 2px dashed rgba(99, 102, 241, 0.3);
}

.target-image-placeholder:has(img[src]:not([src=""])) {
  border: none;
  background: transparent;
}

.target-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.target-image-fallback {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(99, 102, 241, 0.5);
}

.target-image-fallback i {
  font-size: 4rem;
}

.target-image-fallback span {
  font-size: 1rem;
  font-weight: 500;
}

.target-number-badge {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
  z-index: 10;
}

.target-card-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.target-card-content h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
  margin: 0;
}

.target-card-content p {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}

.target-additional-text {
  font-size: 1.125rem;
  color: var(--color-text);
  line-height: 1.7;
  margin: 1.5rem 0 0 0;
  padding: 1rem 0;
  border-top: 1px solid rgba(99, 102, 241, 0.2);
}

.target-quote {
  margin: 2rem 0 0 0;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.6), rgba(15, 23, 42, 0.8));
  border-left: 4px solid var(--color-primary);
  border-radius: var(--border-radius);
  position: relative;
}

.target-quote i {
  font-size: 2rem;
  color: var(--color-primary);
  opacity: 0.5;
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
}

.target-quote p {
  font-size: 1.125rem;
  color: var(--color-text);
  line-height: 1.8;
  margin: 0;
  padding-left: 3rem;
  font-style: italic;
}

/* Grid antigo mantido para compatibilidade */
.target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  position: relative;
}

.target-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.85), rgba(15, 23, 42, 0.7));
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  /* Removido backdrop-filter para melhor performance */
  cursor: pointer;
  transform: translateY(0);
}

.target-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-accent-2));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.target-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.target-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2), 0 0 30px rgba(99, 102, 241, 0.1);
  will-change: transform;
}

.target-card:hover::before {
  opacity: 1;
}

.target-card:hover::after {
  opacity: 1;
}

.target-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.target-number {
  font-size: 5rem;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(6, 182, 212, 0.2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  opacity: 0.4;
  transition: all 0.4s ease;
}

.target-card:hover .target-number {
  opacity: 0.7;
  transform: scale(1.1);
}

.target-icon-wrapper {
  position: relative;
  width: 90px;
  height: 90px;
}

.target-icon {
  width: 90px;
  height: 90px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(99, 102, 241, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.target-icon i {
  font-size: 2.25rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
}

.target-icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.3), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.target-card:hover .target-icon {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.3), 0 0 0 1px rgba(99, 102, 241, 0.2);
}

.target-card:hover .target-icon-glow {
  opacity: 1;
}

.target-card-content {
  position: relative;
  z-index: 2;
}

.target-card h3 {
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-text);
  line-height: 1.3;
  transition: color 0.4s ease;
}

.target-card:hover h3 {
  background: linear-gradient(135deg, var(--color-text), var(--color-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.target-card p {
  color: var(--color-text-muted);
  line-height: 1.8;
  font-size: 1rem;
  transition: color 0.4s ease;
}

.target-card:hover p {
  color: rgba(255, 255, 255, 0.85);
}

.target-card-footer {
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}

.target-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.target-indicator span {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 2px;
  transition: all 0.4s ease;
  opacity: 0.5;
}

.target-card:hover .target-indicator span {
  width: 60px;
  opacity: 1;
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (min-width: 768px) {
  .header-inner {
    gap: 2rem;
    padding: 0.875rem 0;
  }

  .logo img {
    height: 38px;
  }

  .main-nav {
    display: flex;
  }

  .contact-btn {
    display: inline-flex;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .nav-list {
    gap: 2.5rem;
  }

  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .hero-text h1 {
    font-size: 3.5rem;
    max-width: 700px;
    line-height: 1.25;
  }

  .hero-buttons {
    flex-direction: row;
  }

  .target-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .header-inner {
    gap: 2.5rem;
    padding: 1rem 0;
  }

  .logo img {
    height: 42px;
  }

  .nav-list {
    gap: 3rem;
  }

  .nav-link {
    font-size: 0.9rem;
  }

  .contact-btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
  }

  .hero-text h1 {
    font-size: 4rem;
    max-width: 750px;
    line-height: 1.2;
  }

  .target-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-visual-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

/* Mobile Styles */
@media (max-width: 767px) {
  .container {
    padding: 0 1rem;
  }

  .header-inner {
    padding: 0.75rem 0;
    gap: 0.75rem;
  }

  .logo img {
    height: 32px;
  }

  .hero {
    padding-top: 80px;
    min-height: auto;
    padding-bottom: 3rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-text {
    order: 1;
  }

  .hero-video {
    order: 2;
    margin-top: 2rem;
    max-width: 100%;
  }
  
  .logo-showcase {
    height: 450px;
  }
  
  .logo-3d-container {
    width: 350px;
    height: 350px;
  }
  
  .orbital-ring-1 {
    width: 320px;
    height: 320px;
  }
  
  .orbital-ring-2 {
    width: 280px;
    height: 280px;
  }
  
  .orbital-ring-3 {
    width: 300px;
    height: 300px;
  }
  
  .logo-glow-container {
    width: 200px;
    height: 200px;
  }
  
  .logo-main img {
    width: 190px;
  }
  
  .logo-reflection {
    width: 190px;
  }
  
  .light-beam {
    height: 120px;
  }
  
  .showcase-badge {
    bottom: -20px;
    right: 0;
    padding: 0.75rem 1rem;
  }
  
  .showcase-badge .badge-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .showcase-badge .badge-number {
    font-size: 1.4rem;
  }
  
  .showcase-badge .badge-label {
    font-size: 0.75rem;
  }

  .hero-bf-promo {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-bf-text {
    gap: 0.75rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-bf-new {
    font-size: 1.25rem;
  }

  .bf-promo-section {
    padding: 1.5rem;
    gap: 1rem;
    flex-direction: column;
    text-align: center;
  }

  .bf-promo-content {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }

  .bf-promo-new {
    font-size: 1.5rem;
  }

  .bf-promo-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-text h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    max-width: 100%;
  }
  
  .hero-text h1 span.highlight {
    white-space: normal;
  }

  .hero-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .btn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    text-align: center;
  }

  .btn-lg {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }

  .clients-preview {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .logo-showcase {
    height: 400px;
  }
  
  .logo-3d-container {
    width: 300px;
    height: 300px;
  }
  
  .orbital-ring-1 {
    width: 280px;
    height: 280px;
  }
  
  .orbital-ring-2 {
    width: 240px;
    height: 240px;
  }
  
  .orbital-ring-3 {
    width: 260px;
    height: 260px;
  }
  
  .logo-glow-container {
    width: 160px;
    height: 160px;
  }
  
  .logo-main img {
    width: 150px;
  }
  
  .logo-reflection {
    width: 150px;
    height: 50px;
  }
  
  .light-beam {
    height: 100px;
  }
  
  .particle {
    width: 6px;
    height: 6px;
  }
  
  .showcase-badge {
    bottom: -15px;
    padding: 0.6rem 0.8rem;
  }
  
  .showcase-badge .badge-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .showcase-badge .badge-number {
    font-size: 1.2rem;
  }
  
  .showcase-badge .badge-label {
    font-size: 0.7rem;
  }

  .target-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }

  .hero {
    padding-top: 90px;
  }

  .hero-text h1 {
    font-size: 1.8rem;
    line-height: 1.3;
    max-width: 100%;
  }
  
  .hero-text h1 span.highlight {
    white-space: normal;
  }

  .hero-text p {
    font-size: 0.9rem;
  }

  .btn {
    padding: 0.9rem 1.2rem;
    font-size: 0.9rem;
  }

  .btn-lg {
    padding: 0.9rem 1.2rem;
    font-size: 0.9rem;
  }

  /* Services Grid - Mobile Pequeno */
  .services-visual-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .service-visual-card {
    padding: 1.75rem 1.25rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .target-card {
    padding: 2rem;
  }

  .target-icon-wrapper {
    width: 65px;
    height: 65px;
  }

  .target-icon {
    width: 65px;
    height: 65px;
    border-radius: 16px;
  }

  .target-icon i {
    font-size: 1.625rem;
  }

  .target-number {
    font-size: 3rem;
  }

  .target-card h3 {
    font-size: 1.25rem;
  }

  .target-card p {
    font-size: 0.9rem;
  }

  .youtube-video-container {
    padding: 10px;
    border-radius: 12px;
  }

  .video-info-badge {
    padding: 12px;
    border-radius: 10px;
    margin-top: 12px;
  }

  .badge-content h4 {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }

  .badge-content p {
    font-size: 0.8rem;
    margin-bottom: 10px;
  }

  .video-stats {
    gap: 12px;
  }

  .video-stats span {
    font-size: 0.75rem;
  }

  .mobile-nav-link {
    font-size: 1.15rem;
    padding: 0.7rem 1.2rem;
  }
  .mobile-contact-btn {
    font-size: 1.1rem;
    padding: 1rem 0;
  }
}

@media (max-width: 360px) {
  .hero-text h1 {
    font-size: 1.6rem;
  }

  .btn {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
  }

  .btn-lg {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
  }

  .youtube-video-container {
    padding: 8px;
  }

  .video-info-badge {
    padding: 10px;
  }

  .badge-content h4 {
    font-size: 0.85rem;
  }

  .badge-content p {
    font-size: 0.75rem;
  }

  .video-stats {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .video-stats span {
    font-size: 0.7rem;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
  text-align: center;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* ============================================
   FOOTER MODERNO E FORA DA CURVA
   ============================================ */
.footer {
  position: relative;
  background: linear-gradient(135deg, #1e293b 60%, #3b82f6 100%);
  color: #fff;
  padding: 4rem 0 2rem 0;
  overflow: hidden;
  z-index: 1;
  border-bottom: none !important;
}
.footer::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
  opacity: 0.18;
  z-index: 0;
  animation: footerGlow 8s ease-in-out infinite alternate;
}
.footer::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #10b981 0%, transparent 70%);
  opacity: 0.13;
  z-index: 0;
  animation: footerGlow2 10s ease-in-out infinite alternate;
}
@keyframes footerGlow {
  0% { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.1) rotate(20deg); }
}
@keyframes footerGlow2 {
  0% { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.08) rotate(-15deg); }
}
.footer .container {
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}
.footer-logo img {
  height: 48px;
  width: auto;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 2px 8px #2563eb44);
}
.footer-info p {
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
.social-links {
  display: flex;
  gap: 1.2rem;
  margin-top: 0.5rem;
}
.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #10b981);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 4px 16px rgba(59,130,246,0.10);
  transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
  position: relative;
}
.social-link:hover {
  transform: scale(1.13) rotate(-8deg);
  background: linear-gradient(135deg, #10b981, #3b82f6);
  box-shadow: 0 8px 32px rgba(16,185,129,0.18);
}
.footer-links h3,
.footer-contact h3 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  font-size: 1.15rem;
}
.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
}
.footer-links a,
.footer-contact a {
  color: #cbd5e1;
  font-size: 1rem;
  transition: color 0.2s, text-shadow 0.2s;
  text-decoration: none;
}
.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
  text-shadow: 0 2px 8px #3b82f6cc;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.footer-contact i {
  color: #3b82f6;
  width: 18px;
  font-size: 1.1rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  font-size: 1rem;
  color: #cbd5e1;
}
.footer-bottom p {
  margin: 0;
  font-size: 1rem;
}
.footer-legal {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-legal a {
  color: #cbd5e1;
  font-size: 0.98rem;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: #10b981;
}

/* WhatsApp Button - OCULTO */
.whatsapp-button {
  display: none !important;
}

/* Responsivo */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
    justify-items: center;
  }
  .footer-info, .footer-links, .footer-contact {
    align-items: center;
  }
  .footer-logo img {
    margin-bottom: 1rem;
  }
}
@media (max-width: 480px) {
  .footer {
    padding: 2.5rem 0 1.2rem 0;
  }
  .footer-grid {
    gap: 1.5rem;
  }
  .footer-logo img {
    height: 38px;
  }
  .footer-bottom {
    padding-top: 1.2rem;
    font-size: 0.95rem;
  }
}

/* ============================================
   NOVOS ESTILOS PARA NOVAS PÁGINAS
   ============================================ */

/* ============================================
   SERVICES GRID
   ============================================ */

.services-modern {
  margin-bottom: 4rem;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-header .badge {
  margin-bottom: 1.5rem;
}

.services-header h2 {
  margin-bottom: 0;
}

.services-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  align-items: stretch;
}

.service-visual-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.75), rgba(15, 23, 42, 0.85));
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.service-visual-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 102, 241, 0.4);
}

.service-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(99, 102, 241, 0.15);
  opacity: 0.5;
  line-height: 1;
  z-index: 1;
  /* Simplificado - removido gradiente complexo para melhor performance */
}

.service-icon-large {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.service-visual-card:hover .service-icon-large {
  transform: scale(1.05) rotate(3deg);
}

.service-icon-large i {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-visual-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-text);
  position: relative;
  z-index: 2;
  line-height: 1.2;
  flex-shrink: 0;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 1rem;
}

.service-tags .tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 20px;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-visual-card:hover .service-tags .tag {
  background: rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.4);
  transform: translateY(-2px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-card {
  background: rgba(26, 31, 58, 0.9);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  position: relative;
}

/* Removido ::after com animação digitalScan pesada */

/* Removido efeito de revelação com partículas digitais - muito pesado */

/* Removido hover - otimização de performance */

.service-icon {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e293b;
  font-size: 2.25rem;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  /* Otimizado - sem transições */
}

.service-icon i {
  color: #1e293b;
}

/* Removido hover do ícone */

.service-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--color-text);
  position: relative;
  z-index: 1;
  /* Removido gradiente animado pesado - usando cor sólida */
}

.service-card > p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  font-size: 1.0625rem;
}

.service-features {
  list-style: none;
  padding: 0;
  text-align: left;
  position: relative;
  z-index: 1;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.service-features i {
  color: var(--color-success);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Services CTA */
.services-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(30, 41, 59, 0.8));
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--border-radius);
  padding: 3rem 2rem;
  margin-top: 4rem;
}

.services-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.services-cta p {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

/* FAQ Section Styles */
.faq-container {
  max-width: 800px;
  margin: 0 auto 4rem;
}

.faq-item {
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  overflow: hidden;
  /* Removido transition e hover para otimização */
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* Removido transition e hover para otimização */
}

.faq-question i {
  color: var(--color-primary);
  /* Removido transition para otimização */
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.active {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

.faq-contact {
  margin-bottom: 4rem;
}

.contact-card {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(30, 41, 59, 0.8));
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--border-radius);
  padding: 3rem;
  text-align: center;
}

.contact-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.contact-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.contact-card p {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.contact-options {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}



/* ============================================
   RESPONSIVE DESIGN
   ============================================ */


/* Responsividade Futurista */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .clients-preview {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .section {
    padding: 4rem 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  /* Target Vertical Cards - Tablet */
  .target-vertical-list {
    gap: 2rem;
  }

  .target-card-wrapper {
    grid-template-columns: 1fr !important;
    gap: 2rem;
    padding: 2rem;
  }

  .target-card-wrapper.image-right .target-card-image,
  .target-card-wrapper.image-right .target-card-content {
    order: 0;
  }

  .target-image-placeholder {
    max-width: 100%;
    height: 250px;
  }

  .target-card-content h3 {
    font-size: 1.5rem;
  }

  .target-card-content p {
    font-size: 1rem;
  }

  .target-additional-text {
    font-size: 1rem;
    margin: 1rem 0 0 0;
    padding: 0.75rem 0;
  }

  .target-quote {
    margin: 1.5rem 0 0 0;
    padding: 1.5rem;
  }

  .target-quote i {
    font-size: 1.5rem;
    top: 1rem;
    left: 1rem;
  }

  .target-quote p {
    font-size: 1rem;
    padding-left: 2.5rem;
  }

  .target-number-badge {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Services Grid - Tablet */
  .services-visual-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .service-visual-card {
    padding: 2rem 1.5rem;
    min-height: 280px;
    height: auto;
  }

  .service-number {
    font-size: 2.5rem;
    top: 1rem;
    right: 1rem;
  }

  .service-icon-large {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
  }

  .service-icon-large i {
    font-size: 2rem;
  }

  .service-visual-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }

  .service-tags .tag {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .services-grid {
    gap: 1.5rem;
  }
  
  .services-cta {
    padding: 2rem 1.5rem;
    margin-top: 2rem;
  }
  
  .services-cta h3 {
    font-size: 1.5rem;
  }
  
  .services-grid,
  .benefits-grid,
  .target-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 2rem;
  }

  .target-card {
    padding: 2rem;
  }

  .target-card:hover {
    transform: translateY(-5px) scale(1.01);
  }

  .target-icon-wrapper {
    width: 75px;
    height: 75px;
  }

  .target-icon {
    width: 75px;
    height: 75px;
  }

  .target-card:hover .target-icon {
    transform: rotate(3deg) scale(1.05);
  }

  .target-icon i {
    font-size: 1.875rem;
  }

  .target-number {
    font-size: 3.5rem;
  }

  .target-card h3 {
    font-size: 1.375rem;
  }

  .service-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
  
  .check-icon {
    width: 60px;
    height: 60px;
  }
  
  .benefit-icon {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
  }

  .hero {
    padding-top: 80px;
    min-height: auto;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    font-size: 1.125rem;
  }

  .btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  /* Desabilitar partículas em mobile */
  #particles-canvas {
    display: none;
  }

  .services-grid,
  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card,
  .benefit-card,
  .testimonial-card {
    padding: 2rem;
  }

  .testimonial-results {
    gap: 1rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .faq-question {
    padding: 1.25rem;
    font-size: 1rem;
  }

  .faq-answer p {
    padding: 0 1.25rem 1.25rem;
  }

  .contact-card {
    padding: 2rem;
  }

  .contact-card h3 {
    font-size: 1.5rem;
  }

  .contact-options {
    flex-direction: column;
    align-items: center;
  }

  .contact-options .btn {
    width: 100%;
    max-width: 250px;
  }
}

/* ============================================
   APRIMORAMENTO VISUAL DAS NOVAS SEÇÕES
   ============================================ */

/* Removido animações de entrada - otimização de performance */

/* Visual minimalista - Aplicado apenas a testimonial-card e faq-item */
.testimonial-card, .faq-item {
  background: rgba(30, 41, 59, 0.4);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  /* Removido backdrop-filter e hover para otimização */
}

/* Removido hover dos cards */

/* Títulos simples */
.service-card h3, .testimonial-card h3, .faq-question {
  color: var(--color-text);
  font-weight: 600;
}

/* Separador minimalista */
.section-header::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  margin: 1rem auto 0 auto;
  background: rgba(59, 130, 246, 0.6);
}

/* Ícones otimizados - sem transições */
.service-icon, .testimonial-card .author-avatar, .faq-question i {
  /* Removido transições para otimização */
}

/* FAQ minimalista */
.faq-question {
  font-size: 1.125rem;
  letter-spacing: 0.01em;
  padding-right: 2rem;
  position: relative;
}
.faq-question i {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(59, 130, 246, 0.7);
}
.faq-answer {
  background: rgba(59, 130, 246, 0.03);
  border-left: 2px solid rgba(59, 130, 246, 0.2);
}

/* Depoimentos otimizados */
.testimonial-card {
  border-left: 3px solid rgba(59, 130, 246, 0.3);
  position: relative;
  /* Removido ::before com aspas para otimização */
}


/* Responsividade minimalista */
@media (max-width: 600px) {
  .service-card, .testimonial-card, .faq-item {
    padding: 1.5rem;
  }
  .section-header::after {
    width: 40px;
    height: 2px;
  }
  .faq-question {
    font-size: 1rem;
    padding-right: 1.5rem;
  }
}

/* Organização aprimorada para a seção de depoimentos */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  align-items: stretch;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  min-height: 320px;
  padding: 2.5rem 2rem;
  margin: 0;
}

.testimonial-card .testimonial-text {
  flex: 1;
  margin-bottom: 1.5rem;
  color: var(--color-text);
  font-style: italic;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary-light, #e0e7ef);
  color: var(--color-primary, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
}

.author-info h4 {
  color: var(--color-text);
  font-weight: 600;
  margin-bottom: 0.15rem;
  font-size: 1rem;
}

.author-info p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .testimonial-card {
    padding: 1.5rem 1rem;
    min-height: 220px;
  }
}

/* ============================================
   OTIMIZAÇÕES DE PERFORMANCE PARA MOBILE
   ============================================ */
@media (max-width: 768px) {
  /* Desabilitar backdrop-filter em mobile (muito pesado) */
  .badge,
  .header,
  .btn-outline,
  .service-card,
  .testimonial-card,
  .faq-item,
  .youtube-video-container {
    backdrop-filter: none !important;
    background: rgba(26, 31, 58, 0.95) !important;
  }

  /* Otimizar cards em mobile */
  .service-card {
    min-height: auto !important;
    padding: 2rem !important;
    opacity: 1 !important;
    transform: scale(1) !important;
  }

  .service-card.active {
    border-color: rgba(99, 102, 241, 0.5) !important;
  }

  /* Reduzir sombras em mobile */
  .service-card {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
  }

  /* Remover animações pesadas */
  .badge-dot::before {
    animation: none !important;
    box-shadow: 0 0 8px var(--color-primary) !important;
  }

  /* Remover transições pesadas em mobile */
  .service-card,
  .testimonial-card,
  .btn {
    transition: none !important;
  }

  .target-card {
    transition: transform 0.3s ease, border-color 0.3s ease !important;
  }

  .target-card:hover {
    transform: translateY(-3px) !important;
  }

  .target-card::after {
    display: none;
  }
  
  /* Manter apenas transições essenciais */
  .faq-answer {
    transition: max-height 0.3s ease !important;
  }
  
  .nav-link::after,
  .mobile-menu {
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease !important;
  }
}

/* Desabilitar animações para usuários com preferência por movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
