@charset "UTF-8";
/*
  ==================== SCSS ====================
*/
html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}

body {
  background-color: white;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  color: #555555;
}

::-moz-selection {
  background: #d3c2ae;
  color: white;
  text-shadow: none;
}

::selection {
  background: #d3c2ae;
  color: white;
  text-shadow: none;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  cursor: pointer;
}

::-webkit-scrollbar-thumb {
  background-color: #c6aa6a;
  border-radius: 0px;
  cursor: pointer;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #bc945e;
}

::-webkit-scrollbar-track {
  background: #333333;
  border-radius: 0px;
}

#general-overlay {
  position: fixed;
  height: 100%;
  width: 0;
  left: 0;
  top: 0;
  z-index: 19;
  background-color: rgba(0, 0, 0, 0.75);
  transition: 0.3s;
}

/*
  ==================== LAYOUT ====================
*/
/*
  ==================== APP WRAPPER ====================
*/
.app-wrapper {
  display: grid;
  box-sizing: border-box;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  grid-template-areas: "header" "main" "footer";
}

#aside-menu {
  height: 100%;
  width: 280px;
  position: fixed;
  z-index: 20;
  left: -280px;
  top: 0;
  background-color: black;
  color: #777777;
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  transition: 0.5s;
  box-sizing: border-box;
}
#aside-menu .mobile-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #333333;
}
#aside-menu .mobile-wrapper .mobile-top {
  height: 60px;
  width: 100%;
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333333;
  color: white;
}
#aside-menu .mobile-wrapper .mobile-top button {
  font-size: 30px;
  color: white;
  padding: 0;
}
#aside-menu .mobile-wrapper .mobile-menu {
  display: flex;
  width: 100%;
  background-color: #777777;
}
#aside-menu .mobile-wrapper .mobile-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#aside-menu .mobile-wrapper .mobile-menu ul li {
  background-color: #d3c2ae;
  margin: 10px;
  padding: 10px;
  border-left: solid 8px #c6aa6a;
}
#aside-menu .mobile-wrapper .mobile-menu ul li a {
  text-decoration: none;
  color: #333333;
  font-weight: bold;
  text-transform: uppercase;
}
#aside-menu .mobile-wrapper .mobile-menu ul li a:hover,
#aside-menu .mobile-wrapper .mobile-menu ul li a .active {
  color: #d3c2ae;
}
#aside-menu .mobile-wrapper .mobile-menu .menu {
  width: 100%;
  height: auto;
  overflow: hidden;
}
#aside-menu .mobile-wrapper .mobile-menu .menu li {
  list-style: none;
  background-color: #333333;
  margin: 10px;
  padding: 10px;
  border-left: solid 6px #c6aa6a;
  font-size: 12px;
}
#aside-menu .mobile-wrapper .mobile-menu a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
}
#aside-menu .mobile-wrapper .mobile-menu a:hover,
#aside-menu .mobile-wrapper .mobile-menu a .active {
  color: #d3c2ae;
}
#aside-menu .mobile-wrapper .mobile-menu .menu .submenu {
  background: transparent;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.8s ease-out;
}
#aside-menu .mobile-wrapper .mobile-menu .menu .submenu a {
  display: block;
  position: relative;
  margin: 15px 0;
  color: #aaaaaa;
  text-transform: none;
  padding-left: 8px;
  padding-bottom: 5px;
  border-bottom: solid 1px #ccc;
}
#aside-menu .mobile-wrapper .mobile-menu .menu .submenu a:hover {
  color: #d3c2ae;
}
#aside-menu .mobile-wrapper .mobile-menu .menu .submenu a::before {
  content: "›";
  margin-right: 5px;
}
#aside-menu .mobile-wrapper .mobile-menu .item:target .submenu {
  max-height: 600px;
}

/*
  ==================== HEADER WRAPPER ====================
*/
.header-wrapper .header-desktop {
  display: flex;
  visibility: visible;
}
.header-wrapper .header-mobile {
  display: none;
  visibility: hidden;
}

/*
  ==================== HEADER DESKTOP ====================
*/
.header-home {
  background: none !important;
  border-bottom: none !important;
}

