footer.bg-dark {
    background-color: rgb(17 24 39) !important;
  }

  footer img.logo {
    height: 80px;
    width: auto;
    object-fit: contain;
  }

  footer h3 {
    color: #f9fafb;
    margin-bottom: 1.5rem;
  }

  footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  footer ul li {
    margin-bottom: 1rem;
  }

  footer ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 1.25rem;
    display: block;
    transition: color 0.3s ease;
  }

  footer ul li a:hover {
    color: #f9fafb;
  }

  footer .copyright {
    color: #9ca3af;
    font-size: 1.25rem;
  }

  @media (max-width: 768px) {
    footer {
      text-align: center;
    }
    
    footer img.logo {
      margin-bottom: 2rem;
    }
  }


  .navbar {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
  }
  .navbar .nav-link {
    color: #4B5563 !important;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  .navbar .nav-link:hover {
    color: #1b5ee4 !important;
  }
  .btn-primary {
    background-color: #1b5ee4 !important;
    border-color: #1b5ee4;
    transition: all 0.3s ease;
  }
  .btn-primary:hover {
    background-color: #1b5ee4 !important;
    border-color: #1b5ee4 !important;
  }

  .btn-outline-primary {
    color: #1b5ee4;
    border-color: #1b5ee4;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  .btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #1b5ee4;
    transition: all 0.4s ease;
    z-index: -1;
  }

  .btn-outline-primary:hover {
    color: white;
    border-color: #1b5ee4;
  }
  
  .btn-outline-primary:hover::before {
    left: 0;
  }
  .btn-outline-primary:hover {
    background-color: #1b5ee4;
    border-color: #1b5ee4;
    color: white;
  }

  .service-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(14, 165, 233, 0.15);
  }

  .navbar {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
  }
  .navbar .nav-link {
    color: #4B5563 !important;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  .navbar .nav-link:hover {
    color: #1E40AF !important;
  }
  .btn-primary {
    background-color: #1E40AF;
    border-color: #1E40AF;
  }
  .btn-primary:hover {
    background-color: #1E3A8A;
    border-color: #1E3A8A;
  }
  
  .service-icon i {
    font-size: 20px;
    color: #1b5ee4;
  }

/* 
  Card do cliente (180x180):
  - Exibe o logo centralizado (flex)
  - Tamanho fixo: 180px de largura e altura
  - Borda arredondada e sombra leve
  - Transição suave ao passar o mouse
*/
.client-item {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    padding: 1rem;
    margin: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
  }
  
  /* 
    Imagem do cliente (logo):
    - max-width/height para não ultrapassar o card
    - object-fit: contain para manter a proporção sem cortar
    - display: block para comportamento mais previsível dentro do flex container
  */
  .client-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
  }
  
  /* Efeito hover opcional: eleva o card levemente e adiciona sombra */
  .client-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
  }
  
  /* Mobile Menu Styles */
  @media (max-width: 991.98px) {
      .navbar-collapse {
          background: white;
          padding: 1rem;
          border-radius: 8px;
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
          margin-top: 1rem;
      }
  
      .navbar-nav .nav-link {
          padding: 0.75rem 0;
          border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      }
  
      .navbar-nav .nav-item:last-child .nav-link {
          border-bottom: none;
      }
  
      .btn-mobile-login {
          background-color: var(--primary) !important;
          color: white !important;
          border-radius: 6px;
          padding: 0.75rem !important;
          margin: 0.5rem 2rem;
      }
  
      .navbar-toggler {
          padding: 0.5rem;
          border-radius: 8px;
      }
  
      .navbar-toggler:focus {
          box-shadow: none;
          outline: none;
      }
  }

  .custom-badge {
    background-color: #ecf5ff; /* Azul bem claro, quase branco */
    color: #1b5ee4; /* Azul médio para o texto */
    border-radius: 50px; /* Bordas arredondadas suaves */
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* Sombra leve */
    display: inline-block;
    opacity: 0;
    transform: translateY(5px);
    animation: fadeInUp 1s ease-out forwards;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .btn-demo {
    background-color: #1b5ee4;
    border-color: #1b5ee4;
    color: white;
  }
  .btn-demo:hover {
    background-color: #1E3A8A;
    border-color: #1E3A8A;
    color: white;
  }
  