/*
Theme Name: SW arquitetura e planejamento urbano
Theme URI: https://www.swarq.com.br
Author: H5 WEB
Author URI: https://www.h5web.com.br
Description: A custom website theme for the SW project.
Requires at least: 5.6
Tested up to: 5.9
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sewarquitetos.com.br
Tags: one-column, custom-menu, custom-logo, theme-options
*/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
strong {
  font-weight: 800;
}

/* icons */
@font-face {
  font-family: 'icomoon';
  src:  url('fonts/icomoon.eot?55kphb');
  src:  url('fonts/icomoon.eot?55kphb#iefix') format('embedded-opentype'),
    url('fonts/icomoon.ttf?55kphb') format('truetype'),
    url('fonts/icomoon.woff?55kphb') format('woff'),
    url('fonts/icomoon.svg?55kphb#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-phone-hang-up:before {
  content: "\e943";
}
.icon-facebook2:before {
  content: "\ea91";
}
.icon-instagram:before {
  content: "\ea92";
}
.icon-linkedin:before {
  content: "\eac9";
}


/* style */
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.container {
  display: grid;
  grid-template-columns: 7% repeat(6, 1fr) 7%;
  column-gap: 6px;
}

input,
select,
textarea,
button,
#filtros a.filtro {
  width: 100%;
  border-radius: 3px;
}

input,
select,
textarea {
  padding: 7px 5px;
  border: solid 1px #ccc;
}

button, #filtros a.filtro {
  border: none;
  padding: 10px 5px;
}

#filtros a.filtro {
  text-decoration: none;
  color: var(--cor-preto);
  display: inline-block;
  background: #f0f0f0;
}

input,
select,
textarea,
h1,
h2,
h3,
h4 {
  margin-bottom: 15px;
}

h5,
h6 {
  margin-bottom: 5px;
}

p {
  line-height: 130%;
}

img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: inline-block;
}

:root {
  --cor-base1: #618a9e;
  --cor-preto: #000000;
  --cor-branco: #ffffff;
  --cor-cinza: #e6e6e6;
}

/* menu */
.navigation.open {
  opacity: 0.9;
  visibility: visible;
  -moz-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.menu-principal ul a {
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cor-branco);
  display: inline-block;
  padding: 5px;
}

.menu-principal ul li {
  margin: 8px 0;
}

.nav-toggle {
  display: none;
  height: 39px;
  overflow: hidden;
  position: relative;
  text-indent: 200%;
  white-space: nowrap;
  width: 39px;
  z-index: 99999;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  grid-column: 2 / 3;
  align-self: center;
  justify-self: end;
  margin-bottom: 0;
  background: transparent;
}

.nav-toggle:before,
.nav-toggle:after {
  background-color: var(--cor-base1);
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
}

.nav-toggle:before {
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.nav-toggle.close-nav:before {
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -webkit-transform: scale(0);
  transform: scale(0);
}

.nav-toggle:after {
  background-color: var(--cor-base1);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -webkit-transform: scale(0);
  transform: scale(0);
  -moz-transition-duration: 0s;
  -o-transition-duration: 0s;
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}

.nav-toggle.close-nav:after {
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}

.nav-toggle span {
  background-color: #fff;
  bottom: auto;
  display: inline-block;
  height: 3px;
  left: 50%;
  position: absolute;
  right: auto;
  top: 50%;
  width: 18px;
  z-index: 10;
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.nav-toggle.close-nav span {
  background-color: rgba(255, 255, 255, 0);
}

.nav-toggle span:before,
.nav-toggle span:after {
  background-color: #fff;
  content: '';
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-transition: -moz-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
}

.nav-toggle span:before {
  -moz-transform: translateY(-6px) rotate(0deg);
  -ms-transform: translateY(-6px) rotate(0deg);
  -webkit-transform: translateY(-6px) rotate(0deg);
  transform: translateY(-6px) rotate(0deg);
}

.nav-toggle span:after {
  -moz-transform: translateY(6px) rotate(0deg);
  -ms-transform: translateY(6px) rotate(0deg);
  -webkit-transform: translateY(6px) rotate(0deg);
  transform: translateY(6px) rotate(0deg);
}

.nav-toggle.close-nav span:before,
.nav-toggle.close-nav span:after {
  background-color: var(--cor-branco);
}

.nav-toggle.close-nav span:before {
  -moz-transform: translateY(0) rotate(45deg);
  -ms-transform: translateY(0) rotate(45deg);
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}

.nav-toggle.close-nav span:after {
  -moz-transform: translateY(0) rotate(-45deg);
  -ms-transform: translateY(0) rotate(-45deg);
  -webkit-transform: translateY(0) rotate(-45deg);
  transform: translateY(0) rotate(-45deg);
}

#menu-secundario {
  padding-left: 15px;
}

body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--cor-preto);
}

