/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  text-decoration: none;
  color: #9e0b01;
}

a:hover {
  color: #2b99f8;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

.r-10 {
  border-radius: 10px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #9e0b01;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #2194f7;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 65px;
    z-index: 996;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #9e0b01;
  border-top-color: #bfe0fd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  height: 140px;
  padding: 20px 0 20px 0;
  transition: all 0.5s;
  overflow: hidden;
  z-index: 996;
  background-color: #9e0b01;
}

#topbar .logo {
  margin: 0;
  padding: 0;
}

#topbar .logo img {
  max-height: 100px;
}

#topbar.topbar-scrolled {
  top: -140px;
}

#topbar .contact-info a {
  line-height: 0;
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  text-decoration: underline;
}

#topbar .contact-info i {
  color: #9e0b01;
  line-height: 0;
  margin-right: 5px;
}

#topbar .contact-info .phone-icon {
  margin-left: 15px;
}

#topbar .cta {
  background: transparent;
}

#topbar .cta a {
  color: #fff;
  background: #9e0b01;
  padding: 6px 24px 8px 24px;
  display: inline-block;
  transition: 0.3s;
  border-radius: 50px;
}

#topbar .cta a:hover {
  background: #f1a40a;
}

@media (max-width: 768px) {
  #topbar {
    height: 100px;
  }
  #topbar .logo img {
    max-height: 80px;
  }
  #topbar.topbar-scrolled {
    top: -40px;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #000000;
  transition: all 0.5s;
  z-index: 997;
  height: 70px;
  top: 140px;
}

#header.header-scrolled {
  background: #000000;
  /* Cor ao rolar o scrool */
  top: 0;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}

.header-inner-pages {
  background: #9e0b01 !important;
}

.topbar-inner-pages {
  background: #fa3033e7 !important;
}

@media (max-width: 768px) {
  #header {
    top: 100px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 24px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 16px;
  color: rgb(255, 255, 255);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 16px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #f1a40a;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 8px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #032e54;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #9e0b01;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #ffffff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #9e0b01b9;
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  /* bottom: 15px; */
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #9e0b01;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #9e0b01;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #9e0b01;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  margin-top: 210px;
}

#hero .carousel-content {
  text-align: center;
}


#hero .carousel-indicators li.active {
  opacity: 1;
}


@media (max-width: 768px) {
  #hero {
    height: auto;
    margin-top: 170px;
  }

  #hero .carousel-item {
    height: auto;
  }
}


/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/
.cta {
  background: #000000;
}

.cta .title {
  color: #fff;
  text-align: center;
}

.cta .title h2 {
  font-size: 20px;
  padding-bottom: 0;
  color: #fff;
}

.cta .btn {
  padding: 20px;
  background: #0a8d20;
  color: #fff;
  font-size: 28px;
  transition: 0.3s;
  border: 2px solid #fff;
}

.cta .btn:hover {
  color: #FFF;
  background: #046915;
}

@media (max-width: 768px) {
  .cta .title {
    color: #fff;
    text-align: center;
    padding-bottom: 30px;
  }

  .cta .title h3 {
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
  }

  .cta .title h2 {
    font-weight: 600;
    font-size: 18px;
  }

}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  margin-top: 210px;
  padding: 15px 0;
  background: #9e0b01;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 600;
  color: #FFF;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs li a {
  color: #ffffff;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #ffffff;
  content: "/";
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0 !important;
  overflow: hidden;
}

.section-bg {
  background-color: #f1f8ff;
}

.bg1 {
  background-color: #f1f8ff !important;
}

.bg2 {
  background-color: #9e0b01 !important;
}

.cor1 {
  color: #444444 !important;
}

.cor2 {
  color: #9e0b01 !important;
}

.cor3 {
  color: #9e0b01 !important;
}

.section-title {
  text-align: center;
  /* padding-bottom: 30px; */
}

.section-title h2 {
  font-size: 26px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #9e0b01;
}

.section-title p {
  margin-bottom: 0;
  font-style: italic;
}

