@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

.header-2 ul{
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 20px;
}

.header-2 ul a{
  font-family: Lato, sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  position: relative;
}

@media (min-width: 768px){
  .header-2 ul a{
    font-size: 20px;
  }
}

.header-2 ul a:hover{
  transform: scale(1.05);
  transition: transform .3s linear;
}


.header-2 ul a:hover:after{
  position: absolute;
  width: 100%;
  top: calc(100% + 3px);
  left: 0;
  content: '';
  border-bottom: 2px solid #fff;
  transition: all .3s linear;
}

.filial-btn{
  padding: 12px 75px;
  background: #982123;
  border-radius: 999px;
  color: #FFF;
  font-family: "Open Sans";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  filter: drop-shadow(0px 9px 7.6px rgba(152, 33, 35, 0.28));
  transition: transform 0.3s ease-in-out;
  border: none;
}

@media screen and (min-width: 768px){
  .filial-btn{
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 992px){
  .filial-btn{
    font-size: 1.7rem;
  }
}

.filial-btn:hover{
  transform: scale(1.05) translateY(-3px);
  filter: drop-shadow(0px 9px 7.6px rgba(152, 33, 35, 0.28));
}

.header-1{
  padding-top: 6px;
  padding-bottom: 6px;
  
}
.header-1 .fetram-logo img{
  width: 100%;
  max-width: 40px;
}

.header-1__links{
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.header-1__links a{
  color: #982123;
  font-size: 16px;
  text-decoration: none;
}

.header-2{
  background-color: #D02C2D;
  height: 142px;
  padding-top: 40px;
  padding-bottom: 40px;
  
}

.header-2__wrapper{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.header-2__wrapper .filial-logo img{
  width: 100%;
  max-width: 130px;
  filter: brightness(0) invert(1);
}

@media screen and (min-width: 768px){
  .header-2__wrapper .filial-logo img{
    max-width: 150px;
  }
}

.header-2__nav{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 27px;
}

@media (min-width: 769px){
 .header-2__nav{
    flex-direction: row;
    align-items: center;
 }
}

.header-2__wrapper input{
  border: none;
  width: 100%;
}

.header-2__wrapper form{
  background-color: #fff;
  border-radius: 9px;
  padding: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 250px;
}

@media (min-width: 768px){
  .header-2__wrapper form{
    width: 300px;
  }
}

.header-2__wrapper form button{
  background: transparent;
  color: #D02C2D;
  font-size: 24px;
  border: none;
}

.menu-btn{
  display: flex;
  color: #fff;
  gap: 4px;
  align-items: center;
  text-decoration: none;
}

.menu-btn i{
  font-size: 24px;
}

.menu-btn span{
  color: #FFF;
  font-family: "Open Sans";
  font-size: 0.6875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.filial-news{
  padding-top: 105px;
  padding-bottom: 68px;
  background-color: #F3F3F3;

}

.item-main-news{
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.item-main-news__image{
  width: 100%;
  padding-top: 70%;
  position: relative;
  overflow: hidden;
}

.item-main-news__image::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0000 60.1%, #00000033, #0000005a 100%);
}

.item-main-news:hover .item-main-news__image img{
  transform: scale(1.3);
}

.item-main-news__image img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.item-main-news__legend{
  color: #982123;
  font-family: "Open Sans";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal; 
  text-transform: uppercase;
  display: inline-block;
}

.item-main-news__title{
  color: #000;
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

@media screen and (min-width: 768px){
  .item-main-news__title{
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 992px){
  .item-main-news__title{
    font-size: 2rem;
    line-height: 2.375rem;
  }
}

.grid-main-news{
  display: grid;
  margin-bottom:  58px;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: 'a a'
                        'b c'
                        'd e';
  gap: 15px;
}

@media screen and (min-width: 768px){
  .grid-main-news{
    grid-template-areas: 'a a a a b c'
    'a a a a b c'
    'a a a a d d'
    'a a a a d d';
    gap: 22px;
    grid-template-columns: repeat(6, 1fr);
  }
}

.grid-main-news > a:nth-child(1){
  grid-area: a;
}

.grid-main-news > a:nth-child(2){
  grid-area: b;
}

.grid-main-news > a:nth-child(3){
  grid-area: c;
}

.grid-main-news > a:nth-child(4){
  grid-area: d;
}

.grid-main-news > a:nth-child(1) .item-main-news__image{
  padding-top: 65%;
}

.grid-main-news > a:nth-child(n+2) .item-main-news__legend{
  font-size: 0.9375rem;
  margin-bottom: 13px !important;
}

.grid-main-news > a:nth-child(n+2) .item-main-news__title{
  font-size: 1rem;
  line-height: normal;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 64.5px;
}

.main-news-grid-2{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 23px 17px;
  margin-bottom: 90px;
}

@media screen and (min-width: 768px){
  .main-news-grid-2{
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 140px);
  }
}

@media screen and (min-width: 992px){
  .main-news-grid-2{
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 140px);
  }
}

.item-main-news-h{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.item-main-news-h__image{
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;

}

.item-main-news-h__image img{
  display: block;
  width: 100%;
  max-width: 100%;
  height: 140px;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.item-main-news-h__image:hover img{
  transform: scale(1.3);
}

.item-main-news-h__content{
  display: flex;
  flex-direction: column;
  gap: 9px;
  
}

.item-main-news-h__title{
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.section-title{
  overflow: hidden;
  height: 100px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}

@media screen and (min-width: 768px){
  .section-title{
    height: 134px;
  }
}

.section-title .container{
  height: 100%;
}

.section-title .section-title-bg{
  position: absolute;
  right: 0;
  height: 100%;
  width: auto;
}

@media screen and (max-width: 991px){
  .section-title-bg{
    filter: grayscale(100%);
    opacity: 0.1;
  }
}

.section-title h2{
  color: #000;
  font-family: "Open Sans";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: inline-block;
  border-left: 10px solid #D02C2D;
  padding-left: 14px;
  margin-bottom: 0;
}

@media screen and (min-width: 768px){
  .section-title h2{
    font-size: 2rem;
  }
}

@media screen and (min-width: 992px){
  .section-title h2{
    font-size: 3rem;
  }
}

.fetram-informa{
  background-color: #F3F3F3;
  padding-top: 56px;
  padding-bottom: 56px;
}

@media screen and (min-width: 768px){
  .fetram-informa{
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

@media screen and (min-width: 992px){
  .fetram-informa{
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.fetram-informa__grid{
  display: grid;
  grid-template-areas:  'a a d'
                        'b c d'
                        'e e d';
  gap: 22px;
  /* grid-template-columns: repeat(7, 1fr); */
  /* grid-template-rows: repeat(4, minmax(1fr, 120px)); */
  margin-bottom: 120px;
}

@media screen and (min-width: 992px){
  .fetram-informa__grid{
    grid-template-areas:  'a a a a b c d'
                        'a a a a e e d'
                        'a a a a e e d';
    gap: 22px;
  }
}

.fetram-informa__grid .item-fetram-informa{
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.fetram-informa__grid > a:nth-child(1){
  grid-area: a;
}

.fetram-informa__grid > a:nth-child(1) .item-main-news__image{
  padding-top: 0;
  height: 230px;
}

@media screen and (min-width: 992px){
  .fetram-informa__grid > a:nth-child(1) .item-main-news__image{
    padding-top: 0;
    height: 520px;
  }
}

.fetram-informa__grid > a:nth-child(2){
  grid-area: b;
}

.fetram-informa__grid > a:nth-child(2) .item-main-news__title,
.fetram-informa__grid > a:nth-child(3) .item-main-news__title{
  font-size: 1rem;
  line-height: normal;
  height: 64.5px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fetram-informa__grid > a:nth-child(2) .item-main-news__legend,
.fetram-informa__grid > a:nth-child(3) .item-main-news__legend{
  font-size: 0.9375rem;
  margin-bottom: 0 !important;
}

.fetram-informa__grid > a:nth-child(2) .item-main-news__image,
.fetram-informa__grid > a:nth-child(3) .item-main-news__image{
  padding-top: 0;
  height: 118px;
}

.fetram-informa__grid > a:nth-child(3){
  grid-area: c;
}

.fetram-informa__grid > a:nth-child(4) .item-main-news__title{
  font-size: 0.875rem;
}

@media screen and (min-width: 768px){
  .item-main-news__title{
    font-size: 1.25rem;
  } 
}

@media screen and (min-width: 992px){
  .item-main-news__title{
    font-size: 1.5rem;
  } 
}

.fetram-informa__grid > a:nth-child(4) .item-main-news__image{
  padding-top: 65%;
}

.fetram-informa__grid > a:nth-child(4){
  grid-area: e;
}


.fetram-informa__grid .fetram-informa__grid-more{
  grid-area: d;
}

.fetram-informa__grid-more{
  background-color: #EBEBEB;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fetram-informa__grid-more .item-main-news-more{
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.fetram-informa__grid-more .item-main-news-more:not(:last-child){
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #7d7d7d;
}

.fetram-informa__grid-more .item-main-news-more .item-main-news-more__legend{
  color: #982123;
  font-family: "Open Sans";
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.fetram-informa__grid-more .item-main-news-more .item-main-news-more__title{
  color: rgba(0, 0, 0, 0.61);
  font-family: "Open Sans";
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.midia{
  background-color: #F3F3F3;
  position: relative;
  z-index: 2;
}

.midia .container{
  padding-bottom: 56px;
  padding-top: 56px;
}

@media screen and (min-width: 768px){
  .midia .container{
    padding-bottom: 72px;
    padding-top: 72px;
  }
}

@media screen and (min-width: 992px){
  .midia .container{
    padding-bottom: 100px;
    padding-top: 100px;
  }
}

/* .midia__grid{
  display: grid;
  grid-template-columns: 3fr 3fr 6fr;
  gap: 20px;
  
} */


.midia__grid__panel{
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  max-height: 750px;
  background-color: #fff;
  padding: 24px;
  box-shadow: 0px 4px 11.5px 2px rgba(0, 0, 0, 0.08);
  border-radius: 8px;  
  overflow: hidden;
}

 .docs-wrapper{
  display: flex;
  flex-direction: column;
  gap: 25px;
  height: 100%;
  overflow-y: auto;
}

.docs-wrapper .doc-item{
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
}

.doc-item time{
  color: #000;
  font-family: Lato;
  font-size: 0.625rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5rem; /* 240% */
  padding: 0 14px;
  border-radius: 6px;
  background: rgba(217, 217, 217, 0.34);
}

.panel-title{
  position: relative;
  padding-right: 20px;
  display: block;
  width: 100%;
  margin-bottom: 24px;
  z-index: 2;
}

.midia__grid__panel h3{
  display: inline-block;
  color: #000;
  font-family: Lato, sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  background-color: #fff;
  text-transform: uppercase;
  padding-right: 10px;
}

.panel-title::after{
  z-index: -1;
  content: '';
  display: block;
  width: 100%;
  height: 5px;
  background-color: #982123;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}

.doc-item a{
  color: #2D3093;
  font-family: Lato;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5rem; /* 150% */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.video-item{
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.video-item video{
  width: 100%;
  height: 150px;
  object-fit: cover;
  position: relative;
}

.video-wrapper{
  position: relative;
}

/* .video-wrapper:after{
  content: '\f04b';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  pointer-events: none;
} */

.video-item .video-title{
  color: #000;
  font-family: Lato;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.videos-wrapper{
  display: flex;
  flex-direction: column;
  gap: 17px;
  overflow-y: auto;
}


.photos-slide-item{
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 21px;
}

.photos-slide-item img{
  width: 100%;
  height: 485px;
  object-fit: contain;
  object-position: center;
  background-color: #000;
}

.photos-slide-item .slide-title{
  color: #000;
  font-family: Lato;
  font-size: 1rem;
  font-style: italic;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  max-width: 80%;
  display: block;
}

.photos .slick-arrow{
  font-size: 48px;
  color: #fff;
  border: none;
  z-index:1;
  background: transparent;
}

.photos .slick-prev{
  left: 13px;
  position: absolute;
  top: 242.5px;
  transform: translateY(-50%);
}

.photos .slick-next{
  right: 13px;
  position: absolute;
  top: 242.5px;
  transform: translateY(-50%);
}

.midia .network-social{
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 100px;
}

@media screen and (min-width: 768px){
  .midia .network-social{
    gap: 50px;
  }
}

@media screen and (min-width: 992px){
  .midia .network-social{
    gap: 90px;
  }
}

.midia .network-social i{
  font-size: 42px;
  color: #982123;
}

@media screen and (min-width: 768px){
  .midia .network-social i{
    font-size: 60px;
  }
}

@media screen and (min-width: 992px){
  .midia .network-social i{
    font-size: 80px;
  }
}



.midia .container{
  position: relative;
}

.midia .hands-img{
  position: absolute;
  bottom: 0;
  right: calc(100% - 40px);
  width: 100%;
  max-width: 411px;
  height: auto;
  z-index: -1;
}

.midia .filial-btn{
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  margin-bottom: 0;
  font-size: 1rem;
  text-align: center;
}

.contato{
  padding-top: 56px;
  padding-bottom: 56px;
}

@media screen and (min-width: 768px){
  .contato{
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

@media screen and (min-width: 992px){
  .contato{
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.contato h2{
  color: #000;
  font-family: "Open Sans";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: relative;
  margin-bottom: 17px !important;
  text-align: center;
  display: block;
  text-transform: uppercase;
}

@media screen and (min-width: 768px){
  .contato h2{
    font-size: 2rem;
  }
}

@media screen and (min-width: 992px){
  .contato h2{
    font-size: 2.75rem;
  }
}

.contato h2::after{
  content: '';
  display: block;
  width: 280px;
  height: 5px;
  border: 4px solid #982123;
  bottom: auto;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;

}

.contato h3{
  color: #000;
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  display: block;
}

@media screen and (min-width: 768px){
  .contato h3{
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 992px){
  .contato h3{
    font-size: 2rem;
  }
}

.contato form{
  display: flex;
  flex-direction: column;
  gap: 19px;
  max-width: 612px;
  width: 100%;
  margin-top: 100px;
}

.contato form input{
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: #FFF;
  color: #000;
  font-family: "Open Sans";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 60px;
  height: 60px;
  padding: 0 16px;
}

.contato form input::placeholder,
.contato form textarea::placeholder{
  color: rgba(102, 102, 102, 0.49);
  font-family: "Open Sans";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.contato form textarea{
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: #FFF;
  color: #000;
  font-family: "Open Sans";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 12px 16px;
  margin-bottom: 73px;
  display: block;
}

.contato .or-text{
  margin-top: 60px;
}

.or-text{
  display: inline-block;
  width: 373px;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
  text-align: center;
  z-index: 2;
}

.or-text span{
  display: inline-block;
  text-transform: uppercase;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  padding: 0 10px;
  color: #000;
  text-align: center;
  font-family: "Open Sans";
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.or-text:after{
  content: '';
  height: 1px;
  width: 100%;
  border: 1px solid #000;
  display: block;
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contato .see-more{
  margin-top: 60px;
}

.contato .see-more i{
  color: #982123;
  font-size: 80px;

}

.contato .see-more i.fa-phone{
  transform: rotate(90deg);
}

.filial-footer{
  background-color: #373737;
  padding-top: 65px;
  padding-bottom: 100px;
}

.footer-logos{
  display: flex;
  align-items: center;
  gap: 20px;
}

@media screen and (min-width: 768px){
  .footer-logos{
    gap: 46px;
  }
}

.footer-logos img{
  width: 100%;
  max-width: 160px;
  height: auto;
  filter: brightness(0) invert(1);
}

.menu-footer-wrapper{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.menu-footer-title{
  color: #FFF;
  font-family: "Open Sans";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.menu-footer-wrapper p{
  color: #FFF;
  font-family: "Open Sans";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-bottom: 0 !important;
}

.menu-footer-wrapper ul{
  padding: 0;
  margin: 0;
  list-style: none;
}

/* .menu-footer-wrapper ul li{
  margin-bottom: 10px;
} */

.menu-footer-wrapper ul li a{
  color: #FFF;
  font-family: "Open Sans";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-decoration: none;
}

.item-main-news-h__legend{
  color: #982123;
  font-family: "Open Sans";
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.item-main-news-h__title{
  color: #000;
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.diretoria-filial {
  padding-top: 56px;
  padding-bottom: 56px;
  background-color: #fff;
}

@media (min-width: 768px) {
  .diretoria-filial {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

@media (min-width: 1200px) {
  .diretoria-filial {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.presidencia-filial{
  background-color: #F3F3F3;
  padding-top: 56px;
  padding-bottom: 56px;
}

@media (min-width: 768px) {
  .presidencia-filial {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

@media (min-width: 1200px) {
  .presidencia-filial {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.presidencia-membro{
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 280px;
  overflow: hidden;
  border-radius: 10px;
  background-color: #fff;
}

@media screen and (min-width: 992px){
  .presidencia-membro{
    max-width: 350px;
  }
}

.presidencia-membro__thumb{
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.presidencia-membro__thumb:hover img{
  transform: scale(1.3);
  transition: transform 0.3s ease-in-out;
}

.presidencia-membro__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.presidencia-membro__content{
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.presidencia-membro__content h3{
  color: #000;
  font-family: "Open Sans";
  font-size: 1.25rem;
  font-weight: 600;
  line-height: normal;
}

.presidencia-membro__content p{
  color: #000;
  font-family: "Open Sans";
  font-size: 1rem;
}


.galeria-filial{
  padding-top: 56px;
  padding-bottom: 56px;
  background-color: #F3F3F3;
}

@media (min-width: 768px) {
  .galeria-filial {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

@media (min-width: 1200px) {
  .galeria-filial {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.galeria-filal__item{
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 24px;
  width: 100%;
  max-width: 350px;
}

.galeria-filal__item__thumb{
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  overflow: hidden;
}

.galeria-filal__item__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.galeria-filal__item__thumb:hover img{
  transform: scale(1.3);
  transition: transform 0.3s ease-in-out;
}

.galeria-filal__item__content{
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.galeria-filal__item__content h3{
  color: #000;
  font-family: "Open Sans";
  font-size: 1.25rem;
  font-weight: 600;
  line-height: normal;
}

.galeria-filal__item__content p{
  color: #000;
  font-family: "Open Sans";
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
}

@media screen and (max-width: 767px){
  #sidebar-noticias{
    margin-top: 30px;
    padding-left: 0 !important;
  }
}

@media (max-width: 767px){
  .page-template-noticias-filial .t-item-post{
    font-size: 25px !important;
    line-height: 32px !important;
  }

  #noticias-main .item-post.main{
    height: 268px !important;
  }

  .page-template-noticias-filial .item-post.main .t-item-post{
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: -webkit-box !important;
    line-height: 32px !important;     /* fallback */
    max-height: 64px !important;      /* fallback */
    -webkit-line-clamp: 3 !important; /* number of lines to show */
    -webkit-box-orient: vertical !important;
  }

  .page-template-noticias-filial .item-post.main{
    padding: 18px 15px !important;
    margin-bottom: 24px;
  }
}


.topo-fetram-wrapper{
  padding-top: 40px;
}

@media (min-width: 992px) {
  .topo-fetram-wrapper{
    padding-top: 120px;
  }
}

#topo-fetram .topo-fetram-wrapper h1{
  font-size: 28px;
  line-height: normal;
}

@media (min-width: 992px){
  #topo-fetram .topo-fetram-wrapper h1{
    font-size: 58px;
    line-height: 62px;
  }
}

#topo-fetram .topo-fetram-wrapper .txt-topo{
  font-size: 16px;
  line-height: 22px;
}

@media (min-width: 992px){
  #topo-fetram .topo-fetram-wrapper .txt-topo{
    font-size: 25px;
    line-height: 30px;
  }

}

@media (max-width: 767px){
  .page-template-noticias-filial .container-num-pagi{
    justify-content: center;
  }
}