.roboto-regular {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-bold {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-style: normal;
}

.roboto-regular-italic {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-style: italic;
}

.roboto-bold-italic {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-style: italic;
}

#header {
  background: var(--cor-base1);
  color: #fff;
  padding: 10px 0 1px;
  position: relative;
}

#header .logo {
  grid-column: 2 / span 2;
}

#header:after {
  display: block;
  content: '';
  height: 2px;
  width: 100%;
  background-color: var(--cor-branco);
  margin-top: 2px;
}

#miolo {
  padding-bottom: 50px;
}

/* banner home */
#banner img {
  grid-column: span 8;
}

h1 {
  font-size: clamp(1.875rem, 1.25rem + 1.5625vw, 2.625rem);
  color: var(--cor-base1);
}

.internas h2 {
    font-size: clamp(1.2rem, 1.22rem + 1.5625vw, 1.8rem);
    color: var(--cor-base1);
}

p {
  margin-bottom: 20px;
  line-height: 150%;
}

#quem-somos {
  padding: 25px 0;
}

#quem-somos h1,
#quem-somos p {
  grid-column: 2 / span 6;
}

#quem-somos p {
    font-size: clamp(0.875rem, 0.5rem + 1.5625vw, 1.25rem);
}

#contato form {
  margin: 0 auto;
  padding: 0 15px;
}

i.icon-phone-hang-up {
  color: var(--cor-base1);
}

/* destaques grid home */
#destaques-grid .row {
  grid-column: 2 / span 6;
}

.grid .row > div {
  position: relative;
}

#destaques-grid .row > div {
  margin-bottom: 25px;
}

#destaques-grid .grid-info {
  position: absolute;
  bottom: 0;
  padding: 15px;
  background: #ffffffc2;
  font-size: 0.85em;
}

.grid .grid-info h2 {
  text-transform: uppercase;
}

.grid h2,
.grid p {
  margin-bottom: 0;
}

.grid .row a {
  color: var(--cor-preto);
  text-decoration: none;
}

.grid .row .img {
  overflow: hidden;
}

.grid img {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  transition-duration: 0.7s;
  display: block;
}

.grid .row .img:hover img {
  transform: scale(1.1);
}

/* projetos grid */
#filtros ul {
  grid-column: 2 / span 6;
  display: flex;
  gap: 10px;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 25px 0;
}

button.filtro,
#filtros a.filtro {
  cursor: pointer;
  transition: all ease 0.2s;
  font-size: clamp(0.875rem, 0.5rem + 1.5625vw, 1.125rem);
}

.filtro.on,
.filtro:active,
.filtro:hover,
.filtro.ativo,
.tag-comercial #filtros a.comercial,
.tag-institucional #filtros a.institucional,
.tag-residencial-multifamiliar #filtros a.residencial-multifamiliar,
.tag-residencial-unifamiliar #filtros a.residencial-unifamiliar,
.tag-masterplan-loteamento #filtros a.masterplan-loteamento
{
  background-color: var(--cor-base1);
  color: var(--cor-branco);
}

#projetos-grid .col.off {
  display: none;
}

#projetos-grid .row {
  grid-column: 2 / span 6;
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}

#projetos-grid .row.filtrado {
  justify-content: flex-start;
}

#projetos-grid .grid-info {
  position: absolute;
  top: 50%;
  padding: 10px 15px;
  background: #ffffffc2;
  font-size: 0.85em;
  width: 100%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all ease 0.5s;
}

#projetos-grid .img:hover img {
  filter: sepia(100%) hue-rotate(190deg) saturate(700%);
  transform: scale(1.1);
}

