@charset "UTF-8";
/*
Theme Name: Holz Arq
Theme URI: https://mirante.desig
Author: Rafael Miranda
Author URI: https://mirante.desig
Description: Tema para o site Holz Arq
Requires at least: 4.9.6
Requires PHP: 5.2.4
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: holzarq
*/



/* Variables */
:root {
  --font-lato: 'Lato', sans-serif;
  --font-size: 18px;
  --font-wheight: 400;
  --color-dark: #727272;
  --color-light: #fff;
  --transition-dur: 0.3s;
}

/* Typography */
body {
  font-family: var(--font-lato);
  font-size: var(--font-size);
  font-weight: var(--font-wheight);
  color: var(--color-dark);
  text-rendering: optimizeLegibility;
}
a {
  text-decoration: none;
  color: var(--color-dark);
  transition: var(--transition-dur);
}
a:hover {
  text-decoration: underline;
  color: var(--color-dark);
}
a:active {
  text-decoration: underline;
  color: var(--color-dark);
}
a.link-ativo {
  text-decoration: underline;
}
h1, h2, h3 {
  font-weight: 300;
  font-size: 1.75rem;
}

/* header */
.header-style {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 1210px;
}
.logo {
    display: block;
}
.nav-topo {
  display: flex;
  width: 240px;
  align-items: flex-end;
  margin-bottom: 38px;
}
.nav-topo-ul {
  display: flex;
  flex-direction: column;
}
.nav-topo-li {
  margin-top: 19px;
  margin-right: 19px;
}

@media screen and (max-width: 1200px) {
  .nav-topo {
    width: 140px;
  }
}

@media screen and (max-width: 992px) {
  .nav-topo {
    width: 140px;
  }
}

@media screen and (max-width: 768px) {
  .header-style {
    flex-direction: column;
    width: 100%;
  }
  .nav-topo {
    width: 100%;
    padding-left: 12px;
  }
  .logo {
    align-self: flex-end;
  }
  .nav-topo-ul {
    flex-direction: row;
  }
}

@media screen and (max-width: 576px) {

}


/*homepage*/

h1.frase-lina {
  text-align: right;
  margin: 40px 0;
}
.span-lina {
  font-size: 1.5rem;
}

.slider-home {
  width: 1210px;
  height: 680px;
  background-color: var(--color-dark);
}
.carousel-item img {
  height: 680px;
  object-fit: cover;
}

/*
.carousel-control-next, .carousel-control-prev {
  width: 50%;
  opacity: 0;
}
.carousel-control-next-icon, .carousel-control-prev-icon {
}
*/

.texto-home {
  margin: 180px 0;
  width: 570px;
}

.projetos-home {
  width: 1210px;
  height: auto;
  background-color: var(--color-dark);
  margin-bottom: 30px;
  position: relative;
}
.projetos-home img {
  height: 680px;
  object-fit: cover;
}
.botao-projeto-nome {
  display: block;
  position: absolute;
  z-index: 2;
  width: 1210px;
  height: 680px;
  display: flex;
  align-items: center;
  transition: var(--transition-dur);
  opacity: 0%;
}
.botao-projeto-nome p {
  color: var(--color-light);
  font-size: 1.75rem;
  font-weight: 300;
  text-align: center;
  display: block;
  width: 100%;
}
.botao-projeto-filtro {
  display: block;
  position: absolute;
  z-index: 1;
  width: 1210px;
  height: 680px;
  background-color: var(--color-dark);
  transition: var(--transition-dur);
  opacity: 0%;
}
a.botao-projeto-home:hover .botao-projeto-filtro {
  opacity: 90%;
}
a.botao-projeto-home:hover .botao-projeto-nome {
  opacity: 100%;
}


@media screen and (max-width: 1200px) {
  .slider-home {
    width: 96vw;
    height: 56vw;
  }
  .carousel-item img {
    height: 56vw;
    object-fit: cover;
  }
  .projetos-home {
    width: 100vw;
  }
  .botao-projeto-nome {
    width: 100vw;
  }
  .botao-projeto-filtro {
    width: 100vw;
  }
}

