:root {
  --ferro: #26090E;
  --amarelo1: #F5CC1C;
  --amarelo2: #F5D856;
  --branco: #fff;
  --medida: 160px;
}
.bg-ferro {
  background-color: var(--ferro);
}
#wpadminbar {
  display: none !important;
}
html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin: 0px!important;
}
::-webkit-scrollbar {
  display: none;
}
::selection {
  background-color: var(--amarelo2);
}
.page {
  margin: 0px;
}
body {
  background-color: var(--branco);
  color: var(--ferro);
  width: 100vw;
  max-width: 100vw;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  font-family: "Google Sans Code", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
}
@font-face {
  font-family: 'Maxeville';
  src: url('./Maxeville-Regular.woff2') format('woff2'),
       url('./Maxeville-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@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;
}
h1, h1 p {
  font-family: 'Maxeville';
  font-size: 88px;
}
h2, h2 p {
  font-family: 'Maxeville';
  font-size: 64px;
}
h3, h3 p {
  font-family: 'Maxeville';
  font-size: 48px;
  line-height: 1;
}
h4, h4 p {
  font-family: 'Maxeville';
  font-size: 32px;
}
h5, h5 p {
  font-family: 'Maxeville';
  font-size: 24px;
}
h6, h6 p {
  font-family: 'Maxeville';
  font-size: 18px;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0px;
}
h1, h2, h3, h4 {
  line-height: 1;
}
p {
  font-family: "Google Sans Code", monospace;
  font-size: 14px;
}
small, small p {
  font-family: "Google Sans Code", monospace;
  font-size: 12px;
}
.justify {
  text-align: justify;
}
.container-mapa {
  width: 100%;
  padding-left: 10vw;
  padding-right: 10vw;
}
.pt-h {
  padding-top: var(--medida);
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.gap-20 {
  gap: 20px;
}
.gap-40 {
  gap: 40px;
}
.gap-60 {
  gap: 60px;
}
a, a:hover, a:visited, a:active {
  color: var(--ferro);
  text-decoration: none;
  transition: all 0.5s ease;
}
.white a {
  color: white;
}
ul, ol {
  margin: 0px;
  padding: 0px;
}
.btn-ferro {
  background-color: var(--ferro);
  color: white;
  padding: 10px 20px;
  width: fit-content;
  transition: all ease 0.5s;
}
.btn-ferro:hover {
  background-color: var(--amarelo2);
  color: var(--ferro);
}
.ratio-1x1 {
  aspect-ratio: 1/1;
  object-fit: cover;
}
.video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.w-fit {
  width: fit-content;
}
.txt-vertical-tb {
  writing-mode: vertical-rl;
  text-align: right;
}
.txt-vertical-bt {
  writing-mode: vertical-rl;
  text-align: right;
  transform: rotate(180deg);
}




/* header footer */

.tapume {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  overflow: hidden;
  background-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(20px);
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.tapume div {
  background-color: var(--ferro);
  height: 340px;
  width: auto;
  aspect-ratio: 1/1;
}
.tapume div.w-20 {
  width: 200px;
}
header {
  background-color: rgba(250,250,250,0.3);
  backdrop-filter: blur(20px);
  transition: all ease 0.5s;
  transition-delay: 0.2s;
  z-index: 999;
}
header.header-home.scroll-blur {
  background-color: rgba(250,250,250,0);
  backdrop-filter: blur(0px);
}
header.header-home.scroll-blur a {
  color: white;
}
footer {
  background-color: var(--ferro);
}
footer a {
  color: white!important;
}
.logos-box {
  height: 75px;
  width: 260px;
}
header img {
  transition: opacity 0.5s ease;
}
img.logo-g {
  height: 75px;
  opacity: 1;
}
img.logo-m {
  height: 40px;
  opacity: 0;
}



/* ecf */

#ecf-gallery {
  z-index: -1;
  opacity: 0;
  transform: translate(-50%,-45%);
  pointer-events: none;
  transition: all 0.5s ease-out;
}
#ecf-gallery.open {
  z-index: 999;
  opacity: 1;
  transform: translate(-50%,-50%);
  pointer-events: auto;
}
.ecf-container {
  background-color: var(--ferro);
  position: fixed;
  top: 50%;
  left: 50%;
  aspect-ratio: 4/3;
  width: auto;
  height: 80vh;
  overflow: hidden;
}
.ecf-container img {
  aspect-ratio: 4/3;
  width: 100%;
  height: auto;
  object-fit: cover;
}



/* page */

.page-content .w-20 {
  width: 200px;
}
.page-content h2,
.vlog-content h2 {
  font-size: 22px;
}
.page-content h2::before,
.vlog-content h2::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 14px;
  background-color: var(--ferro);
}



