/* ========================================
   TEMPLATE — PÁGINAS DE PROJETO
======================================== */

/* BREADCRUMB */

.page-template .breadcrumb {
  position: absolute;

  top: 140px;
  left: 80px;

  width: 100%;
  max-width: 1200px;

  display: grid;

  font-size: 13px;

  color: #9C9C9C;
}

.page-template .breadcrumb .current {
  color: #B3CAFF;
}

.page-template .breadcrumb .sep {
  margin-left: 10px;

  color: #9C9C9C;
}

.page-template .breadcrumb a:hover {
  color: var(--hover);
}

/* IMAGENS */

.page-template .template-imagens {
  display: flex;
  flex-direction: column;

  align-items: center;

  gap: 120px;

  margin-top: 150px;
}

.page-template .template-imagens img {
  width: 100%;
  max-width: 1200px;

  height: auto;

  display: block;
}

/* DESCRIÇÃO */

.page-template .template-info {
  max-width: 1200px;

  margin-top: 50px;
}

.page-template .descricao {
  margin-left: auto;

  text-align: right;
}

.page-template .descricao p {
  font-size: 12px;

  line-height: 1.7;

  color: #999;
}

/* NAVEGAÇÃO */

.page-template .template-nav {
  display: flex;

  justify-content: space-between;

  max-width: 1200px;

  margin-top: 60px;
  padding-bottom: 60px;
}

.page-template .template-nav a {
  font-size: 14px;

  color: #999;

  transition: color 0.2s ease;
}

.page-template .template-nav a:hover {
  color: var(--hover);
}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 768px) {

  /* BREADCRUMB */

  .page-template .breadcrumb {
    display: none;
  }

  /* IMAGENS */

  .page-template .template-imagens {
    gap: 40px;

    margin-top: 0;
  }

  .page-template .template-imagens img {
    width: 100%;
  }

  /* DESCRIÇÃO */

  .page-template .template-info {
    margin-top: 40px;
  }

  .page-template .descricao {
    text-align: left;

    margin-left: 0;
  }

  .page-template .descricao p {
    font-size: 11px;
  }

  /* NAVEGAÇÃO */

  .page-template .template-nav {
    width: 100%;

    margin-top: 72px;

    gap: 20px;
  }

  .page-template .template-nav a {
    font-size: 12px;
  }

}