/* Estilos gerais */
.navbar-container {
  width: 100%;
}

.mobile-navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0;
}

.logo,
.logo-text {
  cursor: pointer;
}

.large-navbar {
  height: 88px;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e3e6fc;
  gap: 1.25rem;
  padding: 0 1.25rem;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-section {
  display: flex;
  align-items: center;
  gap: 2rem;
}


.download-btn-section {
  display: flex;
}

.download-btn {
  color: #7966d3;
  /* Cor primária */
  font-weight: 600;
  border: 1px solid #7966d3;
  padding: 0.875rem 1.5rem;
  border-radius: 9999px;
  background-color: #fff;
}

.nav-link {
  position: relative;
  transition: color 0.1s ease;
}

.nav-link.home,
.nav-link.features,
.nav-link.pricing,
.nav-link.contact {
  font-weight: 500;
  color: #272046;
}

.nav-link.home.active,
.nav-link.features.active,
.nav-link.pricing.active,
.nav-link.contact.active {
  font-weight: bold;
  color: #3a6dff;
}

.nav-link.home.active::after,
.nav-link.features.active::after,
.nav-link.pricing.active::after,
.nav-link.contact.active::after {
  content: "";
  position: absolute;
  bottom: -19.5px;
  /* Ajuste para Home, pode ser modificado */
  left: 50%;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 3px;
  background-color: #3a6dff;
  border-radius: 9999px;
}

.small-navbar {
  background-color: white;
  border: 1px solid #e3e6fc;
  height: 64px;
  width: 92%;
  max-width: 400px;
  position: fixed;
  z-index: 999;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 9999px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

a {
  text-decoration: none;
  position: relative;
  transition: all 0.9s ease-in-out;
}

.active-route {
  font-weight: 700 !important;
  color: var(--primary-color) !important;
}

.active-route::after {
  content: '';
  position: absolute !important;
  bottom: -19.5px !important;
  left: 50% !important;
  width: 1.5rem !important;
  transform: translateX(-50%) !important;
  height: 3px !important;
  background: var(--primary-color) !important;
  border-radius: 9999px;
}


@media (min-width: 1024px) {

  .active-route::after {
    bottom: -31px !important;
  }

  .mobile-navbar {
    display: none;
  }

  .small-navbar {
    display: none;
  }

  .large-navbar {
    display: flex;
  }
}

@media (max-width: 1023px) {
  .small-navbar, .mobile-navbar {
    display: flex;
  }

  .large-navbar {
    display: none;
  }

    .download-btn {
        padding: .5rem 1.5rem;
    }
}