/* ========================================== */
/* CARROSSEL DE CLIENTES                      */
/* ========================================== */
.client-carousel-container {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.client-carousel-wrapper {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.client-slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 20px 30px;
  flex-wrap: wrap;
  min-height: 120px;
}

.client-logo {
  height: 60px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Botões de navegação */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 173, 199, 0.15);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(4px);
  color: #0aadc7;
  font-size: 1.2rem;
}

.carousel-btn:hover {
  background: rgba(10, 173, 199, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.prev-btn {
  left: 12px;
}

.next-btn {
  right: 12px;
}

/* Indicadores (dots) */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 15px 0 5px 0;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.dot.active {
  background: #0aadc7;
  transform: scale(1.2);
  box-shadow: 0 0 12px rgba(10, 173, 199, 0.4);
}

.dot:hover {
  background: #0aadc7;
  opacity: 0.7;
}

/* Responsividade */
@media (max-width: 768px) {
  .client-slide {
    gap: 20px;
    padding: 15px 10px;
  }
  
  .client-logo {
    height: 45px;
    max-width: 100px;
  }
  
  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  
  .prev-btn {
    left: 6px;
  }
  
  .next-btn {
    right: 6px;
  }
}

@media (max-width: 480px) {
  .client-slide {
    gap: 15px;
    padding: 10px 8px;
  }
  
  .client-logo {
    height: 35px;
    max-width: 80px;
  }
  
  .carousel-btn {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
}

/* Animação sutil de entrada */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.client-carousel-container {
  animation: fadeSlideUp 0.8s ease forwards;
}


/* Fontes Inter */
    @font-face {
      font-family: 'Inter';
      font-style: normal;
      font-weight: 300;
      font-display: swap;
      src: url('../fonts/inter-v12-latin-300.woff2') format('woff2'),
           url('../fonts/inter-v12-latin-300.woff') format('woff');
    }
    @font-face {
      font-family: 'Inter';
      font-style: normal;
      font-weight: 500;
      font-display: swap;
      src: url('../fonts/inter-v12-latin-500.woff2') format('woff2'),
           url('../fonts/inter-v12-latin-500.woff') format('woff');
    }
    @font-face {
      font-family: 'Inter';
      font-style: normal;
      font-weight: 700;
      font-display: swap;
      src: url('../fonts/inter-v12-latin-700.woff2') format('woff2'),
           url('../fonts/inter-v12-latin-700.woff') format('woff');
    }

    /* Seção de vídeo no topo */
    .top-video-section {
      width: 100%;
      height: 300px;
      overflow: hidden;
      position: relative;
    }
    .top-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    @media (max-width: 768px) {
      .top-video-section {
        height: 200px;
      }
    }

    /* ========== EFEITO DE DIGITAÇÃO ========== */
    .frase-container {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: 'Inter', 'Segoe UI', monospace;
      font-size: 3.2rem;
      font-weight: 400;
      letter-spacing: 1px;
    }

    .fixo {
      color: #1a1a1a;
    }

    .variavel {
      font-weight: 100;
      background: linear-gradient(90deg, #0aadc7, #92fcee);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      letter-spacing: 1px;
    }

    .cursor {
      font-weight: 100;
      background: linear-gradient(90deg, #0aadc7, #92fcee);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      animation: piscar 0.6s step-end infinite;
    }

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

    /* Botão NOSSOS SERVIÇOS */
    .btn-servicos {
      background: #1a1a1a;
      color: #fff;
      padding: 14px 48px;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
      border: 2px solid transparent;
    }

    .btn-servicos:hover {
      background: transparent;
      color: #1a1a1a;
      border-color: #1a1a1a;
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }

    /* Espaçamento da seção de digitação */
    .hero-digita {
      padding: 40px 0 20px 0;
      text-align: center;
    }

    @media (max-width: 768px) {
      .frase-container {
        font-size: 2rem;
        flex-wrap: wrap;
        justify-content: center;
      }
      .btn-servicos {
        padding: 12px 32px;
        font-size: 1rem;
      }
    }

    /* ===== ESTILOS DAS NOVAS SEÇÕES ===== */
    
    /* Sessão 1 - Serviço com imagens */
    .servico-imagem {
      width: 80px;
      height: 80px;
      object-fit: cover;
      border-radius: 12px;
      transition: all 0.4s ease;
      border: 3px solid transparent;
    }
    
    .servico-imagem:hover {
      transform: scale(1.1) rotate(-2deg);
      border-color: #0aadc7;
      box-shadow: 0 8px 30px rgba(26, 184, 136, 0.3);
    }
    
    .servico-item {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 15px;
      background: #f8f6f3;
      border-radius: 16px;
      transition: all 0.3s ease;
      margin-bottom: 15px;
    }
    
    .servico-item:hover {
      background: #ffffff;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      transform: translateX(8px);
    }

    /* Sessão 2 - FAQ */
    .faq-item {
      border-bottom: 1px solid #e5e0d8;
      padding: 18px 0;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .faq-item:hover {
      padding-left: 10px;
    }
    
    .faq-pergunta {
      font-weight: 600;
      color: #1a1a1a;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 1.05rem;
    }
    
    .faq-pergunta i {
      transition: transform 0.3s ease;
      background: linear-gradient(90deg, #0aadc7, #92fcee);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    
    .faq-pergunta.aberto i {
      transform: rotate(180deg);
    }
    
    .faq-resposta {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
      color: #555;
      padding: 0 0 0 0;
    }
    
    .faq-resposta.ativo {
      max-height: 200px;
      padding: 12px 0 0 0;
    }

    /* Sessão 3 - Contato Imediato */
    .contato-card {
      background: #f8f6f3;
      padding: 25px;
      border-radius: 16px;
      text-align: center;
      transition: all 0.3s ease;
      height: 100%;
    }
    
    .contato-card:hover {
      background: #ffffff;
      box-shadow: 0 4px 25px rgba(0,0,0,0.08);
      transform: translateY(-5px);
    }
    
    .contato-card i {
      font-size: 2.5rem;
      background: linear-gradient(90deg, #0aadc7, #92fcee);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 12px;
    }
    
    .contato-card a {
      color: #1a1a1a;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
    }
    
    .contato-card a:hover {
      background: linear-gradient(90deg, #0aadc7, #92fcee);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    /* Sessão 4 - Planos */
    .plano-card {
      background: #e6f5f3;
      padding: 30px 25px;
      border-radius: 16px;
      text-align: center;
      transition: all 0.3s ease;
      height: 100%;
      position: relative;
      border: 2px solid transparent;
    }
    
    .plano-card:hover {
      background: #ffffff;
      box-shadow: 0 8px 35px rgba(0,0,0,0.1);
      transform: translateY(-8px);
      border-color: #0aadc7;
    }
    
    .plano-card.destaque {
      background: #1a1a1a;
      color: #fff;
    }
    
    .plano-card.destaque .plano-preco {
      background: linear-gradient(90deg, #0aadc7, #92fcee);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    
    .plano-card.destaque .plano-nome {
      color: #fff;
    }
    
    .plano-card.destaque .plano-desc {
      color: #ccc;
    }
    
    .plano-card.destaque:hover {
      background: #2a2a2a;
    }
    
    .plano-nome {
      font-size: 1.5rem;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 10px;
    }
    
    .plano-preco {
      font-size: 2.2rem;
      font-weight: 700;
      background: linear-gradient(90deg, #0aadc7, #92fcee);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 15px;
    }
    
    .plano-preco small {
      font-size: 1rem;
      font-weight: 400;
      background: linear-gradient(90deg, #0aadc7, #92fcee);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    
    .plano-desc {
      color: #666;
      margin-bottom: 20px;
      font-size: 0.95rem;
    }
    
    .plano-lista {
      list-style: none;
      padding: 0;
      text-align: left;
      margin-bottom: 25px;
    }
    
    .plano-lista li {
      padding: 6px 0;
      border-bottom: 1px solid #eee;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.9rem;
    }
    
    .plano-lista li i {
      background: linear-gradient(90deg, #0aadc7, #92fcee);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      font-size: 0.8rem;
    }
    
    .plano-card.destaque .plano-lista li {
      border-color: #444;
      color: #ddd;
    }
    
    .plano-card.destaque .plano-lista li i {
      background: linear-gradient(90deg, #0aadc7, #92fcee);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    
    .btn-plano {
      display: inline-block;
      padding: 10px 30px;
      border-radius: 50px;
      background: #1a1a1a;
      color: #fff;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }
    
    .btn-plano:hover {
      background: transparent;
      color: #1a1a1a;
      border-color: #1a1a1a;
      transform: scale(1.05);
    }
    
    .plano-card.destaque .btn-plano {
      background: linear-gradient(90deg, #0aadc7, #92fcee);
      color: #fff;
      border: none;
    }
    
    .plano-card.destaque .btn-plano:hover {
      background: transparent;
      color: #0aadc7;
      border-color: #0aadc7;
    }

    .badge-destaque {
      position: absolute;
      top: -12px;
      right: 20px;
      background: linear-gradient(90deg, #0aadc7, #92fcee);
      color: #fff;
      padding: 4px 16px;
      border-radius: 50px;
      font-size: 0.75rem;
      font-weight: 600;
    }

    @media (max-width: 768px) {
      .servico-imagem {
        width: 60px;
        height: 60px;
      }
      .plano-preco {
        font-size: 1.8rem;
      }
    }
    
    /* Estilo adicional para o formulário */
    .grouped-inputs {
      border-radius: 20px !important;
      box-shadow: 0 4px 30px rgba(0,0,0,0.05);
    }

    .grouped-inputs .form-control {
      border-radius: 12px;
      border: 2px solid #e5e0d8;
      padding: 14px 18px;
      transition: all 0.3s ease;
      background: #ffffff;
    }

    .grouped-inputs .form-control:focus {
      border-color: #0aadc7;
      box-shadow: 0 0 0 4px rgba(26, 184, 136, 0.15);
    }

    .grouped-inputs .form-control.is-invalid {
      border-color: #dc3545;
    }

    .grouped-inputs .form-control.is-valid {
      border-color: #198754;
    }

    .grouped-inputs .btn {
      border-radius: 50px;
      transition: all 0.3s ease;
    }

    .grouped-inputs .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
      background: linear-gradient(90deg, #0aadc7, #92fcee) !important;
      border-color: transparent !important;
    }

    /* Alertas estilizados */
    .alert {
      border-radius: 16px;
      border: none;
      padding: 18px 24px;
    }

    .alert-success {
      background: #e8f5e9;
      color: #1b5e20;
    }

    .alert-danger {
      background: #fce4ec;
      color: #b71c1c;
    }