.header-desktop {
  width: 100%;
  flex-direction: column;
  min-height: 300px;
  background: url(../images/bg-wood-header.webp) no-repeat top center;
  border-bottom: 4px solid #c6aa6a;
}
.header-desktop .header-top {
  width: 100%;
  height: 50px;
  z-index: 999;
}
.header-desktop .header-top .container {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header-desktop .header-top .container div {
  margin-left: 20px;
  border-left: solid 1px #d3c2ae;
  padding-left: 20px;
}
.header-desktop .header-top .container div:first-child {
  border-left: none;
  margin-left: 0;
  padding-left: 0;
}
.header-desktop .header-top .container div i {
  margin-right: 5px;
  color: #c6aa6a;
}
.header-desktop .header-top .container .header-top-social {
  display: flex;
  gap: 10px;
}
.header-desktop .header-top .container .header-top-social a {
  width: 25px;
  height: 25px;
  color: white;
  text-decoration: none;
  background-color: #8c7542;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.header-desktop .header-top .container .header-top-social a i {
  color: white;
}
.header-desktop .header-top .container .header-top-social a:hover {
  background-color: #c6aa6a;
}
.header-desktop .header-top .container .header-top-social i {
  margin: 0;
}
.header-desktop .header-main {
  width: 100%;
  height: 80px;
  display: flex;
  position: relative;
  z-index: 999;
}
.header-desktop .header-main .header-main-left {
  width: 20%;
  height: 100%;
}
.header-desktop .header-main .header-main-right {
  width: 100%;
  height: 100%;
  flex: 1;
  background-color: #333333;
  transform: skew(-30deg);
  position: absolute;
  right: -300px;
}
.header-desktop .header-main .header-main-info {
  width: 100%;
  height: 100%;
  position: absolute;
}
.header-desktop .header-main .container {
  display: flex;
  height: 100%;
  align-items: center;
}
.header-desktop .header-main .header-main-info-logo {
  width: 180px;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-right: 40px;
}
.header-desktop .header-main .header-main-info-menu {
  width: 100%;
  height: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #777777;
  transform: skew(-30deg);
}
.header-desktop .header-main .header-main-info-menu ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  transform: skew(30deg);
}
.header-desktop .header-main .header-main-info-menu ul li {
  position: relative;
  padding: 20px 0;
}
.header-desktop .header-main .header-main-info-menu ul li:hover > ul {
  visibility: visible;
  opacity: 1;
  display: block;
  min-width: 270px;
  text-align: left;
  padding: 10px;
}
.header-desktop .header-main .header-main-info-menu ul li ul {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  padding-left: 0;
  margin-top: 16px;
  left: 0;
  display: none;
  background-color: #333333;
  z-index: 3 !important;
  transform: none !important;
}
.header-desktop .header-main .header-main-info-menu ul li ul li {
  width: auto;
  background-color: #777777;
  margin-bottom: 5px;
  padding: 5px 10px;
  border-left: #bc945e;
  cursor: pointer;
}
.header-desktop .header-main .header-main-info-menu ul li ul li:last-child {
  margin-bottom: 0px;
}
.header-desktop .header-main .header-main-info-menu ul li ul li:hover {
  background-color: #c6aa6a;
}
.header-desktop .header-main .header-main-info-menu ul li ul li:hover a {
  color: white;
}
.header-desktop .header-main .header-main-info-menu ul li ul a {
  text-transform: none;
  font-weight: 400;
}
.header-desktop .header-main .header-main-info-menu ul li ul a:hover {
  padding-left: 10px;
  border-left: 4px solid #d3c2ae;
  transition: all 0.3s ease;
}
.header-desktop .header-main .header-main-info-menu ul a {
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}
.header-desktop .header-main .header-main-info-menu ul a:hover, .header-desktop .header-main .header-main-info-menu ul a.active {
  color: #d3c2ae;
}

/*
  ==================== HEADER MOBILE ====================
*/
.header-mobile {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  background: url(../images/bg-wood-header.webp) no-repeat top center;
  border-bottom: 4px solid #c6aa6a;
}
.header-mobile .header-top {
  height: 40px;
  font-size: 14px;
  margin-bottom: 40px;
  z-index: 999;
}
.header-mobile .header-top .container {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header-mobile .header-top .container div {
  margin-left: 5px;
  border-left: solid 1px #d3c2ae;
  padding-left: 5px;
}
.header-mobile .header-top .container div:first-child {
  border-left: none;
  margin-left: 0;
  padding-left: 0;
}
.header-mobile .header-top .container div a {
  text-decoration: none;
  color: #d3c2ae;
  font-size: 14px;
}
.header-mobile .header-top .container div i {
  color: #d3c2ae;
  margin-right: 5px;
}
.header-mobile .header-top .container .header-top-social {
  display: flex;
  gap: 5px;
}
.header-mobile .header-top .container .header-top-social a {
  width: 25px;
  height: 25px;
  color: white;
  text-decoration: none;
  background-color: #8c7542;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.header-mobile .header-top .container .header-top-social a:hover {
  background-color: #c6aa6a;
}
.header-mobile .header-top .container .header-top-social i {
  color: white;
  margin: 0;
}
.header-mobile .header-main .container {
  height: 80px;
  width: 100%;
  display: flex;
  padding: 0;
}
.header-mobile .header-main .header-main-logo {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  position: relative;
  z-index: 9;
}
.header-mobile .header-main .header-main-logo img {
  width: 130px;
}
.header-mobile .header-main .header-main-navigation {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 20px;
}
.header-mobile .header-main .header-main-navigation button {
  color: white;
  outline: none;
  box-shadow: none;
  font-size: 24px;
  z-index: 2;
  background-color: #333333;
  padding: 20px;
}
.header-mobile .header-main .header-main-navigation button:hover {
  background-color: #c6aa6a;
}

/*
  ==================== MAIN WRAPPER ====================
*/
.main-wrapper {
  width: 100%;
  margin-top: -100px;
}
.main-wrapper .pages {
  margin: 60px 0;
}
.main-wrapper .img-fluid {
  max-width: 100%;
  height: auto;
}

/*
  ==================== MAIN RESPONSIVE ====================
*/
@media only screen and (max-width: 600px) {
  .main-wrapper {
    width: 100%;
    margin-top: -130px;
  }
  .main-wrapper .pages {
    padding: 0 20px;
  }
}
/*
  ==================== BREADCRUMB DESKTOP ====================
*/
.breadcrumb-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  position: relative;
  z-index: 1;
}
.breadcrumb-wrapper .container {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
}
.breadcrumb-wrapper div {
  display: flex;
  align-items: center;
  color: #c6aa6a;
  gap: 10px;
}
.breadcrumb-wrapper div i {
  display: flex;
  align-items: center;
  color: #d3c2ae;
}
.breadcrumb-wrapper div a {
  color: #d3c2ae;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}
.breadcrumb-wrapper div a:hover {
  color: #c6aa6a;
}
.breadcrumb-wrapper h1 {
  font-size: 36px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: #c6aa6a;
  position: relative;
  text-align: right;
}
.breadcrumb-wrapper h1::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 135px;
  height: 4px;
  background-color: #d3c2ae;
}

