@media (max-width: 900px) {
  
    /* ===== Sidebar ===== */
  .menu-toggle {
    margin: 0 4px;
    display: block;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1001;

    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: .5rem .7rem;
    font-size: 1.2rem;
    cursor: pointer;
  }

  .sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 260px;
    z-index: 1000;

    transition: left .25s ease;
  }

  .sidebar.open {
    left: 0;
  }

  .app {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display:flex;
    gap:.5rem;
    align-items:center;
  }
  .nav button{text-align:center}


  /* ===== Main ===== */
  .main {
    padding-top: 4rem;
  }

  /* ===== Hospedagem – Botão adicionar ===== */
  .hospedagem-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .hospedagem-header button {
    display: none;
  }

  .hospedagem-header .btn-icon {
    display: inline;
    font-size: 1.4rem;
    line-height: 1;

    background:var(--bg-soft);
    border:1px solid var(--border);
    color:var(--text-main);
    padding:.6rem 1rem;
    border-radius:12px;
    cursor:pointer;
    font-size:.85rem;
    font-weight:500;
    transition:.2s;
    white-space:nowrap;
  }

  /* ===== Hospedagem (Cards) ===== */
  .hospedagem-cards {
    margin-left: 2px;

    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: .5rem;

    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    padding-left: .2rem;
    padding-right: .2rem;
  }

  .hospedagem-cards::-webkit-scrollbar {
    display: none;
  }

  .stay-card {
    width: 90%;
    height: 350px;
    flex-shrink: 0;
    flex-direction: column;
    display: flex;
    gap: 1rem;

    scroll-snap-align: start;
  }

  .stay-card img {
    width: 100%;
    height: 60%;
    object-fit: cover;
    flex-shrink: 0;
  }

  .stay-info {
    width: 100%;
    justify-content: center;
  }

  /* ===== Tables ===== */
  .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-wrapper::-webkit-scrollbar {
    display: none;
  }
}