/*
26hebe
              .         .        |      *
   *             *              -O-          .
         .             *         |     ,
                .           o
        .---.
  =   _/__~0_\_     .  *            o       '
 = = (_________)             .
                 .                        *
       *               - ) -       *
*/

/*===== GOOGLE FONTS =====*/

@import url('https://fonts.googleapis.com/css2?family=Epilogue:wght@100&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Epilogue:wght@700&display=swap');



/*===== VARIABLES CSS =====*/
:root{

  /*===== Colors =====*/
  --white-yellow: #fdfef9;
  --white-yellow-dark: #fffbf7;
  --first-color-dark: #231F20;
  --full-black-color: #000000;
  --white-color: #fff;

  /*===== Font and typography =====*/
  --body-font: 'Inter', sans-serif;
  --big-font-size: 2.5rem;
  --normal-font-size: .938rem;
  --copy-font-size: 1.2em;
  --copy-line-height: 1.5;
  --copy-padding: 1% 6% 1% 6%;
  --copy-spacing-lg: 5%;
  --copy-compact-padding: 0;

  /*===== z index =====*/
  --z-fixed: 100;
}


@media screen and (min-width: 768px){
  :root{
    --big-font-size: 5rem;
    --normal-font-size: 1rem;
  }
}

/*===== BASE =====*/

::-moz-selection { /* Code for Firefox */
  background: var(--full-black-color);
}

::selection {
  background: var(--full-black-color);
}

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

body{
  margin: var(--header-height) 0 0 0;
  padding: 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--white-yellow-dark);
  overflow-x: hidden;

}

h1,p,ul{
margin: 0;
color: var(--first-color-dark);
}

p,
.text-copy,
h5{
    font-size: var(--copy-font-size);
    line-height: var(--copy-line-height);
}

p{
    padding: var(--copy-padding);
}

h5,
.text-copy--compact{
    padding: var(--copy-compact-padding);
    text-align: center;
}

.text-copy--mt-lg{
    margin-top: var(--copy-spacing-lg);
}

.text-copy--my-lg{
    margin-top: var(--copy-spacing-lg);
    margin-bottom: var(--copy-spacing-lg);
}


ul.list li{
    font-size: var(--copy-font-size);
    line-height: var(--copy-line-height);
    padding: var(--copy-padding)
}

tag{
  text-transform: uppercase;
	font-weight: 400;
	letter-spacing: 0.25rem;
	font-size: 0.95rem;
}

h1, h2 {
    font-family: 'Inter', sans-serif;
    letter-spacing: 20;
    line-height: 1.3;
}

h1 {
    font-weight: 300;
    text-align: center;
}

.hero-title {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.3;
    padding: var(--copy-padding);
}

h2 {
    font-weight: 900;
    font-size: 5vw;
    text-align: center;
}

h3, h4 {
    font-family: 'Epilogue', sans-serif;
    letter-spacing: 20;
    line-height: 1.2;
    font-weight: 700;
    text-align: left;
}

h3{
    font-size: 3em;
    margin-bottom: 0;
    padding-top: 5%;
}

h4 {
    font-size: 2.5em;
    margin-bottom: 40px;
    margin-top: 40px;
}

h5 {
    padding: 0;
}

h6 {
    font-family: 'Epilogue', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    font-size: 1.9em;
    text-align: center;
    margin: 40px 0;
}

ul{
  padding: 0;
  margin-bottom: 1rem;
  list-style: none;
}

a{
    color: var(--first-color-dark);
    transition: 0.3s;
    cursor: pointer;
}

a:hover{
    color: var(--full-black-color);
    background: var(--full-black-color);
    cursor: pointer;
}

imagem{
  max-width: 100%;
  height: auto;
}

img {
    width: 100%;
}


/*===== filter =====*/
.filter {
/*margin-left: 18rem;    */
    padding: 0;
    width: 100%;
    top: 0;
    position: -webkit-sticky;
    position: sticky;
    display: flex;
    justify-content: center;
    align-content: center;
    column-gap: 1rem;
    z-index: 1000;
}

.filter-container {
    margin-top: 80px;
}

