/* CSS Document */
.approach-hero{
  position: relative;
  min-height: clamp(270px, 28vw, 500px);
  overflow: hidden;
  display: grid;
  align-items: center;
}
 
.projects-masonry{
  padding: 10px 0 10px 0;
}
.projects-masonry .container-lg{
  padding: 0 30px;
}

/* Masonry sizing (3 cols desktop) */
.projects-masonry__grid{
  margin-top: 18px;
}
.projects-masonry__grid:after{
  content:"";
  display:block;
  clear:both;
}

/* gutter + columns controlled by sizers */
.projects-masonry__grid .grid-sizer{ width: calc((100% - 36px) / 3); }
.projects-masonry__grid .gutter-sizer{ width: 18px; }

/* items */
.project-card{
  float: left;
  width: calc((100% - 36px) / 3);
  margin-bottom: 18px;
  /* border-radius: 16px; */
  overflow: hidden;
  background: #e9eef3;
  text-decoration: none;
  position: relative; /* for label + hover overlay */
  transform: translateZ(0);
}

.project-card img{
  width: 100%;
  height: auto;
  display: block;
  transition: transform .28s ease;
}

/* label (centered) */
.project-card__label{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 14px;
  background: #0071BA;
  color: #fff;
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 21px;
  line-height: 1;
  text-align: center;
  width: max-content;
  text-transform: uppercase;
}

/* hover */
.project-card::after{
  content:"";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.10);
  opacity: 0;
  transition: opacity .22s ease;
}
@media (hover:hover){
  .project-card:hover::after{ opacity: 1; }
  .project-card:hover img{ transform: scale(1.03); }
}

/* 2 cols */
@media (max-width: 1200px){
  .projects-masonry .container-lg{ padding: 0 32px; }
  .projects-masonry__grid .grid-sizer,
  .project-card{ width: calc((100% - 18px) / 2); }
}

/* 1 col */
@media (max-width: 520px){
  .projects-masonry .container-lg{ padding: 0; }
  .projects-masonry__grid .grid-sizer,
  .project-card{ width: 100%; }
}

/* =========================
   PROJECTS BAR
   ========================= */

.projects-bar{
  padding: 30px 10px 0;
}

