*,
*::before,
*::after {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
}

body {
  background: #0f0f11;
  color: #fff;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.navbar {
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header {
  display: block;
  backdrop-filter: blur(8px);
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}

.menu li a {
  color: white;
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.28px;
  text-transform: uppercase;
}

.menu li a:hover,
.menu li a.active {
  border-bottom: 1px solid #204f79;
  border-radius: 0;
}

.menu li:last-child a {
  border-radius: 122px;
  background: #204f79;
  padding: 8px 24px;
}

.menu li:last-child a:hover { 
  background: #0f3557; 
}

.menu-icon {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  user-select: none;
  color: white;
}

.menu.mobile {
  display: none;
  flex-direction: column;
  background-color: #0f3557;
  position: absolute;
  top: 60px;
  right: 20px;
  width: 180px;
  border-radius: 6px;
  overflow: hidden;
  z-index: 9;
  transition: all 0.3s ease;
}

.menu.mobile.open {
  display: flex;
}

@media (max-width: 768px) {
  .menu.desktop {
    display: none;
  }

  .menu-icon {
    display: block;
  }
}

@media (min-width: 769px) {
  .menu.mobile {
    display: none !important;
  }

  .menu-icon {
    display: none;
  }
}

header {
  position: fixed;
  width: 100%;
  z-index: 9;
}

.container {
  max-width: 1200px;
  padding: 0 2rem;
  margin: 0 auto;
  position: relative;
  width: 100%;
}

/* Page home */
.page-home {
  padding: 0;
}

.page-home .main-banner {
  width: 100%;
  background-size: cover;
  padding: 50px 0;
}

/* Banner */
.page-home .banner {
  color: #fff;
  text-align: center;
  padding: 130px 0px 80px 0px;
  position: relative;
}
.page-home .banner-overlay {
  max-width: 780px;
  margin: 0 auto;
}

.page-home .banner-subtitle {
  font-family: 'Inter';
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  color: #fff;
  letter-spacing: 1px;
}

.page-home .banner-title {
  font-family: 'Plus Jakarta Sans';
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin: 20px 0;
}

@media (min-width: 769px) {
  .page-home .banner-title {
    font-size: 56px;
  }
}

.page-home .banner-title span {
  color: #204f79;
}

.page-home .banner-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 40px 0;
}

.page-home .tab {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(26, 27, 31, 0.15);
  backdrop-filter: blur(8px);
  color: white;
  font-family: 'Montserrat';
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 19.6px */
  text-transform: uppercase;
  cursor: pointer;
}

.page-home .tab:hover{
  border: 1px solid #204f79;
}

.page-home .tab.active {
  background-color: #204f79;
  font-weight: 600;
  border: none;
}

.page-home .banner-form {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.page-home .banner-codigocliente 
{
    margin-top: -40px;
    color: #fff;
    text-align: center;
    font-family: 'Montserrat';
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}

.page-home .input-group {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 40px;
  padding: 0 20px;
  gap: 10px;
  font-family: 'Montserrat';
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 22.4px */
  width: 384px;
}

.page-home .input-group input {
  background: transparent;
  border: none;
  color: white;
  font-size: 16px;
  width: 100%;
  outline: none;
  margin-bottom: 0;
  padding: 0;
  font-family: 'Montserrat';
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 22.4px */
  height: 50px;
}

.page-home .input-group input::placeholder {
  color: #fff;
}

.page-home .input-group img {
  width: 25px;
  height: 25px;
}

.page-home .banner-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
} 