/*
  ==================== BREADCRUMB RESPONSIVE ====================
*/
@media only screen and (max-width: 600px) {
  .breadcrumb-wrapper {
    padding: 0;
    margin: 0;
  }
  .breadcrumb-wrapper .container {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
  }
  .breadcrumb-wrapper h1 {
    font-size: 30px;
  }
}
/*
  ==================== FOOTER WRAPPER ====================
*/
.footer-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  color: #aaaaaa;
  background: url(../images/bg-wood-footer.webp) repeat-y center top;
  border-top: 4px solid #c6aa6a;
}
.footer-wrapper .footer-main {
  height: 400px;
  display: flex;
  position: relative;
}
.footer-wrapper .footer-main .footer-main-info {
  width: 100%;
  height: 100%;
  position: absolute;
}
.footer-wrapper .footer-main .container {
  display: flex;
  height: 100%;
}
.footer-wrapper .footer-main .footer-main-info-logo {
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 25px;
  text-align: center;
}
.footer-wrapper .footer-main .footer-main-info-logo a img {
  width: 180px;
  margin: 0 5px;
}
.footer-wrapper .footer-main .footer-main-info-content {
  display: flex;
  flex: 1;
  height: 100%;
}
.footer-wrapper .footer-main .footer-main-info-content .footer-title {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 18px;
  position: relative;
  color: #aaaaaa;
}
.footer-wrapper .footer-main .footer-main-info-content .footer-title::before {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 30px;
  height: 3px;
  background-color: #c6aa6a;
}
.footer-wrapper .footer-main .footer-main-info-content .footer-main-info-content-menu {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 25px;
  padding-left: 160px;
  padding-top: 60px;
}
.footer-wrapper .footer-main .footer-main-info-content .footer-main-info-content-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-wrapper .footer-main .footer-main-info-content .footer-main-info-content-menu ul a {
  text-decoration: none;
  color: white;
  padding: 5px;
  transition: all 0.3s;
}
.footer-wrapper .footer-main .footer-main-info-content .footer-main-info-content-menu ul a::before {
  content: "›";
  padding-right: 6px;
  font-weight: bold;
  font-size: 24px;
  color: #c6aa6a;
}
.footer-wrapper .footer-main .footer-main-info-content .footer-main-info-content-menu ul a:hover {
  background-color: #c6aa6a;
  border-radius: 5px;
}
.footer-wrapper .footer-main .footer-main-info-content .footer-main-info-content-menu ul a:hover::before {
  color: white;
}
.footer-wrapper .footer-main .footer-main-info-content .footer-main-info-content-contato {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}
.footer-wrapper .footer-main .footer-main-info-content .footer-main-info-content-contato a {
  display: flex;
  text-decoration: none;
  color: white;
  align-items: center;
  transition: all 0.3s;
}
.footer-wrapper .footer-main .footer-main-info-content .footer-main-info-content-contato a:hover {
  color: #c6aa6a;
}
.footer-wrapper .footer-main .footer-main-info-content .footer-main-info-content-contato i {
  text-decoration: none;
  color: white;
  background-color: #bc945e;
  border-radius: 5px;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.footer-wrapper .footer-main .footer-main-info-content .footer-main-info-content-contato i:hover {
  background-color: #c6aa6a;
}
.footer-wrapper .footer-main .footer-main-info-content .footer-main-info-content-contato .footer-main-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-wrapper .footer-main .footer-main-info-content .footer-main-info-content-contato .footer-main-contact div {
  display: flex;
  flex-direction: column;
}
.footer-wrapper .footer-main .footer-main-info-content .footer-main-info-content-contato .footer-main-contact p {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #d3c2ae;
}
.footer-wrapper .footer-main .footer-main-info-content .footer-main-info-content-contato .footer-main-contact a {
  margin-bottom: 10px;
}
.footer-wrapper .footer-main .footer-main-info-content .footer-main-info-content-contato .footer-main-contact i {
  margin-right: 10px;
}
.footer-wrapper .footer-main .footer-main-info-content .footer-main-info-content-contato .footer-main-social {
  display: flex;
  gap: 10px;
}
.footer-wrapper .footer-bottom {
  width: 100%;
  height: 50px;
  background-color: #333333;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*
  ==================== BANNER DESKTOP ====================
*/
.banner-wrapper {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  border-bottom: 4px solid #c6aa6a;
  background: url(../images/banners/bg-banner.webp) no-repeat top center;
}

.banner-carousel {
  max-width: 100vw;
  display: flex;
  justify-content: center;
  position: relative;
}
.banner-carousel .slick-next,
.banner-carousel .slick-prev {
  background-color: transparent !important;
  width: 30px;
  height: 80px;
  z-index: 9999 !important;
  transition: all 0.2s;
}
.banner-carousel .slick-next {
  right: 60px;
  z-index: 2 !important;
}
.banner-carousel .slick-prev {
  left: 60px;
  z-index: 2 !important;
}
.banner-carousel .banner-item {
  width: 100vw;
  min-height: 588px;
  display: flex;
  align-items: flex-end;
  background-attachment: fixed;
  background-position: left;
  background-size: contain;
  background-repeat: no-repeat;
}
.banner-carousel .banner-item .container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  gap: 10px;
  padding-top: 220px;
}
.banner-carousel .banner-item > .left {
  align-items: flex-start;
}
.banner-carousel .banner-item > .left :is(h1, h2, h3, h4, p, .banner-buttons) {
  text-align: left;
  justify-content: flex-start;
}
.banner-carousel .banner-item > .right {
  align-items: flex-end;
}
.banner-carousel .banner-item > .right :is(h1, h2, h3, h4, p, .banner-buttons) {
  text-align: right;
  justify-content: flex-end;
}
.banner-carousel .banner-item > .center {
  align-items: center;
}
.banner-carousel .banner-item > .center :is(h1, h2, h3, h4, p, .banner-buttons) {
  text-align: center;
  justify-content: center;
}
.banner-carousel .banner-item :is(h1, h2, h3, h4) {
  margin: 0;
  padding: 0;
}
.banner-carousel .banner-item :is(h1, h2) {
  font-weight: bold;
}
.banner-carousel .banner-item h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: white;
}
.banner-carousel .banner-item h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: white;
  font-size: 48px;
  text-shadow: 2px 2px 6px black;
  text-transform: uppercase;
}
.banner-carousel .banner-item h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #c6aa6a;
  font-size: 32px;
  width: 60%;
  text-shadow: 2px 2px 6px black;
}
.banner-carousel .banner-item h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #d3c2ae;
  font-size: 32px;
  width: 70%;
  text-shadow: 2px 2px 6px black;
}
.banner-carousel .banner-item p {
  font-size: 20px;
  font-family: "Lato", sans-serif;
  width: 60%;
  color: white;
  font-style: italic;
}
.banner-carousel .banner-item p span {
  display: block;
}
.banner-carousel .banner-item .banner-buttons {
  display: flex;
  gap: 30px;
  width: 100%;
  font-family: "Lato", sans-serif;
}
.banner-carousel .banner-item .banner-buttons a {
  text-decoration: none;
  padding: 15px;
  text-transform: uppercase;
  transition: all 0.2s;
  background-color: #8c7542;
  color: white;
}
.banner-carousel .banner-item .banner-buttons a:hover {
  background-color: #c6aa6a;
}
.banner-carousel .banner-right {
  background-position: right;
}