@media (max-width: 768px) {
  section {
    padding: 20px 0;
  }

  .section-title {
    text-align: center !important;
  }

  .section-title h2 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about {
  padding: 60px 0;
  /* background: url("../../../app/images/estatica/about-bg.png") top center no-repeat; */
  background-color: #e2e2e2;
  position: relative;
}

.about:before {
  content: "";
  background: rgba(255, 255, 255, 0.75);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.about .container {
  position: relative;
  margin: 0 auto;
}

.about .row {
  display: flex;
  justify-content: center;
  align-items: center;
}


.about img {
  border-radius: 10px;
  object-fit: contain;
  width: 600px;
}

.about .content .name h2 {
  text-align: left;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  padding-bottom: 0;
  color: #9e0b01;
}

.about .content .name p {
  text-align: left;
  font-size: 14px;
  font-weight: bold;
  padding-bottom: 30px;
  color: #444;
}

.about .dados {
  display: flex;
  align-items: center;
}

.about .content h3 {
  font-weight: 700;
  font-size: 24px;
  color: #9e0b01;
  text-align: start;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
  border-bottom: solid 1px #dddddd;
}

.about .content ul li+li {
  margin-top: 20px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #9e0b01;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #9e0b01;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #9e0b01;
}

.about .content .btn-learn-more:hover {
  background: #9e0b01;
  color: #fff;
  text-decoration: none;
}

.about .content .social {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.about .content .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 42px;
  height: 42px;
  background: #9e0b01;
  color: #fff;
}

.about .content .social a i {
  font-size: 21px;
  margin: 0 2px;
}

.about .content .social a:hover {
  background: #9e0b01;
  color: #fff;
}

.about .content .social a+a {
  margin-left: 8px;
}

@media (max-width: 768px) {
  .about {
    padding-bottom: 10px;
  }

  .about .content h3 {
    text-align: center !important;
    font-weight: 700;
    margin-bottom: 24px;
    color: #9e0b01;
  }

  .about ul {
    font-size: 14px;
  }

  .about .content .social {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

}

@media (max-width: 992px) {
  .about {
    padding: 20px 0;
  }
}

/*--------------------------------------------------------------
# Locais
--------------------------------------------------------------*/
.locais {
  padding: 60px 0;
  position: relative;
}

.locais:before {
  content: "";
  background: rgba(255, 255, 255, 0.75);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.locais .container {
  position: relative;
}

.locais .content .section-title {
  text-align: left;
}

.locais .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.locais .content ul {
  list-style: none;
  padding: 0;
}

.locais .content ul li {
  padding-left: 28px;
  position: relative;
}

.locais .content ul li+li {
  margin-top: 10px;
}

.locais .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #9e0b01;
  line-height: 1;
}

.locais .content p:last-child {
  margin-bottom: 0;
}

.locais .content .btn-chamar {
  font-size: 14px;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  background-color: #9e0b01;
  color: #fff;
  animation-delay: 0.8s;
  margin-top: 6px;
}

.locais .content .btn-chamar:hover {
  background: #000;
  text-decoration: none;
}

.locais .content .btn-chamar-wpp {
  font-size: 14px;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  background: #079442;
  color: #ffffff;
  animation-delay: 0.8s;
  margin-top: 6px;
}

.locais .content .btn-chamar-wpp:hover {
  background-color: #004d20;
  color: #fff;
  text-decoration: none;
}

.locais .content .btn-learn-more {
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #9e0b01;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #9e0b01;
}

.locais .content .btn-learn-more i {
  font-size: 18px;
  color: #ff0000;
}

.locais .content .btn-learn-more:hover {
  background: #9e0b01;
  color: #fff;
  text-decoration: none;
}

.locais .content .social {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.locais .content .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 42px;
  height: 42px;
  background: #9e0b01;
  color: #fff;
}

.locais .content .social a i {
  font-size: 21px;
  margin: 0 2px;
}

.locais .content .social a:hover {
  background: #9e0b01;
  color: #fff;
}

.locais .content .social a+a {
  margin-left: 8px;
}

.local {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 2px solid #c0c0c0;
}

.local .name {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 35px;
  display: inline-block;
  transition: 0.3s;
  border-bottom: 2px solid #9e0b01;
}

@media (max-width: 768px) {
  .locais {
    margin-bottom: 30px;
    padding: 0;
    text-align: center !important;
  }

  .locais .content h3 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 24px;
    color: #9e0b01;
  }

  .locais ul {
    font-size: 14px;
  }

  .locais .content .social {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .locais .content ul i {
    position: relative;
    right: 10px;
    top: 2px;
    line-height: 1;
  }

  .locais .content ul li {
    padding-left: 0;
    position: relative;
  }

}

/*--------------------------------------------------------------
# Brands
--------------------------------------------------------------*/

.brands .container .content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
  row-gap: 10px;
  column-gap: 30px;
}

.brands .container .content .brand {
  width: 220px;
  border-radius: 5px;
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0;
}

.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
  height: 300px;
  margin: -30px -30px 20px -30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.blog .entry .entry-img-single {
  height: auto;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: #444444;
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: #9e0b01;
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #9e0b01;
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li+li {
  padding-left: 20px;
}

.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}

.blog .entry .entry-meta a {
  color: #777777;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .entry .entry-content p {
  line-height: 24px;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #9e0b01;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog .entry .entry-content .read-more a:hover {
  background: #f7b93c;
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #444444;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #9e0b01;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #9e0b01;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #444444;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #9e0b01;
}

.blog .entry .entry-footer {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer ul {
  padding: 0;
}

.blog .entry .entry-footer li {
  display: inline-block;
  margin-right: 25px;
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}

.blog .blog-pagination {
  color: #0880e8;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: #0880e8;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: #9e0b01;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: #fff;
}

.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #9e0b01;
  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type=search] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 50px);
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #9e0b01;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: #f8c255;
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: #444444;
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: #9e0b01;
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
}

