body {
      font-family: 'Inter', sans-serif;
      background-color: #f5f6f8;
      padding-top: 106px; /* espaço para navbar principal + secundário fixos */
    }
    .navbar {
      background-color: #3d39ee;
      box-shadow: 0 2px 4px rgba(0,0,0,0.05);
      padding: 15px 0;

      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1030;
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .nav-secondary {
      background-color: #f8f9fa;
      border-top: 1px solid #e0e0e0;
      border-bottom: 1px solid #e0e0e0;

      position: fixed;
      top: 128px; /* altura da navbar principal */
      left: 0;
      right: 0;
      z-index: 1020;
    }
    .navbar .search-input {
      flex: 1 1 auto;
      border-radius: 8px;
      padding-left: 20px;
      min-width: 0;
      background-color: #f0f2f5;
      border: 1.5px solid #ccc;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }
    .navbar .search-input:focus {
      border-color: #bada55;
      box-shadow: 0 0 8px rgba(186, 218, 85, 0.5);
      background-color: #fff;
      outline: none;
    }
    .navbar .btn-search {
      border-radius: 4px;
      background-color: #00ff6b;
      border: none;
      color: #333;
      font-weight: 600;
    }
    .nav-secondary .nav-link {
      color: #333;
      margin-right: 20px;
      text-decoration: none;
      padding: 15px;
      display: inline-block;
      transition: background-color 0.3s ease;
    }
    .nav-secondary .nav-link:hover {
      background-color: #3ec5ec33;
      text-decoration: none;
      border-radius: 5px;
    }
    .dropdown-menu {
      background-color: #ffffff;
      border: 1px solid #e0e0e0;
    }
    .dropdown-submenu {
      position: relative;
    }
    .dropdown-submenu .dropdown-menu {
      top: 0;
      left: 100%;
      margin-top: -1px;
    }
    .hero {
      background-color: #00bfa6;
      color: white;
      padding: 60px 20px;
      text-align: center;
      margin-top: 100px;
    }
    .hero2 {
      background-color: #00bfa6;
      color: white;
      padding: 60px 20px;
      text-align: center;
      margin-top: 14px;
    }
    .hero h1 {
      font-size: 2.5rem;
      font-weight: 700;
    }
    .companies-section {
      padding: 60px 20px;
      background: #fff;
    }
    .companies-section h2 {
      text-align: center;
      font-weight: 700;
      margin-bottom: 40px;
    }
    .company-card {
      background: #f9f9f9;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
      transition: all 0.2s ease-in-out;
    }
    .company-card:hover {
      transform: translateY(-5px);
    }
    .steps-section {
      background: #f0f2f5;
      padding: 60px 20px;
    }
    .step {
      text-align: center;
      margin-bottom: 30px;
    }
    .step h4 {
      font-weight: 600;
    }
    .cta-section {
      background-color: #ffffff;
      padding: 60px 20px;
      text-align: center;
    }
    .cta-section h2 {
      font-weight: 700;
      margin-bottom: 20px;
    }
    .cta-section p {
      font-size: 1.1rem;
      margin-bottom: 30px;
    }
    .cta-section .btn {
      padding: 12px 30px;
      font-size: 1.1rem;
    }
    footer {
      background-color: #3d39ee;
      color: #071e59;
      padding: 40px 20px;
    }
    footer a {
      color: #071e59;
      text-decoration: none;
    }
    footer a:hover {
      text-decoration: underline;
    }
    .offcanvas-start {
      width: 250px;
    }
    /* Estilo do ícone hambúrguer amarelo-esverdeado */
    .custom-toggler {
      border: none;
      width: 30px;
      height: 22px;
      position: relative;
      cursor: pointer;
      background: transparent;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 0;
      z-index: 1100; /* acima da navbar */
    }
    .custom-toggler span {
      display: block;
      height: 4px;
      background-color: #bada55;
      border-radius: 2px;
      transition: all 0.3s ease;
    }
    .custom-toggler span:nth-child(1) {
      width: 100%;
    }
    .custom-toggler span:nth-child(2) {
      width: 70%;
      align-self: flex-start;
    }
    .custom-toggler span:nth-child(3) {
      width: 50%;
      align-self: flex-end;
    }
    /* Para mobile */
    @media (max-width: 991.98px) {
      .nav-secondary .container {
        display: none;
      }
    }
    .modal-content {
  background-color: #fff;
  border-radius: 1rem;
  padding: 1rem;
}

.modal .form-control,
.modal .form-select {
  border-radius: 0.5rem;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.modal .form-control:focus,
.modal .form-select:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.25rem rgba(13,110,253,0.1);
}
@media (max-width: 576px) {
  .nav.nav-underline .nav-link {
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
  }
  .btn {
    font-size: 0.9rem;
    padding: 0.4rem 0.75rem;
  }
}

    