@import "../css/fonts.css";

body {
	font-size: 1rem;
}

section {
	width: 100%;
	height: 100%;
}

.section-title {
  font: normal 50px "Gotham-Bold",Helvetica,Arial;
  margin-bottom: 20px;
  text-align: center;
}

/* NAVBAR */
.navbar {
	background-color: #0b0b0b;
}

.navbar-expand-md .navbar-nav .nav-link {
	padding: 0 20px;
}

.navbar .navbar-nav .nav-link {
	color: #fff;
  font: normal 14px "CenturyGothic",Helvetica,Arial;
}

.navbar .navbar-nav .nav-link:hover {
	text-decoration: underline;
	color: #fff;
}

@media (min-width: 768px) {
  .navbar-expand-md .navbar-nav {
      align-items: center;
  }  
}

@media (max-width: 991px) {
	.navbar-expand-md .navbar-nav .nav-link {
		padding: 0 10px;
	}	
}

.navbar .collapse .lang-item {
  padding: 0 3px;
}

.navbar-collapse.show {
  border-top: 1px solid #fff;
}

.navbar-collapse.show .navbar-nav {
  margin-top: .5rem;
}

.navbar-collapse.show .navbar-nav .nav-item {
  line-height: 200%;
}

.navbar-collapse.show .navbar-nav .nav-item .nav-link {
  font: normal 18px "CenturyGothic",Helvetica,Arial;
  padding: 8px 0;
}
    

/* SECTION HOME */
section.home {
	height: 100vh;
	background: url(/img/bg-home.jpg) center 0px/cover;
}

section.home .section-title {
  color: #fff;
  font: normal 40px "CenturyGothic",Helvetica,Arial;
  text-align: center;
  margin: 0 0 100px 0;
}

/* SECTION SPRING */
section.spring {
	padding: 155px 0 245px;
	color: #9c9c9c;
	font: normal 14px "CenturyGothic",Helvetica,Arial;
	line-height: 160%;	
}

@media (max-width: 576px) {
	section.spring {
	  padding: 50px 0;
	}
	section.spring img {
	  margin-bottom: 50px;
	}		
}

section.spring strong {
  font-family: "CenturyGothic-Bold",Helvetica,Arial;
  font-size: 44px;
  text-transform: uppercase;
}

/* SECTION SERVIÇOS */
section.servicos {
  background-color: #2265b0;
  color: #fff;
  padding: 120px 0 42px 0;
  font: normal 14px "CenturyGothic",Helvetica,Arial;
}

.servicos p {
	margin-bottom: 40px;
}

.servicos .card-item {
  width: 100%;
  min-height: 245px;
  border-radius: 15px;
  border: 1px solid #fff;
  margin-bottom: 28px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.servicos .card-item .item-text {
  background-color: #fff;
  color: #2265b0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 25px;
  opacity: 0;
  cursor: pointer;
}

.servicos .card-item h3 {
  font: normal 18px "CenturyGothic",Helvetica,Arial;
  max-width: 170px;
  text-align: center;
  margin-top: 24px;
  height: 45px;
}

.servicos .card-item .item-text h3 {
  font: normal 18px "CenturyGothic-Bold",Helvetica,Arial;
  margin: 0;
  max-width: 100%;
  text-align: left;
  height: auto;	
}

.servicos .card-item .item-text p {
	font: normal 12px "CenturyGothic",Helvetica,Arial;
  margin-bottom: 0;
}

.servicos .card-item:hover .item-text {
	opacity: 1;
	transition: all .5s;
}

/* SECTION TRABALHOS */
section.trabalhos {
  background-color: #e7eef7;
  padding: 120px 0 140px 0;
}

.trabalhos .section-title {
  color: #2b2b2b;
  margin: 0 0 30px 0;
}

.trabalhos .trabalhos-menu {
  text-align: center;
  margin-bottom: 50px;
}

.trabalhos .trabalhos-menu li {
  margin: 0;
}

.trabalhos .trabalhos-menu li a {
  font: normal 16px "GothamBook",Helvetica,Arial;
  color: #2b2b2b;
  padding: 0 8px;
  border-right: 1px solid #2b2b2b;
}

.trabalhos .trabalhos-menu li:last-child a {
  border: none;
}

.trabalhos .trabalhos-menu li a.active {
  color: #2265b0;
}

.trabalhos .trabalhos-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}

@media (max-width: 992px) {
  section.trabalhos .trabalhos-wrap {
    grid-template-columns: repeat(3, 1fr);
  }  
}

@media (max-width: 768px) {
  section.trabalhos .trabalhos-wrap {
    grid-template-columns: repeat(2, 1fr);
  }  
}

@media (max-width: 576px) {
  section.trabalhos .trabalhos-wrap {
      grid-template-columns: 1fr;
  }  
}

.trabalhos .trabalhos-wrap .photo-item {
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  min-height: auto;
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;  
}