.blog .sidebar .recent-posts h4 a {
  color: #9e0b01;
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: #9e0b01;
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #aaaaaa;
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #9e0b01;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid white;
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid #9e0b01;
  background: #9e0b01;
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: white;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  padding: 50px 40px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.services .icon-box i {
  float: left;
  color: #9e0b01;
  font-size: 40px;
  line-height: 0;
}

.services .icon-box h4 {
  margin-top: -15px;
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .icon-box h4 a {
  color: #9e0b01;
  transition: 0.3s;
}

.services .icon-box h4 a:hover {
  color: #9e0b01;
}

.services .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Ferramentas
--------------------------------------------------------------*/
.ferramentas {
  background: #9e0b01;
}

.ferramentas .item {
  margin-bottom: 20px;
  padding: 10px 10px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.ferramentas .item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.ferramentas .item h4 {
  color: #9e0b01;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
  text-align: center;
}

.ferramentas .item .card-title {
  height: 30px;
}


.ferramentas .item h4 a {
  color: #9e0b01;
  transition: 0.3s;
}

.ferramentas .item h4 a:hover {
  color: #9e0b01;
}

.ferramentas .leia {
  color: #9e0b01;
  font-weight: 600;
  font-size: 14px;
  background-color: #000;
  padding: 5px;
  border-radius: 5px;
}

.ferramentas .leia:hover {
  color: #000 !important;
  background-color: #9e0b01;
}

.ferramentas .title {
  color: #fff;
  text-align: center;
  padding-bottom: 30px;
}

.ferramentas .title h2 {
  font-size: 26px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #000;
}

.ferramentas .title p {
  margin-bottom: 0;
  font-style: italic;
}

.ferramentas .icon-box {
  margin-bottom: 20px;
  padding: 50px 40px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.ferramentas .icon-box i {
  float: left;
  color: #9e0b01;
  font-size: 40px;
  line-height: 0;
}

.ferramentas .icon-box h4 {
  margin-top: -15px;
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.ferramentas .icon-box h4 a {
  color: #9e0b01;
  transition: 0.3s;
}

.ferramentas .icon-box h4 a:hover {
  color: #9e0b01;
}

.ferramentas .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Produtos
--------------------------------------------------------------*/
.produtos {
  background: #9e0b01;
}

.card-produtos {
  margin-bottom: 20px;
}

.produtos .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 10px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s;
}

.produtos .item:hover {
  transform: translateY(-4px);
}

.produtos .item img {
  max-height: 300px;
  object-fit: cover;
  border-radius: 4px;
}

.produtos .card-title {
  font-size: 16px;
  font-weight: 700;
  color: #9e0b01;
  text-align: center;
  margin: 15px 0 10px;
  min-height: 40px;
}

.produtos .card-text {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  flex-grow: 1;
  margin-bottom: 15px;
}

.produtos .leia {
  display: inline-block;
  text-align: center;
  padding: 6px 12px;
  background-color: #9e0b01;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.produtos .leia:hover {
  background-color: #000;
  color: #fff !important;
}

@media (max-width: 768px) {
  .produtos {
    padding-left: 15px;
    padding-right: 15px;
  }

  .produtos .card-title {
    font-size: 15px;
  }

  .produtos .card-text {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Produtos Detalhes
--------------------------------------------------------------*/

.produtos-details .image {
  background: #82cac5;
  padding: 50px 20px 50px 20px;
  display: flex;
  justify-content: center;
}

/*--------------------------------------------------------------
# Produtos Detalhes CTA
--------------------------------------------------------------*/
.produtos-details {
  background: #f1f1f1;
}

.produtos-details .cta {
  background: #f1f1f1;
  text-align: left;
}

.produtos-details .cta .title {
  text-align: left;
  color: #9e0b01 !important;
  font-size: 20px;
}

.produtos-details .title {
  text-align: center;
}

.produtos-details .title h2 {
  font-size: 26px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #000000 !important;
}

.produtos-details .title h3 {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #9e0b01;
}

.produtos-details .btn {
  background: #0a8d20;
  color: #fff;
  font-size: 20px;
  transition: 0.3s;
}

.produtos-details .btn:hover {
  color: #fff;
  background: #047517;
}

@media (max-width: 768px) {
  .produtos-details .title {
    color: #fff;
    text-align: center;
    padding-bottom: 30px;
  }

  .produtos-details .title h2 {
    font-weight: 600;
    font-size: 22px;
  }

}

/*--------------------------------------------------------------
# Contato
--------------------------------------------------------------*/
  .contato {
    margin-top: 180px;
  }

.contato .social {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.contato h5 {
  color: #9e0b01;
}

.contato .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 42px;
  height: 42px;
  background: #9e0b01;
  color: #fff;
}

.contato .social a i {
  font-size: 21px;
  margin: 0 2px;
}

.contato .social a:hover {
  background: #9e0b01;
  color: #fff;
}

.contato .social a+a {
  margin-left: 8px;
}

.contato .cta {
  margin: 25px 0 25px 0;
  background: #9e0b01;
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
}

.contato .cta:hover {
  background: #9e0b01;
  color: #fff;
}

.contato .btn-whats {
  padding: 15px;
  font-size: 24px;
  margin-bottom: 20px;
  transition: 0.3s;
  background: #0a8b35;
  color: #fff;
  border-radius: 10px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.contato .btn-whats:hover {
  background: #016e22;
  color: #fff;
}

@media (max-width: 768px) {
  .contato {
    margin-top: 140px !important;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list {
  margin-top: 15px;
}

.faq .faq-list {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  left: 20px;
  right: 20px;
  color: #76b5ee;
}

.faq .faq-list .question {
  padding-left: 50px !important;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #1977cc;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #000;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #cccccc;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 18px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 30px;
  display: inline-block;
  background: #9e0b01;
  color: #fff;
  line-height: 1;
  padding: 15px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 60px;
  height: 60px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #9e0b01;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #FFF;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #ffffff;
  font-weight: 600;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-contact .fone {
  font-size: 1.2rem;
  font-weight: 700;
}

#footer .footer-top .footer-contact .fone .label {
  font-size: 0.9rem;
  font-weight: 500;
}

#footer .footer-top .footer-contact .fone a {
  color: #ffffff;
}

#footer .footer-top .footer-contact .email {
  font-size: 0.8rem;
  font-weight: 500;
}

#footer .footer-top .footer-contact .email a {
  color: #ffffff;
}

#footer .footer-top .footer-contact .btn {
  font-size: 0.8rem;
  padding: 5px;
  background-color: #058d0c;
  color: #ffffff;
}

#footer .footer-top .footer-contact .btn:hover {
  color: #ffffff;
  background-color: #006105;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  color: #9e0b01;
}

.footer .container .social {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px !important;
}

.footer .container .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 42px;
  height: 42px;
  background: #9e0b01;
  color: #fff;
}

.footer .container .social a i {
  font-size: 21px;
  margin: 0 2px;
}

.footer .container .social a:hover {
  background: #fff;
  color: #9e0b01;
}

.footer .container .social a+a {
  margin-left: 8px;
}

@media (max-width: 768px) {
  #footer {
    padding: 0 0 90px 0;
  }
}

/*--------------------------------------------------------------
# WhatsApp Footer
--------------------------------------------------------------*/

.btn-wpp-flut {
  width: 71px;
  height: 71px;
  padding-top: 5px;
  padding-right: 3px;
  padding-left: 15px;
  background-color: #FFF;
  border-radius: 50px;
  box-shadow: 1px 1px 2px#00000067;
  position: fixed;
  bottom: 40px;
  left: 40px;
  color: #13ad4c;
  font-size: 40px;
  z-index: 1000;
}

.btn-wpp-flut a {
  color: #13ad4c;
}

.btn-wpp-flut:hover {
  color: #009900 !important;
}

@media (max-width: 767px) {
  .btn-wpp-flut {
    width: 49px;
    height: 49px;
    padding-top: 2px;
    padding-right: 3px;
    background-color: #FF0000;
    border-radius: 50px;
    box-shadow: 1px 1px 2px #1100ff8e;
    position: fixed;
    bottom: 20px;
    left: 20px;
    color: #13ad4c;
    font-size: 50px;
    z-index: 1000;
  }
}

/*--------------------------------------------------------------
# CTA Flutuante
--------------------------------------------------------------*/

.btn-cta-flut {
  width: auto;
  height: 50px;
  padding: 10px 15px;
  background: #0a8b35;
  border-radius: 5px;
  box-shadow: 1px 1px 2px #00000067;
  position: fixed;
  bottom: 40px;
  left: 40px;
  color: #fff;
  font-size: 16px;
  z-index: 1000;
}

.btn-cta-flut a {
  color: #fff;
}

.btn-cta-flut:hover {
  background-color: #004718;
  color: #fff !important;
}

@media (max-width: 767px) {
  .btn-cta-flut {
    width: 100%;
    height: 50px;
    padding: 10px 15px;
    background: #0a8b35;
    border-radius: 0px;
    box-shadow: none;
    position: fixed;
    bottom: 0;
    left: 0;
    color: #fff;
    font-size: 16px;
    text-align: center;
    z-index: 1000;
  }

  .btn-cta-flut:hover {
    background-color: #004718;
    color: #fff !important;
  }
}

/* 
  Marcas
*/
#marcas {
  background-color: #d4d4d4;
  padding-top: 60px;
}

.marca-box {
  margin: 0 auto 20px auto;
  background: #fff;
  border: 1px solid #555;
  border-radius: 8px;
  padding: 20px 10px 10px 10px;
  box-shadow: 6px 6px 10px 3px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.marca-topo {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  flex-direction: column;
}

.logo-marca {
  width: 132px;
  height: 132px;
  object-fit: contain;
  border-radius: 4px;
}

.marca-titulo {
  display: flex;
  flex-direction: column;
}

.prefixo {
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.nome-marca {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
}