.filter_item {
    cursor: pointer;
    padding: 1rem;
    background-color: var(--white-yellow-dark);
    border: 0;
    font: inherit;
    color: inherit;
}

.filter_item:hover {
    background-color: var(--first-color-dark);
    color: var(--white-color);
}
.filter_item:active,
.filter_item:focus-visible {
    background-color: var(--first-color-dark);
    color: var(--white-color);
    border-radius: 20px;
}
.mixitup-control-active{
    background-color: var(--first-color-dark);
    padding: 1rem;
    color: var(--white-color);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -khtml-border-radius: 20px;
}

/*===== Image hover text =====*/
/* Show Image on Hover */
.hover-menu-image {
    display: inline;
    z-index: 0 !important;

}

.hover-menu-item:hover + .hover-menu-image  {
	display: inline;
}

/* Positioning */
.show-in-right-menu {
	position: fixed;
}

/*===== LAYOUT =====*/
.bd-grid{
  max-width: 1024px;
  display: grid;
  grid-template-columns: 100%;
  column-gap: 2rem;
/*  width: calc(100% - 2rem);*/
  margin-left: 1rem;
  margin-right: 1rem;
}

.l-header{
  width: 100%;
  position: fixed;
  bottom: 0;
  top: auto;
  left: 0;
  z-index: 99999;
}

/*===== NAV =====*/
.logo {
  color: var(--first-color-dark);
  float: left;
  letter-spacing: 1px;
  padding-bottom: 15px;
  transition: 0.2s ease-out;

}

.logofixed {
 position: fixed;
 top: 10px;
 left: 24px;
width: 50%;
display: block;
padding: 0;
}

.logofixed img {
  display: block;
  width: 130px;
  height: auto;
  transition: transform 0.5s ease;
}

.logofixed img:hover {
filter: blur(8px);
transition: filter 0.5s ease;
}


.nav{
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 97%;
  position: relative;
  z-index: 2002;
}

.nav__close{
  position: absolute;
  top: 5px;
  right: 16px;
  font-size: 1.5rem;
  cursor: pointer;
}

.nav__item{
  margin-bottom: 1rem;
}

.nav__item .active{
background: var(--first-color-dark);
}

.nav__close, .nav__link, .nav__logo, .nav__toggle{
  color: var(--first-color-dark);
  transition: 0.3s;
}

.nav__link:hover{
  color: var(--full-black-color);
  background-color: var(--full-black-color);
}

.nav__toggle{
  font-size: 1.5rem;
  cursor: pointer;
  position: relative;
  z-index: 2003;
}

/*===== HOME =====*/
.home__img{
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -khtml-border-radius: 20px;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.home__img img{
  position: absolute;
  top: 0;
  left: 0;
}

.home__data{
  color: var(--first-color-dark);
}

.home__title{
  font-size: var(--big-font-size);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.home__description{
  margin-bottom: 2.5rem;
}


/* about  */
.texto{ margin-top: 15%;}


/* accordion + */
#accordion-container {
  border-top: 1px solid var(--first-color-dark);
}
.accordion-header {
  border-bottom: 1px solid var(--first-color-dark);
  font-size: 1.8em;
}
.accordion_list{
  font-size:1em;
  line-height: 1.5;
}
.accordion-header:hover {
  background: var(--white-color);
}
.active-header {
  border-bottom: 0px;
  background: var(--white-color);
    /* font-weight: bold; */

}
.accordion-content {
    border-bottom: 1px solid var(--first-color-dark);
}
#accordion-container {
    padding: 0px;
    margin: 80px 0px 30px 0px;
    width: 100%;
    position: relative
}
.accordion-header {
    position: relative;
    overflow: hidden;
    margin: 0px;
    padding: 35px 30px 35px 15px;
    cursor: pointer;
    -webkit-transition: color 0.2s ease-in-out;
    -moz-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
    -ms-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;

}
.accordion-header:after {
    content: "\2b";
    font-family: 'FontAwesome';
    font-size: 3.4rem;
    text-align: center;
    line-height: 24px;

    color: var(--first-color-dark);
    position: absolute;
    top: 35%;
    right: 25px;
    width: 24px;
    height: 24px;
    /*background: url(../images/plus.png);*/
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s linear;
}
.accordion-header:hover:after {
    opacity: 1;
}
.accordion-header.active-header:after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 1;
}
.accordion-content {
    display: none;
    padding: 15px 0px 30px 15px;        
    width: 100%;
    background: var(--white-color);
}
.margin_bottom10 {
    margin-bottom: 0;
    margin-top: 0;
    padding-bottom: 20px;
    text-decoration-line: underline;

}
.accordion .plus-minus{ left: 325px; right: auto; }

