/* :root {

} */
@font-face {
  font-family: 'Tobias';
  src:
  url(../fonts/Tobias-TRIAL-Regular.otf) format('opentype'),
}
@font-face {
  font-family: 'Radio-Light';
  src:
  url(../fonts/PPRadioGrotesk-Light.otf) format('opentype');
}


@keyframes fade {
  0% {
    opacity: 0;
    transform: translate(0, 2rem);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.in-view {
  animation: fade .4s .4s both;
}
.not-in-view {
  opacity: 0;
}
.desk-none {
  display: none;
}

:focus {
  outline: none;
}
::selection {
  background-color: rgba(255,255,255);
}
::-webkit-scrollbar {
  display: none;
}
html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.page {
  margin: 0px;
}
body {
  max-width: 100vw;
  background-color: #F5F4EB;
  color: var(--carvao);
  font-size: 16px;
  scroll-behavior: smooth;
  font-family: 'Radio-Light';
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
.frame {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
}
a, a:hover, a:active, a:visited {
  color: black!important;
  transition: all ease 0.5s;
}

footer a, footer h5 a, footer h4 a, .proj-card h5, .onde a h4, .onde h4 a {
  width: fit-content;
  position: relative;
}
footer a p::after, footer h5 a::after, footer h4 a::after, .proj-card h5::after, .onde a h4::after, .onde h4 a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: bottom left;
  transition: transform 0.3s ease-out;
  background-color: #000;
}
footer a:hover p::after, footer h5 a:hover::after, footer h4 a:hover::after, .proj-card:hover h5::after, .onde a h4:hover::after, .onde h4 a:hover::after {
  transform: scaleX(1);
}


div[type="button"], .home a h4, .single-proj a h4, .single-produtos a h4 {
  transition: transform ease 0.5s;
}
div[type="button"]:hover, .home a h4:hover, .single-proj a h4:hover, .single-produtos a h4:hover {
transform: translateY(-3px);
}

.proj-card p {
  margin: 0px;
}



h1, h2, h3, h4, h5 {
  margin: 0px;
  font-family: 'Radio-Light';
  font-style: normal;
}
h1, h1 p, .single-produtos h2, .single-produtos h2 p {
  font-family: 'Radio-Light';
  font-size: 40px;
  line-height: 1;
  margin-bottom: 0px;
}
h2, h2 p, .single-produtos h1, .single-produtos h1 p {
  font-size: 64px;
  font-family: 'Tobias';
  font-style: normal;
  line-height: 0.9;
  margin-bottom: 0px;
}
h3, h3 p {
  font-size: 28px;
  line-height: 1.1;
}
h4, h4 p, footer h4 p {
  font-size: 22px;
  line-height: 1.1;
}
h5, p, h5 p {
  font-size: 17px;
  line-height: 1.2;
}
h6, h6 p {
  font-size: 14px;
  line-height: 1.2;
}
.rep, .rep p, .rep a {
  font-size: 15px!important;
}
.download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.download::before {
  content: '';
  display: inline-block;
  height: 16px;
  width: 16px;
  background-image: url('../assets/down.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.gap20 {
  gap: 20px;
}
.gap40 {
  gap: 40px;
}

.grid6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.cover {
  object-fit: cover;
}
nav.white .underline * {
  text-decoration: underline #F5F4EB solid 2px;
}
.underline *, header.bg-offwhite .underline * {
  text-decoration: underline black solid 2px;
}


.ratio-1x1 {
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
}
.ratio-3x4 {
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center;
}
.ratio-4x5 {
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center;
}
.ratio-4x3 {
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
}
.ratio-16x9 {
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
}
.ml-auto {
  margin-left: auto;
}
a.no-td, .no-td a {
  text-decoration: none;
}
a.underline {
  text-decoration: underline black solid 2px;
}
h5.ttu {
  font-family: 'Radio-Light';
}
.pt-header-bg {
  padding-top: 180px;
}
.pt-header-sm {
  padding-top: 180px;
}
.mv0 p {
  margin: 0px;
}
.tobias, .tobias p {
  font-family: 'Tobias'!important;
}
.radio-bold, .radio-bold p {
  font-family: 'Radio-Light'!important;
}


/* header */

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: background-color ease 1s;
}
header a, header h5 {
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'Radio-Light';
}

nav.white h5 {
  color:#F5F4EB;
}
nav.black h5 {
  color: black;
}
.zap {
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 999;
  transition: transform ease 0.5s;
}
.zap:hover {
  transform: translateY(-4px);
  transition: transform ease 0.5s;
}
header.bg-offwhite {
  background-color: #F5F4EB;
}
header.bg-offwhite nav.white h5 {
  color: black;
}
header.bg-offwhite svg path {
  fill: #958376;

}
header.bg-offwhite svg path:nth-child(6) {
  fill: #DD6648;
}
header h5 {
  position: relative;
  display: inline-block;
}
header h5::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: bottom left;
  transition: transform 0.3s ease-out;
}
header nav.white h5::after {
  background-color: #F5F4EB;
}
header nav.black h5::after, header.bg-offwhite nav h5::after {
  background-color: #000;
}
header h5:hover::after {
  transform: scaleX(1);
}
header a.underline h5:hover::after {
  transform: scaleX(0);
}

.burge {
  display: none;
}
.menu {
  position: fixed;
  top: 0;
  right: 0;
  width: auto;
  height: 100dvh;
  background-color: #F5F4EB;
  padding: 20px 40px;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform ease 1s;
}
.menu a {
  display: block;
  text-decoration: none;
  margin-bottom: 12px;
}
.menu img {
  height: 24px;
}
.menu h4 {
  font-size: 24px;
}
.menu.abre-menu {
  transform: translateX(0);
}



/* home */

.capa {
  width: 100vw;
  height: 100dvh;
  object-fit: cover;
  object-position: center;
}


/* sobre */

.sobre .h-90 {
  height: 90dvh;
}


/* produtos */

.cor-ball {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  border-radius: 22px;
}
.cor-selecionada {
  transform: scale(90%);
  box-shadow: 0 0 0 2px #FFFFFF, 0 0 0 3px #AAAAAA;
}
.cor-close {
  width: 14px;
  height: 14px;
}


/* projetos */

.banner {
  width: 100vw;
  height: 90dvh;
}
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.banner h5 {
  position: absolute;
  bottom: 40px;
  right: 40px;
}
.produtos-projeto div.w-25 {
  margin-top: 40px;
}
.produtos-projeto div:first-child {
  position: relative;
}
.produtos-projeto div:first-child::before {
  content: 'Produtos';
  font-size: 24px;
  color: black;
  position: absolute;
  top: -56px;
  left: 0;
  line-height: 1;
}
.produtos-projeto h5.ttu.mt2 {
  font-size: 16px;
}


/* single projeto */

.carousel-image {
  display: block;
  height: 70dvh;
  max-width: 100%;
  margin-right: 10px;
}
 .flickity-page-dots {
  display: none;
}
.flickity-prev-next-button {
  right: 0px!important;
  top: calc(100% + 10px)!important;
  transform: translateY(0)!important;
}
.flickity-button-icon {
  display: none;
}
.flickity-prev-next-button.next, .flickity-prev-next-button.previous {
  background-image: url("data:image/svg+xml,%3Csvg width='43' height='34' viewBox='0 0 43 34' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24.1399 3.65996L26.8399 0.959961L42.9199 16.98L26.7799 33.12L24.0799 30.42L35.4799 18.96H0.919922V15H35.4799L24.1399 3.65996Z' fill='black'/%3E%3C/svg%3E");
  background-size: clamp(24px, 3vw, 40px);
  background-repeat: no-repeat;
  background-position: right;
}
.flickity-prev-next-button.previous {
  transform: rotate(180deg)!important;
  right: 60px!important;
  left: auto !important;
}
.flickity-prev-next-button.next:hover {
  background-image: url("data:image/svg+xml,%3Csvg width='43' height='34' viewBox='0 0 43 34' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24.1399 3.65996L26.8399 0.959961L42.9199 16.98L26.7799 33.12L24.0799 30.42L35.4799 18.96H0.919922V15H35.4799L24.1399 3.65996Z' fill='black'/%3E%3C/svg%3E");
  opacity: 0.7;
  background-size: clamp(24px, 3vw, 40px);
  background-repeat: no-repeat;
  transform: scale(1);
  background-position: right;
}
.flickity-prev-next-button.next svg {
  width: clamp(24px, 3vw, 40px);
  height: clamp(24px, 3vw, 40px);
}
.flickity-button {
  background-color: transparent!important;
}
button {
  padding: 0px;
}


/* single produto */

.cor-card img {
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center;
  filter: brightness(90%);
  transition: filter ease 0.5s;
}
.cor-card h5 {
  position: relative;
  display: inline-block;
}
.cor-card h5::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #000;
  transform: scaleX(0);
  transform-origin: bottom left;
  transition: transform 0.3s ease-out;
}
.cor-card:hover h5::after {
  transform: scaleX(1);
}
.cor-card:hover img {
  filter: brightness(100%);
}
.lightbox .lb-image {
  display: block;
  height: 80dvh!important;
  width: 80dvh!important;
  max-width: 80vw!important;
  max-height: 80dvh!important;
  object-fit: cover;
  object-position: center;
  border-radius: 0px!important;
  border: none!important;
}
.lb-number, .lb-close {
  display: none!important;
}
.lb-nav a.lb-prev, .lb-nav a.lb-next {
  background: none!important;
}
.lightboxOverlay {
  background-color: rgba(250,250,250, 0.2)!important;
  opacity: 1!important;
  -webkit-backdrop-filter: blur(10px)!important;
  backdrop-filter: blur(10px)!important;
}
.lb-data {
  text-transform: uppercase;
  color: black!important;
}



