@charset "UTF-8";
/* ========================================
   VARIÁVEIS
======================================== */
:root {
  /* Fontes */
  --montserrat: "Montserrat", sans-serif;
  /* Cores */
  --white: #ffffff;
  --black: #454545;
  --orange-400: #D97743;
  --orange-300: #DEAD93;
  --green-400: #017148;
  --green-300: #ABCFA4;
  --green-200: #E6f1E3;
  --purple-400: #918EBD;
  --purple-300: #DEDDEB;
}

body.page,
.site {
  background-color: #F3E9DD;
  margin-bottom: 0;
}

.color-green {
  color: var(--green-400);
}

/* ========================================
   GLOBAL
======================================== */
* {
  font-family: var(--montserrat);
  line-height: 100%;
}

.text-upper {
  text-transform: uppercase;
}

.text-red {
  color: var(--red-1);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--montserrat) !important;
  line-height: 100%;
  font-weight: 400;
}

p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 300;
  color: var(--black);
}
@media (max-width: 767px) {
  p {
    font-size: 16px;
  }
}

.btn {
  border-radius: 50px;
  border: none;
  padding: 12px 20px;
  transition: all ease-out 0.2s;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.btn-primary {
  background-color: var(--orange-400);
  color: var(--white) !important;
}
.btn-primary:focus, .btn-primary:active, .btn-primary:hover {
  box-shadow: none !important;
  background-color: var(--orange-300);
}
.btn-secondary {
  background-color: var(--green-400);
  color: var(--white) !important;
}
.btn-secondary:focus, .btn-secondary:active, .btn-secondary:hover {
  box-shadow: none !important;
  background-color: var(--green-400);
}
.btn-icon img {
  position: relative;
  top: -2px;
}

.section-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.img-play {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.img-play-icon {
  position: absolute;
  transition: transform ease-out 0.3s;
}
.img-play:hover .img-play-icon {
  transform: scale(1.1);
}

.slick-dots {
  max-width: 90vw;
}

.slick-custom-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: -10px;
  margin-left: auto;
  margin-right: 25px;
}
.slick-custom-controls img {
  height: 30px;
  width: 30px;
  cursor: pointer;
}

.slick-dots li button:before {
  font-size: 12px !important;
  color: var(--green-400) !important;
}

.carousel-hero {
  position: relative;
  top: 70px;
}
.carousel-hero::after {
  content: "";
  background: url("../../images/wave-fx-1.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 80px;
  width: 100%;
  display: block;
  position: absolute;
  bottom: -25px;
}

.banner-main {
  position: relative;
  margin-bottom: 50px;
}
.banner-main::after {
  content: "";
  background: url("../../images/wave-fx-1.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 80px;
  width: 100%;
  display: block;
  position: absolute;
  bottom: -25px;
}

.carousel-indicators {
  gap: 3px;
  bottom: 20px;
}
.carousel-indicators [data-bs-target] {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  border: 1px solid var(--white);
  background-color: transparent;
}
.carousel-indicators .active {
  background-color: var(--white);
}

.carousel-item-next, .carousel-item-prev, .carousel-item.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-toggler {
  border: 1px solid var(--green-300);
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-toggler:hover, .navbar-toggler:active, .navbar-toggler:focus {
  border: none;
  box-shadow: none !important;
}

.navbar-toggler-icon-bar {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50px;
  background-color: var(--green-300);
  margin: 5px auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-toggler[aria-expanded=true] .navbar-toggler-icon-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  margin-bottom: -3px;
  width: 26px;
  height: 3px;
}

.navbar-toggler[aria-expanded=true] .navbar-toggler-icon-bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded=true] .navbar-toggler-icon-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  width: 26px;
  height: 3px;
}

@media (max-width: 1199px) {
  .navbar-collapse .collapsing,
  .navbar-collapse {
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 10;
    background: var(--green-400);
    width: 250px;
    padding: 15px;
    height: 300px;
  }
  .navbar-nav {
    gap: 0 !important;
    height: 100%;
    align-items: center;
    justify-content: space-around;
  }
  .nav-item {
    text-align: center;
  }
  .nav-item a {
    width: 100%;
    padding-right: 13px;
    padding: 14px 0;
  }
  .nav-item:first-of-type a, .nav-item:last-of-type a {
    border-top: none;
  }
  ul.navbar-nav.ms-auto.mb-2.mb-md-0 {
    text-align: right;
    justify-content: center;
    align-items: end;
    padding-right: 20px;
    gap: 30px;
    display: flex;
}
button.navbar-toggler:not(.collapsed) {
    z-index: 9999;
    text-align: left;
    justify-content: space-around;
    left: 0;
    position: absolute;
}
div#main-menu {
    width: 100vw;
    height: 100vh;
    top: 0;
}
    .nav-item {
        text-align: center;
        margin-bottom: 1rem;
    }
}
@media (max-width: 767px) {
  .navbar-collapse .collapsing,
  .navbar-collapse {
    width: 70vw;
  }
  .carousel-hero .carousel-item img,
  .carousel-hero .carousel-inner {
    height: 450px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .banner-main {
    height: 450px !important;
  }
}
@media (max-width: 576px) {
  .carousel-hero .carousel-item img,
  .carousel-hero .carousel-inner {
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .banner-main {
    height: 300px !important;
  }
}
.navbar {
  display: flex;
  align-items: center;
}
.navbar-nav {
  gap: 15px;
}
.navbar .nav-link:not(.btn) {
  font-size: 16px;
  color: var(--white);
}
.navbar .nav-link:not(.btn).active {
  opacity: 1;
}

.hero {
  background-image: url(../images/bg-banner.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}
.hero .navbar {
  padding-top: 20px;
  padding-bottom: 20px;
}
.hero .navbar img {
  height: 60px;
}
@media (max-width: 767px) {
  .hero .navbar img {
    height: 40px;
  }
}

.banner {
  height: 80vh;
  min-height: 600px;
}
.banner h1 {
  color: var(--white);
  font-size: 64px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .banner {
    height: auto;
    min-height: 400px;
  }
  .banner h1 {
    font-size: 32px;
  }
}

.title .title-tagline {
  font-size: 16px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 3px;
}
.title h2 {
  font-size: 58px;
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 767px) {
  .title h2 {
    font-size: 32px;
  }
}

.barbacena {
  background-image: url(../images/bg-barbacena.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.barbacena .title {
  margin-bottom: 220px;
}
.barbacena .title .title-tagline {
  color: var(--white);
}
.barbacena .title h2 {
  color: #017148;
}
.barbacena-content {
  max-width: 65%;
}
.barbacena-content p {
  color: var(--white);
}

.about {
  position: relative;
}
.about-img {
  position: absolute;
  top: 0;
}
.about-icon {
  position: absolute;
  top: -52px;
  left: -40px;
}
.about .title h2 {
  color: #017148;
}
@media (max-width: 767px) {
  .about-icon {
    display: none;
  }
}

.blog-item {
  padding-left: 20px;
  padding-right: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.blog-item:hover {
  transform: scale(1.02);
}
.blog a {
  display: block;
  text-decoration: none;
  height: -moz-fit-content;
  height: fit-content;
}
.blog .blog-img {
  width: 100%;
  border-radius: 4px;
}
.blog h2 {
  color: #1B2C25;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  white-space: nowrap;
}
.blog h2::after {
  content: "";
  display: block;
  background-color: var(--green-300);
  height: 1px;
  width: 100%;
  border-radius: 50px;
}
.blog-category {
  letter-spacing: 1.2px;
  font-size: 15px;
  color: #000;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.blog h3 {
  color: var(--orange-400);
  font-weight: 600;
}
@media (max-width: 767px) {
  .blog-row {
    gap: 20px;
  }
  .blog-item {
    padding-left: 0;
    padding-right: 0;
  }
}

.footer {
  padding: 0;
}
.footer p {
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 0;
}
.footer-bg {
  height: 300px;
  background-image: url(../images/bg-footer.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
}
.footer-row {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 767px) {
  .footer-bg {
    height: 160px;
  }
  .footer-row {
    padding: 40px 0;
    height: auto;
    flex-direction: column;
    gap: 30px;
  }
  .footer-social, .footer-logo {
    flex-direction: column;
  }
  .footer-social {
    align-items: center;
  }
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social p {
  font-size: 14px;
  font-weight: 500;
}
.footer-social ul {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style-type: none;
  padding: 0;
  margin-bottom: 0;
}

.single-post .hero {
  display: none;
}
.single-post article img {
  border-radius: 12px;
}
.single-post .entry-title {
  color: var(--green-400);
  font-size: 58px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 30px;
}
.single-post .navigation.post-navigation,
.single-post .entry-footer,
.single-post .entry-meta {
  display: none;
}

.single-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0;
}
.single-head a {
  color: var(--orange-400);
  text-decoration: none;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  transition: filter 0.3s ease;
  pointer-events: none;
}
.single-head a:hover {
  color: var(--orange-400);
}
.single-head .back-link {
  pointer-events: initial;
  transition: all 0.3s ease;
}
.single-head .back-link:hover {
  transform: scale(1.05);
}/*# sourceMappingURL=irpa.css.map */