#projetos-grid .img:hover .grid-info {
  opacity: 1;
}

#projetos-grid.grid .row .img {
    max-height: 423px;
    aspect-ratio: 1 / 1;
}

/* detalhe */
body.single-post #miolo {
  padding-bottom: 0;
}

.banner-projeto {
  max-height: 40vh;
  overflow: hidden;
}

.banner-projeto img {
  grid-column: span 8;
}

.banner-projeto img {
  width: 100%;
  height: 40vh;
  object-fit: cover;
  object-position: 100% 50%;
}

.info {
  padding: 25px 0;
}

.info .col1,
.info .col2 {
  grid-column: 2 / span 6;
}

.info p {
  font-size: clamp(0.875rem, 0.5rem + 1.5625vw, 1.125rem);
}

.info a {
  color: var(--cor-base1);
}

.ficha, .lista-dos-projetos, .veja-mais {
  margin-bottom: 60px;
}

#projetos.lista-dos-projetos {
  margin-top: 60px;
  margin-bottom: 0;
}

.ficha .wrap {
  grid-column: span 8;
  background-color: #d7e2e6;
  padding: 25px 7%;
}

.ficha h2, .lista-dos-projetos h2 {
  font-size: clamp(1rem, 0.5rem + 1.5625vw, 1.375rem);
}

.ficha p, .lista-dos-projetos p {
  font-size: clamp(0.875rem, 0.5rem + 1.5625vw, 1.125rem);
  margin-bottom: 5px;
}

.lista-dos-projetos .wrap {
    grid-column: span 12;
    text-align: center;
    /*background-color: #d7e2e6;*/
    padding: 25px 7%;
}

.lista-dos-projetos a {
    color: var(--cor-base1);
}

.veja-mais {
  grid-column: span 8;
  background-color: #ebf0f2;
  padding-top: 35px;
  padding-bottom: 35px;
}

.veja-mais .row {
  grid-column: 2 / span 6;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-around;
}

.veja-mais h2 {
  font-size: clamp(1.125rem, 0.5rem + 1.5625vw, 1.625rem);
  color: var(--cor-base1);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
  width: 100%;
}

.veja-mais .col {
  width: calc(50% - 15px);
}

.veja-mais .row .img {
  overflow: hidden;
}

.veja-mais img {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  transition-duration: 0.7s;
  display: block;
}

.veja-mais .img:hover img {
  transform: scale(1.1);
}

.fotos .fotos-carousel {
  grid-column: span 8;
  padding: 0 7% 60px;
}

.fotos-carousel_item {
  padding: 0 15px;
}

.fotos .slick-slide img {
  max-height: 250px;
}

.fotos .slick-dots {
  bottom: 10px;
  margin-left: -7%;
}

.fotos .slick-dots li.slick-active button:before {
  opacity: 1;
  color: var(--cor-base1);
}

.fotos .slick-dots li button:before {
  font-size: 15px;
}

/* internas */
.internas .inner {
  grid-column: 2 / span 6;
  display: flex;
  gap: 10px;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 25px 0;
}

/* contato */
#contato input,
#contato select,
#contato textarea {
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 25px;
  text-transform: uppercase;
  color: #303030;
  font-size: 0.85em;
}

#contato {
  margin-bottom: 25px;
}

#contato a {
  font-weight: 600;
  text-decoration: none;
}

#contato p {
  margin-bottom: 25px;
}

#contato .col1 {
  margin-bottom: 25px;
}

/* lista projetos */
.lista-projetos.wp-block-table {
    width: 100%;
    height: 100vh;
    overflow-x: auto;
    position: relative;
    font-size: .85em;
}

.lista-projetos.wp-block-table table {
    position: absolute;
}

.lista-projetos.wp-block-table td, .lista-projetos.wp-block-table th {
	border: none;
    padding: .5em;
}

.lista-projetos.wp-block-table th {
    background: var(--cor-base1);
    color: var(--cor-branco);
    vertical-align: middle;
}

.lista-projetos.wp-block-table tr:nth-child(odd) td {
    background: #d4e5ef;
}

.lista-projetos.wp-block-table td:nth-child(1),
.lista-projetos.wp-block-table td:nth-child(3),
.lista-projetos.wp-block-table td:nth-child(4) {
	text-align: center;
}