/* vlog */

.vlog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.vlog-block {
  transition: all 0.5s ease;
}
.vlog-block:hover {
  background-color: var(--amarelo2);
  transition: all 0.5s ease;
}



/* nos */

.page-nos {
  background-color: var(--amarelo2);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.nos-funcao {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.nos-nome {
  position: absolute;
  width: 70%;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  opacity: 0;
  background-color: rgba(38,9,14,0.7);
  backdrop-filter: blur(20px);
  transition: opacity 0.5s ease;
}
.nos-item:hover .nos-funcao, .nos-item:hover .nos-nome {
  opacity: 1;
}



/* single nos */

.single-nos {
  background-color: var(--amarelo2);
}

/* custom modal e carousel */

.modal-custom .modal-dialog {
  max-width: 100vw;
  height: 100dvh;
  margin: 0;
}
.modal-custom .modal-content {
  width: 100vw;
  height: 100dvh;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  border-radius: 0;
  display: flex;
  position: relative;
}
.modal-custom .modal-header {
  display: none;
}
.btn-close-custom {
  position: absolute;
  top: 140px;
  right: 20px;
  background: none;
  border: none;
  font-size: 30px;
  color: var(--ferro);
  cursor: pointer;
  z-index: 10;
  width: 30px;
  height: 30px;
  display: flex;
  line-height: 1;
}
.single-carousel {
  height: calc(100dvh - (2*var(--medida)));
  overflow: hidden;
}
.single-carousel .carousel-inner {
  height: 100%;
}
.single-carousel .carousel-item {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.single-carousel img {
  width: auto!important;
  height: 100%!important;
  object-fit: contain;
}
.single-carousel .carousel-item {
  display: none !important;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.single-carousel .carousel-item.active {
  display: flex !important;
}
.single-carousel .carousel-item-next,
.single-carousel .carousel-item-prev {
  display: flex !important;
}
.single-carousel .carousel-control-prev-icon,
.single-carousel .carousel-control-next-icon {
  filter: invert(1);
}



/* inscricao */

.inscricao-hero {
  background-color: var(--ferro);
  height: 100dvh;
  display: flex;
  align-items: center;
}
.inscricao-hero img {
  position: absolute;
  top: 45%;
  left: 45%;
  transform: translate(-50%,-50%);
  width: 20vw;
  height: auto;
}
.inscricao-hero h3 {
  position: absolute;
  left: 10vw;
}
.inscricao-hero h3.vert {
  top: calc(var(--medida)/2);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-align: right;
}
.inscricao-hero h3.hori {
  bottom: calc(var(--medida)/2);
}
.inscricao-hero div.w-20 {
  width: 240px;
}
.numero::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: var(--amarelo2);
  margin-right: 16px;
}
.accordion-item {
  border: 1pt solid var(--amarelo1);
}
.inscricao-listas ol {
  padding-left: 28px
}
.inscricao-listas h5 {
  height: 80px;
}
.inscricao-listas h5::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: var(--ferro);
  margin-right: 16px;
}
.inscricao-listas.grid-4 > * {
  border-left: 1px solid var(--amarelo1);
  padding-left: 30px;
}
.inscricao-listas.grid-4 > *:nth-child(4n+1) {
  border-left: none;
  padding-left: 0;
}
.inscricao-ficha {
  background-color: var(--ferro);
}
.inscricao-ficha h4 {
  width: var(--medida);
  position: relative;
}
.inscricao-ficha h4::before {
  content: '';
  display: block;
  position: absolute;
  top: 8px;
  left: -40px;
  width: 24px;
  height: 24px;
  background-color: white;
  margin-right: 16px;
}

/* custom ninja forms */

.nf-error-msg, .nf-response-msg {
  color: var(--amarelo2)!important;
  font-size: 10px;
}
.nf-form-cont .nf-field-container {
    margin-bottom: 20px;
    font-family: "Google Sans Code", monospace;
}
.nf-form-cont .nf-field-label label, .nf-form-title, .nf-before-form-content {
    display: none;
}
.nf-form-cont .ninja-forms-field {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 0 !important;
    color: #ffffff !important;
    width: 100% !important;
    padding: 10px 0 !important;
    font-size: 14px !important;
    outline: none !important;
    box-shadow: none !important;
}
.nf-form-cont .ninja-forms-field::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}
.nf-form-cont .ninja-forms-field:focus {
    border-bottom-color: #ffffff !important;
}
.nf-form-cont .submit-container .nf-field-element {
    text-align: right;
}
.nf-form-cont input[type="submit"] {
    font-family: "Google Sans Code", monospace;
    background: white !important;
    color: var(--ferro) !important;
    border: none !important;
    padding: 12px 30px !important;
    font-size: 13px !important;
    letter-spacing: 1px !important;
    cursor: pointer !important;
    border-radius: 0 !important;
    text-transform: uppercase !important;
    width: fit-content!important;
    margin-left: auto!important;
    transition: background 0.5s ease;
}
.nf-form-cont input[type="submit"]:hover {
    background: rgba(255,255,255,0.85) !important;
}
.nf-error-wrap {
    display: none;
}



/* projeto */

.projeto-page {
  background-color: var(--ferro);
}
.projeto-hero {
  min-height: 100dvh;
}
.projeto-hero h3,
.projeto-hero img,
.projeto-hero small,
.projeto-hero .video,
.projeto-hero .quadrado {
  position: absolute;
  color: white;
}
.projeto-hero .titulo-th {
  top: 160px;
  left: 10vw;
}
.projeto-hero .titulo-tv {
  top: 160px;
  right: 10vw;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-align: right;
}
.projeto-hero .titulo-bh {
  bottom: 100px;
  right: 10vw;
}
.projeto-hero img {
  left: 10vw;
  bottom: 100px;
  width: 20vw;
}
.projeto-hero small {
  display: block;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 20vw;
}
.projeto-hero .video {
  top: 160px;
  right: 25vw;
  width: 40vw;
}
.projeto-hero .quadrado {
  right: 10vw;
  bottom: 220px;
  width: 80px;
  height: 80px;
  background-color: white;
}

.projeto-tagline video {
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
  height: 11vw;
  width: auto;
  position: absolute;
  z-index: 1;
}
.projeto-tagline video:first-of-type {
  bottom: 16px;
  right: 0;
}
.projeto-tagline video:last-of-type {
  bottom: 16px;
  right: 13vw;
}
.projeto-tagline h1 {
  color: var(--amarelo1);
  font-size: 6.8vw;
  text-align: justify;
  line-height: 1.1;
}

.projeto-bgvideo div {
  position: absolute;
  bottom: 100px;
  width: 200px;
  text-align: justify;
  right: 10vw;
  color: white
}
.projeto-bgvideo p::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 110%;
  width: 200px;
  height: 200px;
  background-color: white;
}

