/* Menú horizontal escritorio — solo ≥768px, flujo normal (sin sticky/fixed). */

.menu-pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .menu-pc {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 16px 16px 8px;
    margin: 0;
    background: #F3F3F3;
  }

  .menu-pc__list {
    list-style: none;
    margin: 0;
    padding: 8px 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 20px;
    max-width: 100%;
  }

  .menu-pc__item {
    margin: 0;
    padding: 0;
  }

  .menu-pc__link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    text-decoration: none;
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    border-radius: 12px;
    transition: background-color 0.2s ease, color 0.2s ease;
  }

  .menu-pc__link:hover,
  .menu-pc__link:focus {
    background-color: rgba(255, 255, 255, 0.75);
    color: #002a5f;
    outline: none;
  }

  .menu-pc__icon {
    flex-shrink: 0;
    display: block;
    width: 20px;
    height: auto;
  }

  .menu-pc__text {
    line-height: 1.2;
  }
}
