:root {
    --primary: #643ee8;
    --primary-dark: #4a2dbb;
    --primary-light: rgba(100, 62, 232, 0.1);
    --dark: #121212;
    --darker: #0a0a0a;
    --dark-light: #1e1e1e;
    --light: #f8f9fa;
    --gray: #6c757d;
  }
  
  /* Base */
  body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #333;
    padding-top: 72px;
    background-color: #fff;
    scroll-behavior: smooth;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
  }
  
  a {
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  /* Animations */
  .animate__delay-1s {
    animation-delay: 0.5s !important;
  }
  
  .animate__delay-2s {
    animation-delay: 1s !important;
  }
  
  .animate__delay-3s {
    animation-delay: 1.5s !important;
  }
  
  /* Background Classes */
  .bg-dark {
    background-color: var(--dark) !important;
  }
  
  .bg-darker {
    background-color: var(--darker) !important;
  }
  
  .bg-dark-light {
    background-color: var(--dark-light) !important;
  }
  
  /* Text Colors */
  .text-light {
    color: #f0f0f0 !important;
  }
  
  .text-primary {
    color: var(--primary) !important;
  }
  
  /* Navbar */
  .navbar {
    background-color: var(--darker);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
  }
  
  .navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
  }
  
  .navbar-brand img {
    transition: all 0.3s ease;
  }
  
  .navbar-brand img:hover {
    opacity: 0.8;
  }
  
  .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    width: calc(100% - 2rem);
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .nav-link:hover::after,
  .nav-link.active::after {
    transform: scaleX(1);
  }
  
  /* Hero */
  .hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--darker), var(--primary-dark));
    color: white;
    position: relative;
    overflow: hidden;
  }
  
  .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('images/logo.png') center/cover no-repeat;
      opacity: 0.1;
      pointer-events: none; /* 👈 impede de bloquear cliques */
    }
  .hero .btn {
      position: relative;
      z-index: 1;
    }
  
  .hero h1 span {
    position: relative;
  }
  
  .hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: -1;
  }
  
  /* Feature Highlight */
  .feature-highlight {
    background: linear-gradient(to right, var(--primary-dark), var(--darker));
    padding: 5rem 0;
    color: white;
  }
  
  /* Seção de Clientes */
  .clientes {
    background-color: var(--dark);
  }
  
  .client-card {
    text-align: center;
    width: 160px;
    transition: all 0.3s ease;
    padding: 20px 15px;
    border-radius: 12px;
  }
  
  .client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background-color: var(--dark-light);
  }
  
  .client-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 3px solid var(--primary);
    margin-bottom: 15px;
    transition: all 0.3s ease;
  }
  
  .client-card:hover .client-img {
    transform: scale(1.05);
    border-color: var(--primary);
  }
  
  .client-name {
    font-weight: 600;
    margin-bottom: 5px;
  }
  
  .client-company {
    font-size: 0.9rem;
    color: var(--gray);
  }
  
  /* Cards */
  .card {
    border: 1px solid rgba(100, 62, 232, 0.2);
    transition: all 0.3s ease;
  }
  
  .card:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(100, 62, 232, 0.2);
  }
  
  .portfolio-card {
    border-radius: 12px;
  }
  
  .portfolio-card img {
    transition: transform 0.5s ease;
  }
  
  .portfolio-card:hover img {
    transform: scale(1.05);
  }
  
  /* Glow Effect */
  .glow-effect {
    box-shadow: 0 0 15px rgba(100, 62, 232, 0.5);
  }
  
  .glow-on-hover {
    transition: box-shadow 0.3s ease;
  }
  
  .glow-on-hover:hover {
    box-shadow: 0 0 15px rgba(100, 62, 232, 0.7);
  }
  
  /* Borda roxa animada */
  .border-glow {
    position: relative;
  }
  
  .border-glow::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid transparent;
    border-radius: inherit;
    animation: borderPulse 2s infinite;
    pointer-events: none;
  }
  
  @keyframes borderPulse {
    0% { border-color: rgba(100, 62, 232, 0.1); }
    50% { border-color: rgba(100, 62, 232, 0.6); }
    100% { border-color: rgba(100, 62, 232, 0.1); }
  }
  
  /* Icon Box */
  .icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .icon-box i {
    font-size: 1.75rem;
  }
  
 /* Pricing */
.pricing-card {
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(100, 62, 232, 0.2);
  }
  
  .pricing-card.popular {
    border: 2px solid var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(100, 62, 232, 0.2);
  }
  
  .price {
    color: var(--primary);
  }
  
  .price .amount {
    font-size: 2.5rem;
    font-weight: 700;
  }
  
  .price .period {
    color: #b0b0b0; 
    font-size: 1rem;
  }
  
  .card-title {
    color: white;
  }
  
  .card-body {
    color: #f0f0f0;
  }
  
  .list-unstyled li {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
  }
  
  /* Depoimentos */
  .testimonial-card {
    background-color: var(--dark-light);
    border-left: 4px solid var(--primary);
  }
  
  /* Contato */
  .bg-primary {
    background-color: var(--primary) !important;
  }
  
  /* Footer */
  footer a {
    transition: all 0.3s ease;
  }
  
  footer a:hover {
    color: white !important;
    opacity: 0.8;
  }
  
  /* Estilo para ícones sociais no footer */
  .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .social-icon:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
  }
  
  /* Buttons */
  .btn {
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .btn-primary {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    border: none;
  }
  
  .btn-primary:hover {
    background: linear-gradient(to right, var(--primary-dark), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(100, 62, 232, 0.3);
  }
  
  .btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
  }
  
  .btn-outline-primary:hover {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: white;
  }
  
  .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  
  .btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
  }
  
  /* Botão do WhatsApp */
  .whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .whatsapp-float:hover {
    background-color: #128c7e;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
  }

  .testimonial {
  text-align: center;
  padding: 3rem 1rem;
}

.testimonial .quote-icon {
  font-size: 2rem;
  color: #007bff;
}

.testimonial .testimonial-text {
  max-width: 600px;
  margin: 1rem auto 0;
  font-size: 1.1rem;
  font-style: italic;
}

.testimonial .client-info h5 {
  margin-bottom: 0;
  font-weight: bold;
}

.testimonial .client-info small {
  color: #888;
}

  
  /* Responsividade */
  @media (max-width: 768px) {
    .hero {
      padding: 4rem 0;
      text-align: center;
    }
    
    .hero .btn {
      display: block;
      width: 100%;
      margin-bottom: 1rem;
    }
    
    .pricing-card.popular {
      transform: none;
    }
    
    .client-card {
      width: 120px;
    }
    
    .client-img {
      width: 80px;
      height: 80px;
    }
    
    .client-name {
      font-size: 0.9rem;
    }
    
    .client-company {
      font-size: 0.8rem;
    }
    
    .animate__animated {
      /* Reset animations on mobile for better performance */
      opacity: 1 !important;
    }
  }