.page-home .btn-primary {
  background-color: #204f79;
  border: none;
  padding: 10px 24px;
  border-radius: 30px;
  color: #fff;
  text-align: right;
  font-family: 'Inter';
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 22.4px */
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-home .btn-primary:hover { 
  background: #0f3557; 
}


.page-home .btn-primary svg {
  margin-left: 10px;
}

.page-home .btn-secondary {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #fff;
  text-align: right;
  font-family: 'Inter';
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 22.4px */
  padding: 10px 32px;
  border-radius: 30px;
  cursor: pointer;
  height:50px;
}

.btn-secondary:hover {
  background-color: #fff;
  border: 1px solid #ffffff;
  color: #0f0f11;
}

.page-home .about {
  padding: 64px 0;
}

.page-home .about-items {
  display: grid;
  column-gap: 20px;
  row-gap: 20px;
}
@media (min-width: 769px) {
  .page-home .about-items {
    display: grid;
    grid-template-columns: 1fr 385px;
    column-gap: 20px;
    row-gap: 20px;
  }
}

.page-home .about-items .item {
  border-radius: 6px;
  padding: 40px;
  background-size: cover;
  background-position: center;
}

/* Footer */
.footer {
  border-top: 2px solid #3d46508f;
  backdrop-filter: blur(6px);
  background-color: #0f0f11;
  color: #ccc;
  text-align: center;
  padding: 40px 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-container {
  max-width: 700px;
  margin: 0 auto;
}

.footer a {
  color: #66b2ff;
  text-decoration: none;
  font-weight: 500;
  font-family: 'Plus Jakarta Sans';
  font-size: 20px;
  font-style: normal;
  line-height: 130%; /* 26px */
}

.footer a:hover {
  text-decoration: underline;
}

.footer-note {
  color: #888;
  font-size: 14px;
  margin-top: 10px;
  font-family: 'Plus Jakarta Sans';
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
}

.footer-deadline {
  font-size: 13px;
  margin-top: 10px;
  color: #fff;
  font-family: 'Inter';
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
}

.footer-brand {
  margin-top: 30px;
  font-weight: 800;
  color: white;
  font-size: 16px;
  letter-spacing: 1px;
}

/* modal */

.modal.hidden {
  display: none;
}

.modal {
  border-radius: 16px;
  background: #1a1e22;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #12161d;
  padding: 20px;
  border-radius: 12px;
  width: 410px;
  z-index: 1000;
  color: #fff;
  z-index: 999;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding-bottom: 10px;
}

.modal-header h2 {
  margin: 0;
  color: #fff;
  font-family: 'Plus Jakarta Sans';
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 20.8px */
  text-transform: uppercase;
}

.modal-header .close-modal {
  background: transparent;
  border: none;
  padding: 0;
}

.modal-body {
  margin-top: 20px;
}

.client input,
.address input {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full, 999px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(26, 27, 31, 0.65);
  backdrop-filter: blur(8px);
  border-radius: 40px;
  padding: 10px 20px;
  gap: 10px;
  font-family: 'Montserrat';
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  height: 45px;
  width: 100%;
}

.client input::placeholder,
.address input::placeholder {
  color: #fff;
  font-family: 'Montserrat';
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}

.client small{
  color: #fff;
  text-align: center;
  font-family: 'Montserrat';
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}

.bc2 small {
    color: #fff;
    text-align: center;
    font-family: 'Montserrat';
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
}

.modal .input-group {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.modal .input-group input {
  margin-left: 5px;
  flex: 1;
}

.modal .tabs {
  display: flex;
  gap: 8px;
  margin: 10px 0;
}

.modal .tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.modal .tab {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(26, 27, 31, 0.15);
  backdrop-filter: blur(8px);
  color: white;
  font-family: 'Montserrat';
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 19.6px */
  text-transform: uppercase;
  cursor: pointer;
}

.modal .tab.active {
  background-color: #204f79;
  font-weight: 600;
  border: none;
}

@media (min-width: 769px) {
    .bc2 {
        margin: 0;
        padding: 0;
        margin-top: -12px;
        text-align: center;
    }
}

@media (min-width: 769px) {
  .bc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
  }
}
.bc .input-group,
.taxa .input-group {
  width: 100%;
}

.taxa {
  margin: 20px 0;
}

.taxa small {
  color: #fff;
  text-align: center;
  font-family: 'Montserrat';
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  margin-top: 10px;
  line-height: 140%; /* 16.8px */
  display: block;
}

.address {
    text-align: center;
}

.address small {
  color: #fff;
  text-align: center;
  font-family: 'Montserrat';
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  margin-top: 10px;
  line-height: 140%; /* 16.8px */
  display: block;
}

.modal .btn-primary {
  border: none;
  padding: 10px;
  border-radius: 30px;
  color: #fff;
  width: 100%;
  margin-top: 15px;
  cursor: pointer;
  display: block;
  text-align: center;
}

.modal .note {
  font-size: 12px;
  margin-top: 8px;
  color: #ccc;
  text-align: center;
  display: block;
}

.hidden {
  display: none !important;
}

.step-2 label {
  color: #fff;
  text-align: center;
  font-family: 'Montserrat';
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 0;
}

.qrcode img {
  display: block;
  margin: 20px auto;
}

.step-2 p {
  color: #fff;
  text-align: center;
  font-family: 'Montserrat';
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 0;
}

.step-alert p {
  color: #fff;
  text-align: center;
  font-family: 'Montserrat';
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 0;
}

.step-2 .pix {
  color: #fff;
  text-align: center;
  font-family: 'Montserrat';
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  margin-top: 10px;
  line-height: 140%; /* 16.8px */
  display: block;
}

.input-group label {
  display: flex;
  align-items: center;
  margin: 0;
}

.step-alert .small {
  color: #fff;
  text-align: center;
  font-family: 'Montserrat';
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  margin-top: 10px;
  line-height: 140%; /* 16.8px */
  display: block;
}

.disable-background {
    pointer-events: none;
    user-select: none;
    opacity: 0.5; /* opcional: deixar o fundo visualmente escurecido */
}