.plus-minus:after, .plus-minus:before {
      width: 40%;
}


/* Gallery */
.titulo{font-size: 3em; margin-top: 15%;}

.coluna{
    float: left;
    width: 50%;
    padding: 10px;
}
.row:after {
  content: "";
  display: table;
  clear: both;
  padding-bottom: 3%;
}

.fundo {position: absolute; width: 100%; height: 65vh;
}

.fundoA {position: absolute; width: 100%; height: 40vh;}

.imgGallery{
    height: auto;
    width: 100%;
/*    background-image: url(../img/mount-min.jpg);  */
    background-attachment: fixed;
    background-size: cover;
     border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -khtml-border-radius: 20px;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
margin-top: 10%;
    margin-bottom: 2%;
}

.imagems {
    height: 40rem;
    width: 100%;
      border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -khtml-border-radius: 20px;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
  margin-top: 10%;
    margin-bottom: 2%;
}

.ct-galeria{ margin-top :10%; margin-bottom: 2%; }


/* Footer */
footer{
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background: var(--full-black-color); 
    border-radius: 30px 30px 0px 0px;
    height: auto;
    width: 100%;
    padding-top: 80px;
    color: var(--white-color);
    margin-top: 100px;
}

.footer-content{
    display: flex;
    align-items: left;
    justify-content: center;
    flex-direction: column;
}

.footer-content a {
 color: var(--white-color);
}

.footer-content a:hover {
background-color: var(--white-color)}

.footer-content h1{
  text-align: left; margin-left: 10%; margin-right: 10%; margin-bottom: 0;  font-size: 3em; font-weight: 700; font-family: "Epilogue"; color: var(--white-color);
}

.footer-content h2{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  text-align: left;
  margin-left: 10%;
  margin-right: 10%;
  margin-bottom: 0;
  font-size: 1.5em;
  font-weight: 300;
  padding-bottom: 10%;
  color: var(--white-color);
}

.footer-content h2 a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.footer-content h2 .footer-icon-link{
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  text-decoration: none;
}

.footer-content h2 .footer-icon-link::after{
  content: attr(data-label);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.5rem);
  transform: translateX(-50%);
  padding: 0.35rem 0.5rem;
  border-radius: 4px;
  background: var(--white-color);
  color: var(--full-black-color);
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.footer-content h2 .footer-icon-link:hover::after,
.footer-content h2 .footer-icon-link:focus-visible::after{
  opacity: 1;
}

.footer-content h2 svg,
.footer-content h2 i{
  display: block;
}

.footer-content h2 .bx-fw{
  width: 24px;
  font-size: 24px;
  line-height: 1;
  text-align: center;
}

.footer-content h2 .footer-icon-link svg{
  width: 24px;
  height: 24px;
}

footer .ct-footer{ display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 28px; font-size: 0.85em; position: relative; color: var(--white-color)
}

footer .ct-footer .link {padding-bottom: 120px;z-index: 500;position: relative}

footer .ct-footer .link a{
  position: relative;
  z-index: 501;
  pointer-events: auto;
  display: inline-block;
  padding: 10px 16px;
  line-height: 1.2;
}



/* drop */
.dropdown {
  position: relative;
  display: inline-block;
  font-family: 'Epilogue', sans-serif;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.1em;

}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--white-color);
  min-width: 160px;
    height: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
    top: -210px;
    left: 50px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.desc {
  padding: 15px;
  text-align: center;
}

/* ===== DRAWING MODULE ===== */
.draw {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  margin: 1rem auto;
  height: 70vh;
}