/*
  ==================== BANNER RESPONSIVE ====================
*/
@media only screen and (max-width: 600px) {
  .banner-wrapper {
    padding: 0;
    margin: 0;
  }
  .slick-next {
    right: 10px !important;
  }
  .slick-prev {
    left: 10px !important;
  }
  .banner-item {
    height: 350px !important;
    background-size: cover !important;
    background-position: center !important;
  }
  .banner-item :is(h1, h2, h3, h4) {
    font-size: 20px !important;
  }
  .banner-item p {
    font-size: 16px !important;
    width: 100% !important;
    text-shadow: 2px black;
  }
  .banner-item .container {
    justify-content: center !important;
    padding: 100px 50px 0 60px !important;
  }
  .banner-item .banner-buttons {
    gap: 10px !important;
  }
  .banner-item .banner-buttons a {
    padding: 10px !important;
    font-weight: normal !important;
    font-size: 14px !important;
  }
}
/*
  ==================== CALL TO ACTION WRAPPER ====================
*/
.calltoaction {
  width: 100%;
  display: flex;
  position: relative;
}
.calltoaction .calltoaction-left {
  width: 70%;
  height: 100%;
  background-color: #333333;
  transform: skew(30deg);
  position: absolute;
  left: -60px;
}
.calltoaction .calltoaction-right {
  width: 100%;
  height: 100%;
  flex: 1;
  background-color: #333333;
}
.calltoaction .calltoaction-content {
  position: absolute;
  left: 100px;
}
.calltoaction .calltoaction-content .container {
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.calltoaction .calltoaction-content h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #c6aa6a;
}
.calltoaction .calltoaction-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: white;
}
.calltoaction .calltoaction-content a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  background-color: #c6aa6a;
  border-radius: 5px;
  padding: 5px 15px;
}
.calltoaction .calltoaction-content a:hover {
  background-color: #8c7542;
}
.calltoaction .calltoaction-content a i {
  margin-right: 10px;
}
.calltoaction .calltoaction-image {
  flex: 1;
}