/* footer */

footer p {
  margin-top: 0px;
  line-height: 1.3;
}
footer a p {
  margin-bottom: 0px;
}
footer h5 {
  line-height: 1.5;
}


/* onde encontrar */

.accordion-body {
  padding: 0px;
}
.accordion-item {
  border: none!important;
  background-color: transparent;
  border-bottom: 1pt solid black!important;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: 0px!important;
  border-bottom-left-radius: 0px!important;
}
.accordion-button {
  padding: 8px 0px;
  background-color: transparent;
  box-shadow: none;
  cursor: pointer;
}
.accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
  color: black;
}
.accordion-button:focus {
  box-shadow: none;
}
.onde .grid3 {
  gap: 16px;
}
.onde .grid3 .col {
  display: flex;
  flex-direction: column;
  gap: 0px 16px;
}


/* form orcamento */
.modal {
  --bs-modal-width: 600px;
}
.modal-content {
  background-color: #F5F4EB;
  border-radius: 0px;
}
.modal-header {
  border-bottom: 0px;
}
.input-underline {
  display: block;
  width: 100%;
  padding: 10px 0;
  font-size: 20px;
  color: #000 !important;
  background-color: transparent !important;
  border: none !important;
  border-bottom: 1px solid #000 !important;
  border-radius: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  font-family: 'Radio-Light', sans-serif;
}
.input-underline::placeholder {
  color: #000;
  opacity: 1;
  font-weight: 400;
}
.input-underline:focus {
  border-bottom: 2px solid #000 !important;
}
select.input-underline {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="1" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 20px;
  cursor: pointer;
  padding-right: 30px;
}
.check-inline {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  user-select: none;
  margin-bottom: 0;
  font-weight: normal;
  color: #000;
}
.check-inline input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.check-inline span::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  border: 1px solid #000;
  background-color: transparent;
  vertical-align: middle;
  margin-top: -2px;
  transition: all 0.2s;
}
.check-inline input:checked + span::before {
  background-color: #000;
  box-shadow: inset 0 0 0 3px #f4f3ec;
}
.checkbox-group-top .custom-control {
  margin-right: 20px;
}
.btn-enviar-arrow {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  color: #000 !important;
  font-family: 'Radio-Light', sans-serif;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  box-shadow: none !important;
  transition: transform ease 0.5s;
}
.btn-enviar-arrow:hover {
  transform: translateY(-3px);
  text-decoration: none;
}
.btn-enviar-arrow .arrow {
  margin-left: 15px;
  font-size: 24px;
  display: inline-block;
  transform: translateY(-2px);
}
.btn-enviar-arrow:focus {
  outline: none !important;
  box-shadow: none !important;
}
.btn-remove-item {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: #000;
  font-size: 24px;
  line-height: 1;
  font-weight: 300;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: color 0.2s;
}
.btn-remove-item:focus {
  outline: none !important;
}