.projeto-contexto h4 {
  position: absolute;
  color: var(--amarelo1);
  top: 50%;
  transform: translateY(-50%);
}
.projeto-contexto h4:first-of-type {
  left: 10vw;
}
.projeto-contexto h4:last-of-type {
  right: 10vw;
}
.projeto-contexto div.w-30 p.ttu {
  color: var(--amarelo1);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-align: right;
  top: 0;
  left: -60px;
}
.projeto-contexto small {
  width: 15vw;
  right: 10vw;
  bottom: 8rem;
  text-align: right;
}
.projeto-mapeamento .bg-yellow {
  background-color: var(--amarelo2);
}
.projeto-mapeamento video {
  width: 200px;
}
.projeto-mapeamento h5::before {
  content: '';
  position: absolute;
  top: 4px;
  left: -36px;
  width: 20px;
  height: 20px;
  background-color: var(--ferro);
}
.projeto-etapas h3 {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-align: right;
  color: white;
  margin-right: auto;
}
.projeto-etapas h4, .projeto-etapas p {
  color: white
}
.projeto-etapas h4::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background-color: var(--amarelo2);
  margin-bottom: 16px;
}


@media (max-width: 1080px) {
  .tapume {
    display: flex;
  }
  .vlog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .vlog-grid {
    grid-template-columns: 1fr;
  }
}