.trabalhos .trabalhos-wrap .photo-item .photo-text {
  background-color: #2265b0;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 25px;
  opacity: 0;
  cursor: pointer;  
}

.trabalhos .trabalhos-wrap .photo-item .photo-text h3 {
  font: normal 24px "CenturyGothic-Bold",Helvetica,Arial;
  margin: 0;
  max-width: 100%;
  text-align: left;
  height: auto;
}

.trabalhos .trabalhos-wrap .photo-item .photo-text p {
  font-size: 12px;
  font: normal 12px "CenturyGothic",Helvetica,Arial;
  margin-bottom: 0;
}

.trabalhos .trabalhos-wrap .photo-item:hover .photo-text {
  opacity: 1;
  transition: all .5s;
}

/* SECTION CLIENTES */
section.clientes {
  padding: 120px 0 40px 0;
}

.clientes .section-title {
  color: #313130;
  margin: 0 0 40px 0;
}

.clientes .img-clientes-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

@media (max-width: 576px) {
	.clientes .img-clientes-wrap {
	  flex-direction: column;
	}	
}

.clientes .img-clientes-wrap img.img-clientes {
  margin: 20px 14px;
  max-width: 90%;
}
@media (max-width: 768px) {
	.clientes .img-clientes-wrap img.img-clientes {
	  margin: 20px;
	}	
}

@media (max-width: 1200px) {
	.clientes .img-clientes-wrap img.img-clientes {
	  max-width: 80%;
	}	
}

/* SECTION CONTATO */
section.contato {
  background: #fff url(../img/bg-contato.jpg) no-repeat center center;
  background-size: cover;
  padding: 30px 0 70px 0;
}

.contato .section-title {
  color: #fff;
  margin-bottom: 35px;
}

section.contato .col-50, section.contato .col-100 {
  display: block;
  padding: 0 7px;
}

section.contato .col-50 {
  width: 50%;
  float: left;
}

section.contato .col-100 {
  width: 100%;
  clear: left;
  text-align: center;
}

section.contato .wpcf7-form .wpcf7-form-control-wrap {
  margin-bottom: 10px;
  width: 100%;
  position: relative;
}

section.contato .wpcf7-form .wpcf7-form-control {
  background-color: #c3daf1;
  font: normal 22px "CenturyGothic",Helvetica,Arial;
  color: #36689a;
  border: none;
  padding: 6px 12px;
  margin-bottom: 10px;
  width: 100%;
}

section.contato .wpcf7-form .wpcf7-submit {
  background-color: #2b557e;
  color: #fff;
  text-transform: uppercase;
  font: normal 22px "CenturyGothic-Bold",Helvetica,Arial;
  border-radius: 0;
  padding: 4px 40px;
  width: auto;
}

section.contato .wpcf7-form textarea.wpcf7-form-control {
  height: 137px;
  resize: none;
}

/* FOOTER */
footer {
  text-align: center;
  width: 100%;
  background: linear-gradient(90deg, #c4d5ea 50%, #acc2dc 50%);
}

footer .col-logo, footer .col-social {
  padding: 55px 0 0 0;
}

@media (min-width: 768px) {
	footer .col-logo {
	  text-align: left;
	}	
}

footer .col-logo .logo-footer {
  max-width: 175px;
}

footer .col-text {
  background-color: #dee6f0;
  font: normal 18px "CenturyGothic",Helvetica,Arial;
  color: #262626;
  padding: 55px 0;
}

footer .col-text h2 {
  font-family: "CenturyGothic-Bold",Helvetica,Arial;
  font-size: 18px;
  margin: 0;
}

@media (max-width: 767px) {
  footer {
    background: linear-gradient(180deg, #c4d5ea 50%, #acc2dc 50%);
  }
	footer .col-text h2, #footer .col-text p {
	  padding: 0 10px;
	}
  footer .col-text {
    margin-top: 40px;
    font-size: 14px;
  }
}

footer .col-text a {
  color: #262626;
}

footer .col-social {
  font: normal 16px "CenturyGothic-Bold",Helvetica,Arial;
  color: #fff;
}

@media (max-width: 767px) {
	footer .col-social {
	  margin-bottom: 40px;
	}	
}

footer .col-social .social svg path {
  fill: #fff;
}

footer .col-social .social svg:hover path {
  fill: #000;
  transition: all .3s;
}


/* LEGACY CONTATO (como tava no antigo igual) */
.wpcf7-display-none {
  display: none;
}
div.wpcf7 .screen-reader-response {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 1px;
  margin: 0;
  padding: 0;
  border: 0;
}
section.contato .wpcf7-form span.wpcf7-not-valid-tip, section.contato .wpcf7-form .wpcf7-response-output {
  background-color: #fff;
}
div.wpcf7-mail-sent-ng, div.wpcf7-aborted {
  border: 2px solid #ff0000;
}
div.wpcf7-response-output {
  margin: 2em 0.5em 1em;
  padding: 0.2em 1em;
  border: 2px solid #ff0000;
}