/* newsletter */

.newsletterform{
  float:left;
  position:relative;
  padding-bottom: 8px;
}
/* .newsletterform p, .newsletterform span, .newsletterform strong{
  font-size:32px;
  margin-top:10px
}
.newsletterform label{
  float:left;
  position:relative;
  width:100%;
  color: black;
} */
.newsletterform input[type="email"], .newsletterform input[type="text"] {
  border-radius: 0;
  border:0;
  border-bottom-color:currentcolor;
  border-bottom-style:none;
  border-bottom-width:0px;
  border-bottom:2px solid #1A1A1A;
  background-color:transparent;
  padding:5px 0;
  outline:0;
  font-weight:normal;
  font-size:24px;
  line-height:140%;
  color:#1A1A1A;
  float:left;
  position:relative;
  width:390px;
  padding-right: 20px;
  font-family: 'Radio-Light';

}
::placeholder {
  color: black;
    font-family: 'Radio-Light';

}
.newsletterform input[type="submit"] {
  position:absolute;
  color: transparent;
  font-size: 1px;
  font-family: 'Radio-Light';
  background-repeat:no-repeat;
  background-position:center;
  background-image:url("/wp-content/themes/terracor/assets/seta.svg");
  outline:0;
  left:360px;
  top:40%;
  margin-top:-30px;
  width:38px;
  height:30px;
  border:0;
  background-color:#F5F4EB;
}
/* .wpcf7-response-output, .wpcf7-spinner {
  display: none;
} */
.newsletterform p {
  margin-bottom: 0px;
}
.wpcf7 form.sent .wpcf7-response-output {
  border-color: transparent
}
.wpcf7 form .wpcf7-response-output {
  display: block;
  margin: 0px!important;
  padding: 0px!important;
  border: none!important;
}