/*
  ==================== CALL TO ACTION RESPONSIVE ====================
*/
@media only screen and (max-width: 600px) {
  .calltoaction {
    display: flex;
    flex-direction: column;
  }
  .calltoaction .calltoaction-left {
    width: 100%;
    transform: skew(0deg);
    position: relative;
  }
  .calltoaction .calltoaction-image {
    display: none;
  }
  .calltoaction .calltoaction-content {
    background-color: #333333;
    position: relative;
    padding: 30px 0;
    text-align: center;
    left: 0;
  }
}
/*
  ==================== DESTAQUE RAÇA ====================
*/
.destaque-raca {
  width: 100%;
  background-color: #efefef;
}
.destaque-raca .container {
  padding: 40px 0 60px 0;
  font-family: "Montserrat", sans-serif;
}
.destaque-raca .container h2 {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
}
.destaque-raca .container a {
  background-color: #8c7542;
  font-weight: 700;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
}
.destaque-raca .container a:hover {
  background-color: #c6aa6a;
}

/*
  ==================== DESTAQUE RAÇA RESPONSIVE ====================
*/
@media only screen and (max-width: 600px) {
  .destaque-raca .container {
    padding: 40px 20px 60px 20px;
  }
  .destaque-raca .container a {
    padding: 10px;
    display: block;
  }
}
/*
  ==================== DESTAQUE CANIL ====================
*/
.destaque-canil {
  width: 100%;
  background-color: #efefef;
  margin-top: 390px;
}
.destaque-canil .container {
  padding: 40px 0 60px 0;
  font-family: "Montserrat", sans-serif;
}
.destaque-canil .container h2 {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}
.destaque-canil .container h2 span {
  color: #c6aa6a;
}
.destaque-canil .container .destaque-canil-campeoes .campeoes-cao {
  position: relative;
  overflow: hidden;
  text-align: center;
  margin-bottom: 15px;
  background-color: #8c7542;
  border: 6px solid #c6aa6a;
  padding-bottom: 20px;
  color: white;
  min-height: 450px;
}
.destaque-canil .container .destaque-canil-campeoes .campeoes-cao:hover .image .overlay {
  opacity: 1;
  transform: scaleY(1);
}
.destaque-canil .container .destaque-canil-campeoes .campeoes-cao h3 {
  padding: 20px 0 10px 0;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 21px;
}
.destaque-canil .container .destaque-canil-campeoes .campeoes-cao h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  padding: 0 20px;
}
.destaque-canil .container .destaque-canil-campeoes .image {
  position: relative;
  overflow: hidden;
}
.destaque-canil .container .destaque-canil-campeoes .image .overlay {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  transform: scaleY(0);
  transform-origin: 0 1 0;
  opacity: 0;
  transition: all 0.5s ease 0s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.destaque-canil .container .destaque-canil-campeoes .image .overlay .plus a {
  color: #c6aa6a;
  text-decoration: none;
  width: 60px;
  height: 60px;
  border: 1px solid #c6aa6a;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.destaque-canil .container .destaque-canil-campeoes .image .overlay .plus a i {
  font-size: 24px;
  color: #c6aa6a;
}

/*
  ==================== DESTAQUE CANIL RESPONSIVE ====================
*/
@media only screen and (max-width: 600px) {
  .destaque-canil .container {
    padding: 40px 20px 60px 20px;
  }
  .destaque-canil .container a {
    padding: 10px;
    display: block;
  }
}
@media only screen and (max-width: 600px) {
  /*
    ==================== HEADER WRAPPER ====================
  */
  .header-wrapper .header-desktop {
    display: none;
    visibility: hidden;
  }
  .header-wrapper .header-mobile {
    display: flex;
    visibility: visible;
  }
  .header-wrapper .header-mobile .header-top .container {
    padding: 0 20px;
  }
  /*
    ==================== MAIN WRAPPER ====================
  */
  .main-wrapper {
    width: 100%;
  }
  /*
    ==================== FOOTER WRAPPER ====================
  */
  .footer-wrapper .footer-main {
    height: auto;
  }
  .footer-wrapper .footer-main-info {
    position: relative !important;
  }
  .footer-wrapper .footer-main-info .container {
    flex-direction: column;
    padding: 0;
  }
  .footer-wrapper .footer-main-info .container .footer-main-info-logo {
    width: 100%;
    padding: 40px 0 10px 0;
  }
  .footer-wrapper .footer-main-info .container .footer-main-info-content {
    width: 100%;
    padding: 40px 20px;
    align-items: center;
    gap: 10px;
  }
  .footer-wrapper .footer-main-info .container .footer-main-info-content .footer-main-info-content-menu {
    padding-top: 0;
    padding-left: 0px;
    align-items: flex-start;
  }
}
/*
  ==================== PAGE ====================
*/
/*
  ==================== PAGE HOME ====================
*/
.page-home {
  width: 100%;
}
.page-home .container {
  padding: 60px 0;
}
.page-home .container img {
  border: 4px solid #c6aa6a;
  margin: 0 0 20px 0;
}
.page-home .container h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
}