.draw canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.draw .sobrepor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
  color: var(--first-color-dark);
}

.primeiroTexto{ margin-top: 6%; 
padding: 10px;}

.primeiroTexto h1 {
    font-size: 1.75rem;
  line-height: 1.;
}
/* subway line */
.compass-route {
    display: grid;
    grid-template-columns: 1fr minmax(40px, 8vw) 1fr minmax(40px, 8vw) 1fr minmax(40px, 8vw) 1fr;
    align-items: center;
    width: 100%;
    margin-bottom: 4rem;
    margin-top: 4rem;
    gap: 1rem;
}

.route-stop {
    color: var(--first-color-dark);
    font-size: 2rem;
    white-space: nowrap;
    text-align: center;
}

.route-line {
    width: 100%;
    height: 2px;
    background: var(--first-color-dark);
    position: relative;
}

.route-line::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--first-color-dark);
    border-right: 2px solid var(--first-color-dark);
    transform: translateY(-50%) rotate(45deg);
}

/* cookies */
.box-cookies.hide {
  display: none !important;
}

.box-cookies {
  position: fixed;
    background: rgba(249, 248, 245, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--first-color-dark);
  left: 15px;
  width: calc(100% - 30px);
  z-index: 100001;
  bottom: 15px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.box-cookies .msg-cookies,
.box-cookies .btn-cookies {
  text-align: center;
  padding: 25px;
  font-size: 18px;
  /* color: var(--white-color); */
}

.box-cookies .btn-cookies {
  background: var(--first-color-dark);
  cursor: pointer;
  align-self: normal;
  border: none;
  color: var(--white-color);
}

.box-cookies .msg-cookies a {
    color: var(--first-color-dark);
}

.box-cookies .btn-cookies:hover {
  background: var(--full-black-color);
  color: var(--full-black-color)
}

.box-cookies  .msg-cookies a:hover {
  background: var(--first-color-dark);
}


.l-main{min-height: 62vh;}

.card-mini{
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-radius: 20px;
  height: 100%;
  align-items: center;
}

.card-mini img{
  width: clamp(160px, 12vw, 240px);
  height: auto;
  object-fit: contain;
  max-width: 100%;
}

.card-mini h4{
  margin: 0;
  font-size: clamp(1.2rem, 1.6vw, 1.8rem);
  line-height: 1.3;
  font-weight: 700;
  min-width: 0;
  overflow-wrap: break-word;
}
.workflow-module{
  --workflow-background: var(--full-black-color);
  --workflow-text: var(--white-color);
  --workflow-card-background: var(--white-color);
  --workflow-card-text: var(--first-color-dark);

  width: min(1400px, calc(100% - 2rem));
  margin: 1rem auto;
  padding: 2rem 1.5rem;
  color: var(--workflow-text);
  background: var(--workflow-background);
  border-radius: 20px;
}

.workflow-module--light{
  --workflow-background: transparent;
  --workflow-text: var(--first-color-dark);
}

.workflow-module > h3,
.workflow-module .bd-grid > h3{
  margin: 0;
  padding: 0;
  color: var(--workflow-text);
}

.workflow-module__intro{
  max-width: 70ch;
  padding: 0;
  margin: 0.25rem auto 5rem;
  color: var(--workflow-text);
  text-align: left;
}

.workflow-module__list{
  display: grid;
  gap: 3rem;
  width: 100%;
}

.workflow-module__item{
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1rem, 4vw, 4rem);
  align-items: start;
}

.workflow-module__title{
  position: sticky;
  top: 24vh;
  align-self: start;
  min-width: 0;
  color: var(--workflow-text);
}

.workflow-module__title h4{
  margin: 0;
  padding: 1.75rem 0 0;
  color: inherit;
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.2;
}

.workflow-module__card{
  padding: 1.75rem;
  border-radius: 20px;
  color: var(--workflow-card-text);
  background: var(--workflow-card-background);
}

.workflow-module__card p{
  margin: 0;
  padding: 0;
  color: inherit;
}