/* - - - - - - - - - - - - - - - - - - - - */


@media (min-width: 1800px) {
  /* .newsletterform input[type="email"], .newsletterform input[type="text"] {
    font-size:32px;
  } */
  h1, h1 p, .single-produtos h2, .single-produtos h2 p {
    font-size: 56px;
    margin-bottom: 0px;
  }
  h2, h2 p, .single-produtos h1, .single-produtos h1 p {
    font-size: 80px;
    margin-bottom: 0px;
  }
  h3, h3 p {
    font-size: 42px;
  }
  h4, h4 p, footer h4 p {
    font-size: 28px;
  }
  h5, p, body {
    font-size: 17px;
  }
  .produtos-projeto div:first-child::before {
    font-size: 28px;
  }
  footer div.w-50, header nav.w-50 {
    width: 40%!important;
  }
}

@media (max-width: 1300px) {
  header h5 {
    font-size: 13px;
  }
}

@media (max-width: 1200px) {

  .contato .grid3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .contato .grid3 div:first-child {
     grid-column: 1 / span 2;
  }
  .btn-trigger-download {
    font-size: 12px;
  }

}


@media (max-width: 1024px) {
  h1, h1 p, .single-produtos h2, .single-produtos h2 p {
    font-size: 40px;
  }
  h2, h2 p, .single-produtos h1, .single-produtos h1 p {
    font-size: 24px;
  }
  h3, h3 p {
    font-size: 24px;
  }
  h4, h4 p, footer h4 p, .produtos-projeto div:first-child::before {
    font-size: 20px;
    line-height: 1.25;
  }
  h5, p, body, footer p {
    font-size: 12px;
  }
  header a.mr5 {
    margin-right: 2.5rem!important;
  }
  .carousel-image {
    width: 100%;
    height: 100vw;
    aspect-ratio: 1/1;
    object-fit: cover;
  }
  .newsletterform input[type="email"], .newsletterform input[type="text"] {
    font-size:20px;
    width:245px;
  }
  .newsletterform input[type="submit"] {
    left:215px;
  }
}


@media (max-width: 760px) {
  header {
    align-items: center;
  }
  header .w-25 {
    width: 160px!important;
  }
  .grid6, .grid4 {
    grid-template-columns: repeat(2, 1fr);
  }
  h1, h1 p, .single-produtos h2, .single-produtos h2 p {
    font-size: 20px;
  }
  h2, h2 p, .single-produtos h1, .single-produtos h1 p {
    font-size: 32px;
  }
  h3, h3 p {
    font-size: 20px;
  }
  h4 {
    font-size: 16px;
  }
  h5, p, body {
    font-size: 12px;
  }
  .w-100-mobi {
    width: 100%!important;
  }
  .w-50-mobi {
    width: 50%!important;
  }
  .pl0-mobi {
    padding-left: 0px;
  }
  .column-mobi {
    flex-direction: column;
  }
  .tc-mobi {
    text-align: center;
  }
  .items-start-mobi {
    align-items: flex-start;
  }
  .mt-mobi {
    margin-top: 40px;
  }
  .flickity-prev-next-button {
    top: calc(100% - 5px)!important;
  }
  .none-mobi {
    display: none;
  }
  .desk-none {
    display: block;
  }
  .onde .grid3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .contato .grid3 div:last-child {
    grid-column: 1 / span 2;
  }
  .pt0-mobi {
    padding-top: 0px!important;
  }
  .pt5-mobi {
    padding-top: 40px;
  }

  .burge {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999;
  }
  nav.flex {
    display: none;
  }
  .contato .column-mobi {
    flex-direction: column-reverse;
  }
  .banner h5 {
    bottom: 20px;
    right: 20px;
  }
  .onde .grid3, .onde .grid3 .col {
    gap: 0px;
  }
  .lightbox .lb-image {
    height: 60dvh!important;
    width: 80dvh!important;
    max-width: 80vw!important;
    max-height: 60dvh!important;
  }
  .produtos-projeto {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  /* form orcamento */
  .input-underline, .btn-enviar-arrow {
    font-size: 15px;
  }
  .btn-enviar-arrow .arrow, .btn-remove-item {
    font-size: 18px;
  }
  .mb-50 {
    margin-bottom: 50px;
  }
  .mt-50 {
    margin-top: 50px;
  }
  .mv-50 {
    margin-bottom: 50px;
    margin-top: 50px;
  }

  .onde .flex-mobi {
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
  }
  .produtos-projeto div:first-child::before {
    font-size: 20px;
  }
  .newsletterform{
    margin-bottom: 40px;
  }
  .flickity-prev-next-button.previous {
    right: 40px!important;
  }

}