.projects-bar__row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* shared typography */
.projects-search,
.projects-search input,
.projects-refine{
  color: var(--dark-gray, #54565B);
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* search */
.projects-search{
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #AAA;
  border-radius: 10px;
  background: #fff;
  height: 27px;
  padding: 20px;
  width: 240px; /* matches reference feel */
}

.projects-search i{
  font-size: 18px;
  line-height: 1;
  color: #0071BA;
}
.projects-refine i{
  font-size: 18px;
  line-height: 1;
  color: #0071BA;
}


.projects-search input{
  border: 0;
  outline: 0;
  width: 100%;
  background: transparent;
  padding: 0;
}

.projects-search input::placeholder{
  color: var(--dark-gray, #54565B);
  opacity: .9;
}

/* refine button */
.projects-refine{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #AAA;
  border-radius: 10px;
  background: #fff;
  height: 27px;
  padding: 20px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s ease, opacity .15s ease;
}

.projects-refine:hover{
  opacity: .9;
}

/* mobile */
@media (max-width: 720px){
  .projects-bar__row{
    align-items: stretch;
    gap: 10px;
    flex-flow: column;
  }
  .projects-search{
    width: 100%;
  }
  .projects-refine{
    justify-content: left;
  }
}
/* =========================
   PROJECT TOP BAR (blue area above banner)
   ========================= */

.project-topbar{
  background: #0071BA;
  padding: 116px 130px 22px;
}

.project-topbar__title{
  margin: 0;
  color: #FFF;
  text-align: left;
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 100px;
  font-style: normal;
  font-weight: 900;
  line-height: 150px;
  text-transform: uppercase;
}

.project-topbar__meta{
  margin: 0;
  color: #FFF;
  text-align: left;
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.approach-hero__media::after{
  
  opacity: 0.0;
   
}

/* responsive */
@media (max-width: 991px){
  .project-topbar{/* padding: 22px 0 18px; */padding-left: 0px;}
  .project-topbar__title{
    font-size: clamp(44px, 7vw, 78px);
    line-height: 1.1;
  }
  .project-topbar__meta{
    font-size: 18px;
  }
}

/* =========================
   PROJECT DETAIL Ã¢â‚¬â€œ GALLERY + DESCRIPTION
   ========================= */

/* ====== MANTÃƒâ€°M TODO SEU CSS COMO ESTÃƒÂ ====== */
/* Abaixo estÃƒÂ¡ SOMENTE o trecho que vocÃƒÂª precisa substituir/ajustar
   na parte "PROJECT DETAIL Ã¢â‚¬â€œ GALLERY + DESCRIPTION" e remover os blocos Fancyapps
   (.project-gallery-fa*, #projCarousel*, .f-thumbs* etc). */

/* =========================
   PROJECT DETAIL Ã¢â‚¬â€œ GALLERY + DESCRIPTION
   (Swiper inline + Fancybox click)
   ========================= */

.project-detail-gallery{
  position: relative;
  margin-top: -90px;
  padding: 0 0 60px;
  z-index: 5;
}

.project-detail-gallery .container-lg{
  padding: 0 150px;
}

.project-detail-gallery__row{
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* left gallery */
.project-detail-gallery__gallery{
  width: 50%;

  /* controla o Ã¢â‚¬Å“tamanhoÃ¢â‚¬Â do main (vocÃƒÂª disse que ficou muito grande) */
  --proj-main-h: 540px;     /* desktop */
  --proj-main-h-md: 410px;  /* <=1200 */
  --proj-main-h-sm: 460px;  /* <=991 */
  --proj-main-h-xs: 320px;  /* <=520 */
}

/* ===== MAIN (Swiper) ===== */
.project-gallery__main{
  display: block;
  overflow: hidden;
  background: #e9eef3;
  height: var(--proj-main-h);
  position: relative;
}

.project-gallery__main .swiper-wrapper,
.project-gallery__main .swiper-slide{
  height: 100%;
}

.project-gallery__main .swiper-slide > a{
  display: block;
  width: 100%;
  height: 100%;
}

.project-gallery__main img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* arrows */
.project-gallery__main .swiper-button-prev,
.project-gallery__main .swiper-button-next{
  color: #fff;
}

/* ===== THUMBS (Swiper) ===== */
.project-gallery__thumbs{
  margin-top: 10px;
  width: 100%;
}

.project-eyebrown{
  font-size:15px;
  margin-bottom:3px;
  font-weight: 100;
  text-transform: capitalize;
} 

span.project-card__label  {
    line-height: 25px;
}

.project-gallery__thumbs .swiper-wrapper{
  width: 100%;
}

 
.project-gallery__thumbs .swiper-slide{
  overflow: hidden;
  background: #e9eef3;
  opacity: .75;
  cursor: pointer;
  aspect-ratio: 4/3;
  height: auto;
}

.project-gallery__thumbs .swiper-slide-thumb-active{
  opacity: 1;
}

.project-gallery__thumbs img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* right content */
.project-detail-gallery__content{
  width: 50%;
  padding-top: 158px;
}

/* responsive */
@media (max-width: 1200px){
  .project-detail-gallery .container-lg{ padding: 0 32px; }
  .project-detail-gallery{ margin-top: -70px; }
  .project-detail-gallery__gallery{ --proj-main-h: var(--proj-main-h-md); }
}

@media (max-width: 991px){
  .project-detail-gallery{
    margin-top: -30px;
    padding-bottom: 44px;
  }
  .project-detail-gallery .container-lg{ padding: 0 20px; }

  .project-detail-gallery__row{ display: block; }
  .project-detail-gallery__gallery,
  .project-detail-gallery__content{ width: 100%; }

  .project-detail-gallery__content{ padding-top: 18px; }
  .project-detail-gallery__gallery{ --proj-main-h: var(--proj-main-h-sm); }
}

@media (max-width: 520px){
  .project-detail-gallery__gallery{ --proj-main-h: var(--proj-main-h-xs); }
}


/* =========================
   PROJECT DETAILS (cards)
   container-2
   ========================= */

.project-details{
  /* padding: 60px 290px; */
}

.project-details h3{
  margin: 0 0 22px;
}

/* row */
.project-details__row{
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

/* card */
.project-details__card{
  flex: 1 1 275px;
  background: #0071BA; /* close to reference (adjust if you already have a brand blue var) */
  border-radius: 6px;
  padding: 15px 30px;
  min-height: 100px;
  display: flex;
  max-width: 310px;
  flex-direction: column;
  justify-content: center;
}

/* title in card */
.project-details__label{
  color: #FFF;
  text-align: center;
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
}

/* value */
.project-details__value{
  color: #FFF;
  text-align: center;
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

/* responsive */
@media (max-width: 991px){
  .project-details{ padding: 44px 0; }
  .project-details__row{ gap: 16px; }
}
@media (max-width: 520px){
  .project-details{padding: 0 0;}
  .project-details__card{ flex: 1 1 100%; }
}

 
.filter-input {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #AAA;
    border-radius: 10px;
    background: #fff;
    /* height: 27px; */
    padding: 9px;
    color: var(--dark-gray, #54565B);
    font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    white-space: nowrap;
    margin-bottom: 10px;
    transition: background .15s ease, opacity .15s ease;
}

@media (max-width: 1200px) {}
@media (max-width: 991px) {
.filter-input {width:100%;}}
@media (max-width: 768px) {}