.lista-projetos.wp-block-table th:nth-child(2),
.lista-projetos.tipo-2.wp-block-table th:nth-child(3),
.lista-projetos.tipo-2.wp-block-table td:nth-child(3) {
	text-align: left;
}

/* footer */
#footer {
  background-color: var(--cor-cinza);
}

#footer address, #footer .midias {
  grid-column: 2 / span 6;
}

#footer address {
  font-size: clamp(0.875rem, 0.5rem + 1.5625vw, 1.125rem);
}

#footer .midias {
  padding: 25px 0;
}

#footer address p, #footer .midias {
    text-align: center;
}

#footer a.icon {
  color: var(--cor-base1);
  text-decoration: none;
  font-size: 1.5em;
  margin: 0 5px;
}

#footer a.icon span {
  display: none;
}

form.init .bt-enviar {
    background: var(--cor-base1);
    border: 0;
    color: #fff;
    padding: 15px 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  #header .logo {
    grid-column: 2 / span 4;
  }
}

@media screen and (min-width: 768px) {
  #miolo {
    padding-bottom: 100px;
  }

  #quem-somos {
    padding: 70px 0;
  }

  #destaques-grid .grid-info,
  #projetos-grid .grid-info {
    font-size: 1em;
  }

  #destaques-grid .row {
    grid-column: 2 / span 6;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 15px;
  }

  #destaques-grid .row:nth-child(odd) > .col1,
  #destaques-grid .row:nth-child(even) > .col2 {
    grid-column: span 4;
  }

  #destaques-grid .row:nth-child(even) > .col1,
  #destaques-grid .row:nth-child(odd) > .col2 {
    grid-column: span 8;
  }

  #footer address, #footer .midias {
	grid-column: 2 / span 12;
  }

  #footer .midias {
	padding-top: 60px;
	grid-column: 2 / span 12;
  }

  #footer address {
	padding-bottom: 60px;
  }

  /* projetos grid */
  #filtros ul {
    flex-direction: row;
  }

  #projetos-grid .row {
    flex-direction: row;
    column-gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
  }

  #projetos-grid .row .img {
    width: calc(50% - 25px);
  }

  /* detalhe */
  .info {
    padding: 70px 0;
  }
}

@media screen and (max-width: 1024px) {
  .nav-toggle {
    display: block;
    grid-column: 7 / span 1;
  }

  .navigation {
    position: absolute;
    background-color: var(--cor-base1);
    width: 100%;
    top: 100%;
    left: 0;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.5s, visibility 0s 0.5s;
    transition: opacity 0.5s, visibility 0s 0.5s;
    padding: 15px;
  }
}