/*
  ==================== BANNER RESPONSIVE ====================
*/
@media only screen and (max-width: 600px) {
  .page-home .container {
    padding: 20px;
  }
}
/*
  ==================== PAGE SOBRE ====================
*/
.page-about {
  width: 100%;
}
.page-about .container {
  padding-top: 40px;
}
.page-about .container img {
  border: 4px solid #c6aa6a;
  margin: 0 0 20px 0;
}
.page-about .container h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}
.page-about .about-galeria {
  margin-top: 40px;
}
.page-about .about-galeria-image {
  overflow: hidden;
  position: relative;
}
.page-about .about-galeria-image img {
  width: 340px;
  height: 220px;
  border: 4px solid #c6aa6a;
  transition: 0.3s ease;
  transform: scale(0.95);
}
.page-about .about-galeria-image img:hover {
  transform: scale(1);
  opacity: 0.7;
}

/*
  ==================== PAGE PADREADORES MATRIZES ====================
*/
.page-plantel {
  width: 100%;
}
.page-plantel .container {
  padding-top: 40px;
}
.page-plantel .container h2 {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}
.page-plantel .container img {
  border: 4px solid #c6aa6a;
  width: 100%;
}
.page-plantel .plantel .plantel-cao {
  position: relative;
  overflow: hidden;
  text-align: center;
  margin-bottom: 15px;
  background-color: #c6aa6a;
  border: 6px solid #c6aa6a;
}
.page-plantel .plantel .plantel-cao:hover {
  background-color: #8c7542;
}
.page-plantel .plantel .plantel-cao:hover .image .overlay {
  opacity: 1;
  transform: scaleY(1);
}
.page-plantel .plantel .plantel-cao h3 {
  padding: 20px 0 10px 0;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
}
.page-plantel .plantel .plantel-cao h3 a {
  text-decoration: none;
  color: white;
}
.page-plantel .plantel .image {
  position: relative;
  overflow: hidden;
}
.page-plantel .plantel .image .overlay {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  transform: scaleY(0);
  transform-origin: 0 1 0;
  opacity: 0;
  transition: all 0.5s ease 0s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-plantel .plantel .image .overlay .plus a {
  color: #c6aa6a;
  text-decoration: none;
  width: 60px;
  height: 60px;
  border: 1px solid #c6aa6a;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-plantel .plantel .image .overlay .plus a i {
  font-size: 24px;
  color: #c6aa6a;
}
.page-plantel .plantel-descricao {
  background-color: #efefef;
  padding: 40px;
}
.page-plantel .plantel-descricao h2 {
  font-size: 24px;
  text-align: left;
}
.page-plantel .plantel-descricao ul {
  padding: 0;
  margin: 0;
}
.page-plantel .plantel-descricao ul li {
  list-style: none;
  margin-bottom: 10px;
}
.page-plantel .plantel-descricao ul li i {
  color: #c6aa6a;
  margin-right: 5px;
}
.page-plantel .plantel-galeria {
  margin-top: 40px;
}
.page-plantel .plantel-galeria-image {
  overflow: hidden;
  position: relative;
}
.page-plantel .plantel-galeria-image img {
  width: 340px;
  height: auto;
  border: 4px solid #c6aa6a;
  transition: 0.3s ease;
  transform: scale(0.95);
}
.page-plantel .plantel-galeria-image img:hover {
  transform: scale(1);
  opacity: 0.7;
}

/*
  ==================== PAGE FILHOTES ====================
*/
.page-filhotes {
  width: 100%;
}
.page-filhotes .container {
  padding-top: 40px;
}
.page-filhotes .container img {
  border: 4px solid #c6aa6a;
  margin-bottom: 20px;
}
.page-filhotes .container h2 {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}
.page-filhotes .container ul {
  margin: 0;
  padding: 0;
}
.page-filhotes .container ul li {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  margin-bottom: 10px;
}
.page-filhotes .container ul li i {
  width: 20px;
  height: 20px;
  border-radius: 15px;
  padding: 5px;
  color: white;
  font-size: 14px;
  background-color: #c6aa6a;
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-filhotes .container .ctainstagram {
  width: 100%;
  display: flex;
  position: relative;
  margin-bottom: 20px;
}
.page-filhotes .container .ctainstagram .ctainstagram-content {
  width: 100%;
  height: 240px;
  background: url("../images/filhotes/bg-banner-filhote.jpg") no-repeat right center;
  display: flex;
  padding-left: 30px;
}
.page-filhotes .container .ctainstagram .ctainstagram-content .container {
  width: 60%;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
}
.page-filhotes .container .ctainstagram .ctainstagram-content h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #c6aa6a;
}
.page-filhotes .container .ctainstagram .ctainstagram-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: white;
}
.page-filhotes .container .ctainstagram .ctainstagram-content a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  background-color: #c6aa6a;
  border-radius: 5px;
  padding: 5px 15px;
}
.page-filhotes .container .ctainstagram .ctainstagram-content a:hover {
  background-color: #8c7542;
}
.page-filhotes .container .ctainstagram .ctainstagram-content a i {
  margin-right: 10px;
}
.page-filhotes .container .ctainstagram .ctainstagram-image {
  flex: 1;
  border: none;
}
.page-filhotes .container .ctainstagram .ctainstagram-image img {
  border: none !important;
}

