/* CSS Document */

 
.col-lg-4 {
  width: 33%;
  display: inline-flex;
  vertical-align: top;
}
@media (max-width: 991px) {
  .col-lg-4 {
    width: 100%;
  }
}

/*=========================================== Logo SECTION ==============================================*/
.logo {
  position: relative;
  text-align: center;
  background: #2F2A28;
  height: 125px;
}
.logo img {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 25px;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .logo {
    height: 65px;
  }
  .logo img {
    top: 15px;
    max-width: 140px;
  }
}

/*=========================================== Header SECTION ==============================================*/

.header-section {
  position: relative;
  text-align: center;
  /* padding: 80px 0; */
}
.header-section p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 21.94px;
  letter-spacing: 0;
}
.header-section:before,
.header-section:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 33%;
  background-repeat: no-repeat;
}

.header-section .container {
  position: relative;
  z-index: 2;
  padding: 160px;
  padding-bottom: 50px;
}
.header-section.ready .container {
  opacity: 1;
  animation: fadeInUp 1.2s both;
}
.header-section h2.h1-style {
  color: var(--Dark-Gray, #333);
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 27px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 111.111% */
}

@media (max-width: 505px) {
.header-section .container {
  padding-left:80px;
  padding-right:80px
}
}


/* buttons Layout */
.btn-layout {
  display: inline-flex;
  height: 60px;
  padding: 3px 26px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 300px;
  border: solid 2px #FFC107;
  background: #FFC107;
  color: #000;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 0;
  transition: all .3s ease;
}
.btn-layout:hover,
.btn-layout:focus {
  border-color: #FFC107;
  background: #000;
  background: #F8F8FF;
}

.grey-btn-layout {
  background: var(--Dark-Gray, #333);
  color:#FFC107;
  color: var(--Yellow, #FFC107);
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 166.667% */
  padding: 30px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.grey-btn-layout:hover,
.grey-btn-layout:focus{
  background: var(--Yellow, #FFC107);
  color:#333;
  border-color:#333;
}



@media (max-width: 991px) {
  .btn-layout {
    /* height: 30px; */
    /* padding: 3px 16px; */
    font-size: 14px;
  }
}






/*  About */
.about {
  position: relative;
  padding: 87px 15px 50px;
  text-align: center;
}
.about .bnn {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.about img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about > div {
  display: block;
  position: relative;
  max-width: 1140px;
  margin: 0 auto 38px;
}
.about h2 {
  color: var(--Yellow, #FFC107);
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 900;
  line-height: 30px;
}
.about p {
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin: 60px 0;
}
.about label,
.about legend {
  color: #fff !important;
  text-align: left;
}
@media (max-width: 768px) {
  .about h2 {
    font-size: 26px;
  }
  .about p {
    font-size: 16px;
  }
}

/* FOOTER */

.footer {
  position: relative;
  text-align: center;
  padding-top: 80px;
  /* background: url(../img/bnn-footer.png) #FFC107 center top no-repeat;
  background-size: contain; */
  padding-bottom: 80px;
}

.footer-content {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
}

.footer-social a {
  margin: 0 10px;
  color: #000;
  color: var(--Dark-Gray, #333);
  text-align: center;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;  
}

.footer-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 41px 0;
  margin: 0;
}
.footer-menu li a {
  color: var(--Dark-Gray, #333);
  text-align: center;
  font-family: "inter-variable", sans-serif;  
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 166.667% */
}

.footer-cta {
  margin: 20px 0;
  margin-bottom: 59px;
}

.footer-contact {
  color: #000;
  font-size: 16px;
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 49px;
  color: var(--Dark-Gray, #333);
  text-align: center;
  font-family: "inter-variable", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 166.667% */
  /* margin-top: 70px; */
}
.footer-contact i {
  margin-right: 5px;
  
}

 
.bottom-footer {
  background-color: #333;
  padding: 60px 15px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.bottom-footer .footer-logo {
  position: absolute;
  top: -80px; /* sobe o logo */
  left: 50%;
  transform: translateX(-50%);
}

.bottom-footer .footer-logo img {
  max-width: 180px;
}

.bottom-footer p {
  color: #ccc;
  font-size: 12px;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-menu {
    flex-direction: column;
    gap: 10px;
  }
  .footer-contact {
    font-size: 17px;
    display: flex;
    flex-flow: column;
    gap: 11px;
    padding-bottom: 20px;
  }
}

.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%; /* controle direto da altura da imagem */
  background: linear-gradient(rgba(255, 193, 7, 0.8), rgba(255, 193, 7, 0.8)), 
  url(/wp-content/uploads/2025/04/services-home3.webp);  background-size: cover;
  z-index: 0;
  background-position:center;
}



@media screen and (max-width: 600px) {
    #wpadminbar {
         position: fixed; 
    }
}