@media screen and (max-width: 992px) {
}

@media screen and (max-width: 768px) {
  h1.frase-lina {
    text-align: left;
    margin: 40px 10px;
  }
  .texto-home {
    margin: 66px 10px;
  }
}

@media screen and (max-width: 576px) {
  .slider-home {
    width: 96vw;
    height: 96vw;
  }
  .carousel-item img {
    height: 96vw;
    width: auto !important;
    left: -25%;
    position: relative;
  }
  .projetos-home {
    width: 100vw;
    height: 80vw;
    background-color: var(--color-dark);
    margin-bottom: 30px;
  }
  .projetos-home img {
    width: auto !important;
    height: 100%;
  }
  .botao-projeto-nome {
    width: 100vw;
    height: 80vw;
  }
  .botao-projeto-filtro {
    width: 100vw;
    height: 80vw;
  }
}

/*footer*/
.footer-container{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 1210px;
  margin-left: auto;
  margin-right: auto;
}

.holz-footer {
  height: 740px;
  padding: 30px;
}
.footer-menu {
  margin-top: 385px;
  margin-left: 150px;
  display: block;
}
.nav-footer-li {
  margin-right: 30px;
}

.logo-footer {
  display: block;
  margin-top: 130px;
  margin-right: 75px;
}
.footer-contatos {
  text-align: right;
  margin-right: 30px;
}

@media screen and (max-width: 768px) {
  .footer-menu {
    display: none;
  }
  .logo-footer {
    margin-top: 130px;
    margin-right: 0px;
  }
  .footer-container{
    justify-content: flex-end;
    margin-left: auto;
    margin-right: auto;
  }
  .holz-footer {
    height: 75vh;
    padding: 0px;
  }
}

@media screen and (max-width: 576px) {
}

/*página projetos*/
.grid-projetos-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 1134px;
  margin: auto;
}
.grid-projetos {
  padding: 0px;
  width: 372px;
  height: 372px;
  margin: 3px;
}
.grid-projetos img {
  width: 372px;
  height: 372px;
  object-fit: cover;
}


.botao-projetos-grid-nome {
  display: block;
  position: absolute;
  z-index: 2;
  width: 372px;
  height: 372px;
  display: flex;
  align-items: center;
  transition: var(--transition-dur);
  opacity: 0%;
}
.botao-projetos-grid-nome p {
  color: var(--color-light);
  font-size: 1.75rem;
  font-weight: 300;
  text-align: center;
  display: block;
  width: 100%;
}
.botao-projetos-grid-filtro {
  display: block;
  position: absolute;
  z-index: 1;
  width: 372px;
  height: 372px;
  background-color: var(--color-dark);
  transition: var(--transition-dur);
  opacity: 0%;
}
a.botao-projeto-home:hover .botao-projetos-grid-filtro {
  opacity: 90%;
}
a.botao-projeto-home:hover .botao-projetos-grid-nome {
  opacity: 100%;
}



@media screen and (max-width: 768px) {
  .grid-projetos-container {
    width: 100vw;
  }
  .grid-projetos {
    width: 100vw;
    height: 80vw;
    margin: 15px;
  }
  .grid-projetos img {
    width: 100vw;
    height: 80vw;
    object-fit: cover;
  }
  .botao-projetos-grid-nome {
    width: 100vw;
    height: 80vw;
  }
  .botao-projetos-grid-filtro {
    width: 100vw;
    height: 80vw;
  }
}

/*página sobre*/
.sobre-conteudo {
  width: 1160px;
}
.sobre-como-trabalhamos, .sobre-katia-holz {
  width: 570px;
  margin: 0 0 0 240px;
}
.margem-top {
  margin-top: 60px;
}

