/* :root {
  --payu-primary: #00c1b6;
  --payu-secondary: #000042;
  --payu-text: #33334e;
  --payu-light-gray: #f5f7f9;
  --payu-gray: #eeeff1;
}

body {
  font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--payu-text);
  margin: 0;
  padding: 0;
  background-color: var(--payu-light-gray);
}

.navbar-payu {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 64px;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1030;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--payu-gray);
}

.navbar-payu .max-w-7xl {
  width: 100%;
  height: 64px;
  margin: 0 auto;
}

.navbar-payu .flex.justify-between {
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
}

.navbar-payu img {
  height: 34px;
  width: auto;
}

.btn-payu-primary {
  background-color: var(--payu-primary);
  color: white !important;
  border-radius: 6px;
  font-weight: 500;
  padding: 8px 16px;
  border: none;
  text-decoration: none !important;
}


@media (max-width: 767px) {
  .sm\:hidden {
    display: block !important;
  }
  
  .sm\:flex {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .sm\:hidden {
    display: none !important;
  }
  
  .sm\:flex {
    display: flex !important;
  }
}


.nav-link-payu {
  color: var(--payu-text);
  font-weight: 500;
  text-decoration: none !important;
}

.nav-link-payu.active {
  color: var(--payu-primary);
  font-weight: 600;
}

.card-payu {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 1rem;
}

.input-payu {
  border: 1.5px solid var(--payu-gray);
  border-radius: 8px;
  padding: 10px 16px;
  width: 100%;
}


.payu-section-title {
  color: var(--payu-secondary);
  font-weight: 600;
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
} */