/*
  ==================== PAGE FILHOTES RESPONSIVE ====================
*/
@media only screen and (max-width: 600px) {
  .page-filhotes {
    width: 100%;
  }
  .page-filhotes .container .ctainstagram {
    display: flex;
    flex-direction: column;
  }
  .page-filhotes .container .ctainstagram .ctainstagram-image {
    display: none;
  }
  .page-filhotes .container .ctainstagram .ctainstagram-content {
    position: relative;
    padding: 0;
    text-align: center;
  }
  .page-filhotes .container .ctainstagram .ctainstagram-content .container {
    width: 100%;
  }
  .page-filhotes .container .ctainstagram .ctainstagram-content h1 {
    font-size: 24px;
  }
  .page-filhotes .container .ctainstagram .ctainstagram-content h2 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
  }
  .page-filhotes .container .ctainstagram .ctainstagram-content a {
    font-size: 17px;
    padding: 5px 8px;
  }
  .page-filhotes .container .ctainstagram .ctainstagram-content a i {
    margin-right: 5px;
  }
}
/*
  ==================== PAGE RAÇA ====================
*/
.page-raca {
  width: 100%;
}
.page-raca .container {
  padding-top: 40px;
}
.page-raca .container img {
  border: 4px solid #c6aa6a;
  margin: 0 0 25px 0;
}
.page-raca .container h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #8c7542;
  margin-bottom: 25px;
}
.page-raca .container h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
}
.page-raca .container a {
  font-weight: bold;
  text-decoration: none;
  color: #c6aa6a;
}
.page-raca .container a:hover {
  color: #8c7542;
}
.page-raca .container ul {
  margin: 0 0 20px 0;
  padding: 0;
}
.page-raca .container ul li {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  margin-bottom: 8px;
}
.page-raca .container ul li i {
  width: 20px;
  height: 20px;
  border-radius: 15px;
  padding: 5px;
  color: white;
  font-size: 14px;
  background-color: #c6aa6a;
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-raca .container ul li span {
  font-weight: bold;
  color: #8c7542;
  padding-right: 5px;
}

/*
  ==================== PAGE EXPOSIÇÕES ====================
*/
.page-exposicoes {
  width: 100%;
}
.page-exposicoes .container {
  padding-top: 40px;
}
.page-exposicoes .container h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}
.page-exposicoes .container .exposicoes-resultado {
  display: flex;
  margin-bottom: 20px;
}
.page-exposicoes .container .exposicoes-resultado:hover .exposicoes-resultado-imagem {
  border-color: #c6aa6a;
}
.page-exposicoes .container .exposicoes-resultado:hover .exposicoes-resultado-imagem .overlay {
  opacity: 1;
  transform: scaleY(1);
}
.page-exposicoes .container .exposicoes-resultado-imagem {
  position: relative;
  overflow: hidden;
  border: 4px solid #d3c2ae;
}
.page-exposicoes .container .exposicoes-resultado-imagem .overlay {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  transform: scaleY(0);
  transform-origin: 0 1 0;
  opacity: 0;
  transition: all 0.5s ease 0s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-exposicoes .container .exposicoes-resultado-imagem .overlay .plus a {
  color: #c6aa6a;
  text-decoration: none;
  width: 60px;
  height: 60px;
  border: 1px solid #c6aa6a;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-exposicoes .container .exposicoes-resultado-imagem .overlay .plus a i {
  font-size: 24px;
  color: #c6aa6a;
}
.page-exposicoes .container .exposicoes-info {
  background-color: #efefef;
  padding: 40px;
  transition: all 300ms linear 0s;
  flex: 1;
}
.page-exposicoes .container .exposicoes-info:hover {
  background-color: #8c7542;
  color: white;
}
.page-exposicoes .container .exposicoes-info h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: black;
  margin-bottom: 20px;
}
.page-exposicoes .container .exposicoes-info h3::after {
  content: "";
  width: 50px;
  height: 2px;
  background: #c6aa6a;
  display: block;
  margin-top: 5px;
}
.page-exposicoes .container .exposicoes-info ul {
  margin: 0;
  padding: 0;
}
.page-exposicoes .container .exposicoes-info ul li {
  list-style: none;
}
.page-exposicoes .container .exposicoes-info ul li i {
  margin-right: 5px;
}
.page-exposicoes .container .exposicoes-info a {
  padding: 5px 15px;
  text-decoration: none;
  color: white;
  background-color: #c6aa6a;
  border-radius: 5px;
}