.txt-katia-layout-texto {
  margin-left: 240px;
  margin-right: 0;
  display: flex;
  flex-direction: row;
}
.txt-katia-layout-texto-p {
  width: 370px;
}
.txt-katia-layout-img {
  margin: 0px 0px 0px 35px;
}
.txt-katia-layout-img {
  height: auto;
}
.foto-sobre-katia {
  width: 310px;
}
@media screen and (max-width: 768px) {
  .sobre-conteudo {
    width: 100vw;
  }
  .sobre-como-trabalhamos, .sobre-katia-holz {
    width: 570px;
    margin: auto;
  }
  .txt-katia-layout-texto {
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    display: flex;
    flex-direction: column-reverse;
  }
  .txt-katia-layout-texto-p {
    width: 570px;
    margin: auto;
  }
  .txt-katia-layout-img {
    margin: -40px 30px 30px auto;
  }
  .txt-katia-layout-img {
  }
  .foto-sobre-katia {
    width: 340px;
  }
}

@media screen and (max-width: 576px) {
  .sobre-como-trabalhamos, .sobre-katia-holz {
    width: auto;
    margin: 0px 10px;
  }
  .txt-katia-layout-img {
    margin: 30px auto;
  }
  .margem-top {
    margin-top: 40px;
  }
  .foto-sobre-katia {
    width: 90vw;
  }
  .txt-katia-layout-texto-p {
    width: auto;
    margin: 0 10px;
  }
}

/*páginas de projetos */

.projeto-header {
  width: 1210px;
  margin: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 60px;
  margin-bottom: 30px;
}
.projeto-titulo, .projeto-description {
  display: block;
}
.projeto-titulo {
  margin-left: 180px;
}
.projeto-description {
  margin-left: 180px;
  margin-top: 7px;
}
.projeto-imagens {
  width: 1210px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
}
.projeto-img-horizontal {
  margin-bottom: 60px;
  width: 1210px;
  height: 806px;
}
.projeto-img-horizontal img {
  width: 1210px;
  height: 806px;
  object-fit: cover;
}
.projeto-img-vertical {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.projeto-img-vertical img {
  width: 488px;
  height: 710px;
  margin-right: 30px;
  margin-bottom: 60px;
  object-fit: cover;
}
.projeto-footer {
  width: 1210px;
  margin: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 60px;
  margin-bottom: 30px;
  padding-left: 180px;
}
.projeto-footer-esquerda, .projeto-footer-direita {
  width: 50%
}

@media screen and (max-width: 1200px) {
  .projeto-header {
    width: 96vw;
  }
  .projeto-imagens {
    width: 96vw;
  }
  .projeto-img-horizontal {
    width: 96vw;
    height: 64vw;
  }
  .projeto-img-horizontal img {
    width: 96vw;
    height: 64vw;
  }
  .projeto-img-vertical img {
    width: 440px;
    height: 640px;
    margin-right: auto;
    margin-left: auto;
  }
  .projeto-footer {
    width: 96vw;
    margin: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 60px;
    margin-bottom: 30px;
    padding-left: 30px;
  }
  .projeto-footer-esquerda, .projeto-footer-direita {
    width: 50%
  }
}

@media screen and (max-width: 992px) {
  .projeto-header {
    flex-direction: column;
  }
  .projeto-titulo {
    margin-left: 0px;
  }
  .projeto-description {
    margin-left: 0;
    margin-top: 7px;
  }

}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 576px) {
  .projeto-header {
    width: 96vw;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .projeto-page {
    padding: 0
  }
  .projeto-imagens {
    width: 100vw;
  }
  .projeto-imagens {
    width: 100vw;
  }
  .projeto-img-horizontal {
    width: 100vw;
    height: 66vw;
    padding: 0;
  }
  .projeto-img-horizontal img {
    width: 100vw;
    height: 66vw;
  }
  .projeto-img-vertical img {
    width: 96vw;
    height: 140vw;
  }
  .projeto-footer {
    width: 96vw;
    flex-direction: column;
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 0 12px;
  }
  .projeto-footer-esquerda, .projeto-footer-direita {
    width: 100%
  }

}
