/* MOBILE */
@media (max-width: 600px) {



.nav-menu {
    display:none;
}

.header-content {
  display: flex;
  justify-content: center; /* Centers items horizontally */
  align-items: center; 
}

  /* remove o menu lateral como barra fixa */
  .menu-lateral {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    top: 0 !important;
    left: 0 !important;
    border-right: none !important;
    border-bottom: 1px solid #ddd !important;
    padding: 10px 0 !important;
    background: #fff;
  }

  /* remove o espaço que estava reservado pro menu */
  .wrapper, .content, .central {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  /* cards em apenas 1 coluna */
  .central {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding: 0 12px !important;
  }

  .card {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }
}

 h2 {
    text-align: center !important;
    width: 100%; 


/* TABLETS */
@media (min-width: 601px) and (max-width: 900px) {

  .nav-menu {
    display: none;
  }

  section {
    margin: 8% 20px;
    padding: 30px 15px;
  }

  .central {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .card {
    width: 100%;
  }

  .menu-lateral {
    width: 100%;
    position: relative;
    border-bottom: 1px solid #dee2e6;
  }
}

/* LAPTOP 900px - 1200px */
@media (min-width: 901px) and (max-width: 1200px) {

  section {
    max-width: 900px;
    margin: 6% auto;
  }

  .central {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
    left: 100px;
  }

  .menu-lateral {
    width: 200px;
  }
}

/* TELAS GRANDES 1201px - 1585px */
@media (min-width: 1201px) and (max-width: 1585px) {

  section {
    max-width: 1000px;
    margin: 6% auto;
  }

  .central {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
    left: 100px;
  }

  .menu-lateral {
    width: 250px;
  }
}