/*
  ==================== EXPOSIÇÕES RESPONSIVE ====================
*/
@media only screen and (max-width: 600px) {
  .page-exposicoes .container .exposicoes-resultado {
    flex-direction: column;
  }
}
/*
  ==================== PAGE CONTATOS ====================
*/
.page-contatos {
  width: 100%;
}
.page-contatos .container {
  padding-top: 40px;
}
.page-contatos .container .page-contatos-content {
  display: flex;
  justify-content: space-evenly;
}
.page-contatos .container h2 {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}
.page-contatos .container h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #8c7542;
}
.page-contatos .container h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
}
.page-contatos .container .contatos {
  display: flex;
  flex-direction: column;
  background-color: #efefef;
  border-radius: 10px;
  padding: 30px;
  justify-content: center;
}
.page-contatos .container .contatos div {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
}
.page-contatos .container .contatos div.social h3 {
  color: #333333;
}
.page-contatos .container .contatos div.social div {
  flex-direction: row;
  gap: 10px;
  margin-bottom: 0;
}
.page-contatos .container .contatos h3 {
  margin-bottom: 15px;
}
.page-contatos .container .contatos a {
  display: flex;
  text-decoration: none;
  color: #8c7542;
  align-items: center;
  transition: all 0.3s;
  gap: 5px;
  margin-bottom: 10px;
}
.page-contatos .container .contatos a:hover {
  color: #c6aa6a;
}
.page-contatos .container .contatos i {
  color: white;
  background-color: #bc945e;
  border-radius: 5px;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.page-contatos .container .contatos i:hover {
  background-color: #c6aa6a;
}
.page-contatos .container .contatos div.button {
  margin-bottom: 0;
}
.page-contatos .container .contatos div.button a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  background-color: #8c7542;
  border-radius: 5px;
  padding: 5px 15px;
}
.page-contatos .container .contatos div.button a:hover {
  background-color: #c6aa6a;
}
.page-contatos .container .contatos div.button a i {
  margin-right: 10px;
}
.page-contatos .container .formulario {
  display: flex;
  flex-direction: column;
}
.page-contatos .container .formulario .form {
  margin-top: 20px;
}
.page-contatos .container .formulario .form div {
  display: flex;
}
.page-contatos .container .formulario .form div.form-half {
  gap: 10px;
}
.page-contatos .container .formulario input,
.page-contatos .container .formulario textarea {
  border-radius: 10px;
  border: none;
  height: 50px;
  flex: 1;
  margin: 5px 0;
  padding: 10px 15px;
  background-color: #efefef;
  outline: none;
}
.page-contatos .container .formulario input:focus,
.page-contatos .container .formulario textarea:focus {
  outline: solid 2px #c6aa6a;
}
.page-contatos .container .formulario textarea {
  height: 120px;
}
.page-contatos .container .formulario input.btn-contato {
  background-color: #c6aa6a;
  color: white;
  font-weight: 700;
  margin: 10px 0;
  padding: 0;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s;
  border: none;
  border-radius: 10px;
}
.page-contatos .container .formulario input.btn-contato:hover {
  background-color: #8c7542;
}

/*
  ==================== PAGE CONTATOS RESPONSIVE ====================
*/
@media only screen and (max-width: 600px) {
  .page-contatos {
    width: 100%;
  }
  .page-contatos .container .page-contatos-content {
    flex-direction: column;
    gap: 20px;
  }
}/*# sourceMappingURL=styles.css.map */