.container-column{
  width: min(1400px, calc(100% - 10rem));
  margin: 3rem auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.container-column .column{
  padding: 0;
}

.container-column .column .text-copy{
  display: block;
  width: 100%;
  padding: 1rem 1.25rem;
  border: 0;
  border-radius: 20px;
  background: var(--white-color);
  box-shadow: none;
}

.similar-projects{
  margin-top: 100px;
  display: grid;
  grid-template-columns: minmax(0, 22rem) minmax(0, 48rem);
  gap: 2rem;
  align-items: start;
  padding: 1.5rem;
}

.similar-projects__header{
  display: grid;
  gap: 1rem;
  margin-bottom: 0;
}

.similar-projects__eyebrow{
  display: none;
}

.similar-projects h3{
  margin: 0;
  padding: 0;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-family: "Epilogue", sans-serif;
  font-weight: 700;
  color: var(--first-color-dark);
}

.similar-projects__all{
  display: inline-block;
  width: fit-content;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  text-underline-offset: 0.16em;
}

.similar-projects__card:hover{
  background: transparent;
}

.similar-projects__list{
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.85rem;
  max-width: 48rem;
}

.similar-projects__card{
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  transition: none;
  text-decoration: none;
}

.similar-projects__card:hover{
  color: inherit;
  text-decoration: none;
}

.similar-projects__image{
  position: relative;
  aspect-ratio: 7 / 5;
  overflow: hidden;
  border-radius: 20px;
}

.similar-projects__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.similar-projects__image img:nth-child(2){
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.similar-projects__card .grid__item-meta{
  font-size: 0.68rem;
  text-align: left;
  letter-spacing: 0.14rem;
  color: var(--first-color-dark);
}

.similar-projects__title{
  margin: 0.65rem 0 0;
  font-size: 1.4rem;
  line-height: 1.35;
  font-family: 'Epilogue', sans-serif;
  font-weight: 700;
  color: var(--first-color-dark);
}

.similar-projects__card:hover .grid__item-meta{
  background: var(--full-black-color);
  color: var(--full-black-color);
}

.similar-projects__card:hover .similar-projects__image img:nth-child(2){
  opacity: 1;
}

.substack-module{
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.substack-module__header{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 4rem;
}

.substack-module h3{
  margin: 0;
  padding: 0;
}

.substack-module__all{
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex: 0 0 auto;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.substack-posts{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  background: transparent;
}

.substack-post{
  display: block;
  min-height: 10rem;
  padding: 1.25rem;
  border-radius: 20px;
  background: var(--white-color);
  text-decoration: none;
}

.substack-post:hover{
  color: var(--white-color);
  background: var(--first-color-dark);
}

.substack-post:hover .grid__item-meta,
.substack-post:hover .substack-post__title,
.substack-post:hover .substack-post__link{
  color: var(--white-color);
}

.substack-post .grid__item-meta{
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.68rem;
  text-align: left;
  letter-spacing: 0.14rem;
  color: var(--first-color-dark);
}

.substack-post__title{
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  line-height: 1.18;
  color: var(--first-color-dark);
}

.substack-post__link{
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.about-facts{
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.about-facts__cards{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  background: transparent;
}

.about-fact-card{
  min-height: 10rem;
  padding: 1.25rem;
  border: 1px solid var(--first-color-dark);
  border-radius: 20px;
  background: transparent;
}

.about-fact-card .grid__item-meta{
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.68rem;
  text-align: left;
  letter-spacing: 0.14rem;
  color: var(--first-color-dark);
}

.about-fact-card__title{
  margin: 0;
  font-size: clamp(1.1rem, 1.7vw, 1.5rem);
  line-height: 1.18;
  color: var(--first-color-dark);
}


/* ===== MEDIA QUERIES =====*/

@media screen and (max-width: 768px){
  .nav__menu{
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    padding: 3.5rem 1rem 0;
    background: rgba(255,255,255,.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: .5s;
    z-index: 100000;
  }

  .nav__menu.show{
    right: 0;
  }

  .logofixed img {
    width: 100px;
  }
  .logofixed {
    top: 0;
    left: 0;
  }
.draw {
display: none;}
.primeiroTexto{ margin-top: 25%;}
    .filter {
/*margin-left: 18rem;    */
    padding: 0;
    width: 100%;
    top: 32px;
    position: -webkit-sticky;
    position: sticky;
    display: flex;
    justify-content: center;
    align-content: center;
    column-gap: 0.5rem;
    z-index: 1000;
}
h4{
  font-size: 1.8em;
  margin-top: 32px;
  margin-bottom: 24px;
}
.grid__item-meta{
  font-size: 0.45rem;
  letter-spacing: 0.16rem;
}

.filter-container {
    margin-top: 0;
}

.filter_item {
    cursor: pointer;
    padding: 5px;
    background-color: var(--white-yellow-dark);
    border: 0;
    font: inherit;
    color: inherit;
    transition: background-color 0.2s ease, color 0.2s ease,
    box-shadow 0.2s ease, transform 0.2s ease;

  }

 .filter_item:hover {
  background-color: var(--first-color-dark);
  color: var(--white-color);
  transform: translateY(-2px);
}

.mixitup-control-active{
  background-color: var(--first-color-dark);
  padding: 5px;
  color: var(--white-color);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -khtml-border-radius: 20px;
}

  .nav__toggle {
    position: fixed;
    right: 16px;
    top: 5px;
  }

    .titulo{font-size: 1.5em}

    /* .home {background-color: yellow; height: 28vh} */
    .box-cookies {
    flex-direction: column;
  }

 .coluna {
    width: 100%;
  }

  .workflow-module{
    width: calc(100% - 3rem);
    margin: 3rem auto;
    padding: 2rem;
    border-radius: 18px;
  }

  .workflow-module > h3,
  .workflow-module .bd-grid > h3{
    font-size: 2.2rem;
  }

  .workflow-module__intro{
    margin: 1rem 0 1.5rem;
  }

  .container-column{
    grid-template-columns: 1fr;
  }

  .workflow-module__item{
    grid-template-columns: 1fr;
    padding: 0;
  }

  .workflow-module__title{
    position: static;
  }

  .workflow-module__title h4{
    padding-top: 0;
    font-size: 1.8rem;
  }

  .workflow-module__card{
    padding: 2rem;
  }
  .compass-route {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 0.5rem;
    }
    .route-line {
    width: 2px;
    height: 40px;
  }

  .route-line::after {
    top: auto;
    bottom: 0;
    right: 50%;
    transform: translateX(50%) rotate(135deg);
  }


  .similar-projects{
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.25rem 0;
  }

  .similar-projects__header{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
  }

  .similar-projects__all{
    flex: 0 0 auto;
    text-align: right;
  }

  .similar-projects__card{
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: 0.75rem;
    align-items: center;
  }

  .similar-projects__title{
    font-size: 1rem;
  }

  .substack-module{
    margin-top: 8rem;
    margin-bottom: 4rem;
  }

  .substack-module__header{
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }

  .substack-posts{
    grid-template-columns: 1fr;
  }

  .substack-post{
    min-height: 0;
  }

  .about-facts{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .about-facts__cards{
    grid-template-columns: 1fr;
  }

  .about-fact-card{
    min-height: 0;
  }
  
}


@media screen and (min-width: 769px){
  body{
    margin: 0;
  }

  .nav{
    height: calc(var(--header-height) + 10rem);
  }

  .nav__toggle, .nav__close{
    display: none;
  }

  .nav__list{
    display: block;
  }

  .home__container{
    height: 100vh;
    grid-template-columns: repeat(2, max-content);
    grid-template-rows:  1fr;
    row-gap: 0;
    align-items: center;
    justify-content: center;
  }

  .home__img{
    order: 1;
    width: 375px;
    height: auto;
  }

  .home__img img{
    width: 375px;
  }
}

@media screen and (min-width: 1024px){
  .bd-grid{
    margin-left: auto;
    margin-right: auto;
  }

  .home__container{
    justify-content: initial;
    column-gap: 4.5rem;
  }

  .home__img{
    width: 604px;
    height: auto;
  }

  .home__img img{
    width: 604px;
  }
}
