.header-top {
  padding: 12px 20px;
  background-color: none;
}

.header-top .contact-link {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* ou center no mobile */
  gap: 1px; /* reduziu o espaçamento entre texto e número */
}

.header-top .contact-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.header-top .contact-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #e9560d;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.header-top .contact-number:hover {
  color: #d43f1c;
  transform: scale(1.05);
}

/* Responsivo */
@media (max-width: 768px) {
  .header-top .contact-link {
    align-items: center;
    margin-bottom: 5px;
  }
  .header-top .contact-number {
    font-size: 16px;
  }
  .header-top .social-icons {
    justify-content: center;
  }
}

/* Container do menu */
#swap-menu-top {
  background: linear-gradient(to bottom, #ffffff 0%, #ebebeb 50%, #cfcfcf 100%);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 2px solid var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
  padding: 0;
  margin: 0;
}

/* Lista principal */
#swap-menu-top ul.menu-main {
  display: flex;
  flex-direction: row; /* horizontal */
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px;
  width: 100%;
}

/* Itens */
#swap-menu-top ul.menu-main li {
  text-align: center;
}

/* Links */
#swap-menu-top ul.menu-main li a {
  display: block;
  padding: 10px 18px;
  color: var(--main-color);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover */
#swap-menu-top ul.menu-main li a:hover {
  background-color: var(--secondary-color);
  color: #000;
}

/* Responsividade — ajustes menores em telas pequenas */
@media (max-width: 768px) {
  #swap-menu-top ul.menu-main li a {
    font-size: 12px;
    padding: 8px !important;
  }
}

/* Esconde o menu em telas grandes */
@media (min-width: 992px) {
  #swap-menu-top {
    display: none !important;
  }
}

/* Mostra em telas menores */
@media (max-width: 991px) {
  #swap-menu-top {
    display: flex !important;
  }
}