@media screen and (min-width: 1024px) {
  #header {
    height: 150px;
  }

  #header:after {
    position: absolute;
    bottom: 2px;
  }

  #header .container {
    align-items: center;
    height: 100%;
  }

  .container {
    grid-template-columns: 8% repeat(12, 1fr) 8%;
    column-gap: 8px;
  }

  #header .logo {
    grid-column: 2 / span 5;
  }

  #header .logo img {
    max-width: 504px;
  }

  .nav-toggle {
    display: none;
  }

  .navigation {
    opacity: 1;
    visibility: visible;
    position: initial;
    grid-column: 9 / span 5;
    padding: 0;
  }

  .menu-principal ul li {
    position: relative;
  }

  .menu-principal ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-around;
  }

  .menu-principal ul a,
  .menu-secundario a {
    transition: all 0.2s ease;
  }

  .menu-principal ul li:hover > a,
  .menu-secundario a:hover {
    color: #6bceff;
  }

  #menu-secundario {
    margin-left: -10px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 25px;
    position: absolute;
    background-color: #ffffffc7;
    text-align: center;
    display: none;
  }

  .menu-principal ul > li:hover #menu-secundario {
    display: block;
  }

  .menu-secundario a {
    line-height: 130%;
  }

  /* banner */
  #banner img {
    grid-column: span 14;
  }

  #quem-somos h1,
  #quem-somos p {
    grid-column: 2 / span 9;
  }

  /* destaques grid home */
  #destaques-grid .row {
    grid-column: 2 / span 12;
  }

  #destaques-grid img {
    height: 100%;
  }

  /* projetos grid */
  #filtros ul {
    grid-column: 2 / span 12;
    justify-content: center;
    padding-top: 35px;
    padding-bottom: 35px;
  }
  #filtros button,
  #filtros a.filtro {
    padding-left: 15px;
    padding-right: 15px;
  }

  #filtros a.filtro {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  #filtros a.filtro:hover {
    background: var(--cor-base1);
    color: var(--cor-branco);
  }

  #projetos-grid .row {
    grid-column: 2 / span 12;
  }

  #projetos-grid .row .img {
    width: calc(33.333% - 25px);
  }

  /* detalhe */
  .banner-projeto {
    max-height: 50vh;
  }

  .banner-projeto img {
    grid-column: span 14;
    height: 50vh;
  }

  .info .col1 {
    grid-column: 2 / span 5;
  }

  .info .col2 {
    grid-column: 8 / span 6;
  }

  .ficha .lista-dos-projetos {
    margin-bottom: 80px;
  }

  .ficha .wrap {
    padding: 60px 8%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 15px;
    justify-content: space-between;
  }

  .ficha .wrap, .lista-dos-projetos .wrap {
    grid-column: 2 / span 12;
  }

  .ficha h2, .lista-dos-projetos h2 {
    width: 100%;
  }

  .ficha .col {
    width: calc(33.333% - 15px);
  }
  
  /*.lista-dos-projetos .col {
    width: calc(50% - 15px);
  }*/

  .veja-mais {
    padding: 60px 8% 100px;
  }

  .veja-mais .row {
    grid-column: 2 / span 12;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
  }

  .veja-mais .col {
    width: calc(25% - 25px);
  }

  .veja-mais h2 {
    margin-bottom: 25px;
  }

  .fotos .fotos-carousel {
    grid-column: 2 / span 12;
    padding: 0 0 80px;
  }

  .fotos .slick-slide img {
    max-height: 600px;
  }

  .fotos .slick-track {
    display: flex;
    align-items: center;
  }

  .fotos .slick-prev:before,
  .fotos .slick-next:before {
    font-family: none;
    font-size: 70px;
    color: var(--cor-base1);
  }

  .fotos .slick-next,
  .fotos .slick-prev {
    height: 70px;
    transform: translateY(-100%);
  }

  .fotos .slick-prev:before {
    content: '❬';
  }

  .fotos .slick-next:before {
    content: '❭';
  }

  .fotos .slick-prev {
    left: -45px;
  }

  .fotos .slick-next {
    right: -45px;
  }

  .fotos .slick-dots {
    margin-left: 0;
  }

  /* internas */
  .internas .inner {
    grid-column: 4 / span 8;
    justify-content: center;
    padding-top: 35px;
    padding-bottom: 35px;
  }

  /* contato */
  #contato .col1 {
    margin-bottom: 0;
  }

  #contato .col1,
  #contato .col2 {
    width: 50%;
  }

  #contato .col2 {
    margin-left: 0;
  }
  
  /* lista projetos */
  .lista-projetos.wp-block-table {
    height: auto;
    overflow-x: initial;
    font-size: 1em;
  }
  
  .lista-projetos.wp-block-table table {
    position: relative;
  }
}

@media screen and (min-width: 1366px) {
  /* banner home */
  #banner {
    /*height: calc(100vh - 150px);*/
    overflow: hidden;
  }

  #quem-somos h1,
  #quem-somos p {
    grid-column: 2 / span 7;
  }

  #quem-somos,
  .grid,
  #footer .container {
    max-width: 1600px;
    margin: 0 auto;
  }

  #destaques-grid .row {
    column-gap: 25px;
  }

  #destaques-grid .row > div {
    margin-bottom: 25px;
  }

  #destaques-grid .grid-info {
    min-width: 340px;
  }

  /* detalhe */
  .banner-projeto {
    max-height: 60vh;
  }

  .banner-projeto img {
    height: 60vh;
  }

  .fotos .container {
    grid-template-columns: 3% repeat(12, 1fr) 3%;
  }
  
  form.init {
	display: flex;
	flex-wrap: wrap;
	column-gap: 20px;
  }
  
  form.init .bt-enviar {
    max-width: 260px;
  }
}
