/* =====================================
   NOTEBOOKS
===================================== */

@media (max-width: 1100px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .texto {
    width: 100%;
  }

  .texto h1 {
    font-size: 52px;
    line-height: 58px;
  }
}

/* =====================================
   TABLETS
===================================== */

@media (max-width: 1000px) {
  .contato-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =====================================
   MENU MOBILE
===================================== */

@media (max-width: 900px) {
  /* Header */

  .menu-mobile {
    display: block;
    font-size: 30px;
    cursor: pointer;
    z-index: 1001;
  }

  /* Esconde botão orçamento */

  .btn-orcamento {
    display: none;
  }

  /* Menu lateral */

  nav {
    position: fixed;

    top: 80px;

    right: -300px;

    width: 280px;

    background: #fff;

    transition: 0.35s;

    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);

    z-index: 1000;
  }

  nav.abrir {
    right: 0;

    /* background-color: #0f3d8ee6; */
  }

  nav ul {
    display: flex;

    flex-direction: column;

    gap: 25px;

    padding: 35px;

    background-color: #0f3d8ee6;
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    display: block;

    padding: 15px;

    border-radius: 10px;
  }

  nav ul li a:hover {
    background: #0d3d75;

    color: #fff;
  }

  /* Diferenciais */

  .diferenciais .container {
    grid-template-columns: 1fr;
  }

  .texto-dif {
    text-align: center;
  }

  /* Galeria */

  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Rodapé */

  .footer-grid {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .logo-footer {
    margin: auto;
    margin-bottom: 20px;
  }
}

/* =====================================
   CELULARES
===================================== */

@media (max-width: 768px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .titulo h2 {
    font-size: 34px;
  }

  .texto {
    text-align: center;
  }

  .texto h1 {
    font-size: 42px;

    line-height: 48px;
  }

  .botoes {
    justify-content: center;

    flex-wrap: wrap;
  }
}

/* =====================================
   CELULARES PEQUENOS
===================================== */

@media (max-width: 650px) {
  .galeria-grid {
    grid-template-columns: 1fr;
  }

  .foto {
    height: 260px;
  }
}

/* =====================================
   CONTATO
===================================== */

@media (max-width: 600px) {
  .contato-cards {
    grid-template-columns: 1fr;
  }
}
