@charset "UTF-8";
/* Animações de Fade-In */
@keyframes fadeInLeft {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeInRight {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeInTop {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInBottom {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    transform: scale(0.5);
    /* Começa menor */
    opacity: 0;
  }
  to {
    transform: scale(1);
    /* Termina no tamanho normal */
    opacity: 1;
  }
}
@keyframes fadeup {
  0% {
    opacity: 0;
    transform: translateY(80px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes flipIn {
  0% {
    transform: rotate3d(-1, 1, 0, -80deg);
    opacity: 0;
  }
  100% {
    transform: rotate3d(1, 1, 0, 0deg);
    opacity: 1;
  }
}
@keyframes loopScale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
/* Aplicando as animações nas classes de animação */
.fadeInLeft.show-animate {
  animation: fadeInLeft 1s ease-out forwards;
}

.fadeInRight.show-animate {
  animation: fadeInRight 1s ease-out forwards;
}

.fadeInTop.show-animate {
  animation: fadeInTop 1s ease-out forwards;
}

.fadeInBottom.show-animate {
  animation: fadeInBottom 1s ease-out forwards;
}

.zoomIn.show-animate {
  animation: zoomIn 1s ease-out forwards;
}

/* Ajustes gerais para tornar os elementos invisíveis até a animação */
.fade-left,
.fade-right,
.fade-top,
.fade-bottom,
.zoomIn {
  opacity: 0;
}

/* Classe que ativa a animação */
.show-animate {
  opacity: 1;
}

.color-white {
  color: #fff;
}

.bg-green {
  background: linear-gradient(30deg, #0a0a0a, #121212, #0a0a0a, #121212);
}

.bg-cinza {
  background: #f5f5f5;
}

.bg-dark2 {
  background: linear-gradient(30deg, #0a0a0a, #121212, #0a0a0a, #121212);
}

.place-content-center {
  place-content: center;
}

.swiper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

img {
  width: 100%;
  height: auto;
}

html,
body {
  overflow-x: hidden !important;
}

section {
  overflow-x: hidden !important;
}

.section-padding {
  padding: 75px 0;
}

.sticky-div {
  position: sticky;
  top: 130px;
  z-index: 4;
}

.overflow-unset {
  overflow: unset !important;
}

.moreText {
  display: none;
}

.go-top-btn {
  background: #181818;
  height: 55px;
  width: 55px;
  right: 15px;
  bottom: 10px;
  position: fixed;
  z-index: 10;
  font-size: 20px;
  text-align: center;
  border-radius: 50%;
  border: 2px solid transparent;
  box-shadow: 0 0 10px 3px rgba(108, 98, 98, 0.2);
  color: #1f1f1f;
  text-decoration: none;
  transition: all 0.4s;
  display: none;
  cursor: pointer;
}
.go-top-btn i {
  display: block;
  line-height: 52px;
  color: #fff;
}

.sticky-div {
  position: sticky !important;
  top: 130px;
  z-index: 4;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
  scrollbar-width: auto;
  scrollbar-color: #cd0f0c #ffffff;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 11px;
}

*::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
  background-color: #cd0f0c;
  border-radius: 10px;
  border: 3px solid #ffffff;
}
*::-webkit-scrollbar-thumb:hover {
  background-color: #690706;
}

h1,
h2,
h3,
h4,
h5 {
  margin-bottom: 1rem;
  margin: 0;
  padding: 0;
  font-weight: 600;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
  color: #171717;
}

a {
  color: #171717;
  text-decoration: none;
  transition: 0.4s ease;
}

p {
  color: #171717;
  margin-bottom: 15px;
  font-size: 1em;
  line-height: 22px;
}

.section-title h1,
.section-title h2 {
  font-size: 3em;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}
.section-title span {
  text-transform: uppercase;
  font-size: 0.9em;
  display: block;
}

.int-typography h2,
.int-typography h3,
.int-typography h4 {
  margin-bottom: 10px;
}
.int-typography ul {
  margin-bottom: 10px;
}
.int-typography ul li {
  list-style-type: disc;
  list-style-position: inside;
  margin-bottom: 5px;
  font-size: 1em;
}

.divider {
  background: #cd0f0c;
  -webkit-mask-image: url(../img/logo/divider.svg);
  -webkit-mask-position: center center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-image: url(../img/logo/divider.svg);
  mask-position: center center;
  mask-size: contain;
  mask-repeat: no-repeat;
  width: 55px;
  height: 25px;
}

.title-area2 {
  position: relative;
  margin-top: 15px;
  margin-bottom: 30px;
}
.title-area2.white h2,
.title-area2.white h3,
.title-area2.white .title {
  color: #fff;
}
.title-area2.white p {
  color: #fff;
}
.title-area2.white span,
.title-area2.white .subtitle {
  color: #fff;
}
.title-area2.white span .subtitle-tagline,
.title-area2.white .subtitle .subtitle-tagline {
  border: 1px solid #ccc;
}
.title-area2.white span .subtitle-tagline::after,
.title-area2.white .subtitle .subtitle-tagline::after {
  background: #fff;
}
.title-area2 span,
.title-area2 .subtitle {
  position: relative;
  display: block;
  max-width: fit-content;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 4px;
  background: #575756;
}
.title-area2 h2,
.title-area2 h3,
.title-area2 .title {
  color: #171717;
  font-size: 2.4rem;
  line-height: 2.6rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: -0.25em;
}
.title-area2 h2 b,
.title-area2 h3 b,
.title-area2 .title b {
  font-weight: 600;
  color: #cd0f0c;
}
.title-area2 h2 b.tam2,
.title-area2 h3 b.tam2,
.title-area2 .title b.tam2 {
  font-size: 1.8rem;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .title-area2 h2,
  .title-area2 h3,
  .title-area2 .title {
    font-size: 2.4rem;
    line-height: 2.6rem;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .title-area2 h2,
  .title-area2 h3,
  .title-area2 .title {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
}
.title-area2 p {
  font-size: 1.1rem;
  margin-top: 20px;
  color: #171717;
}
.title-area2 .shape {
  height: 30px;
  width: 200px;
  position: relative;
  margin-top: 10px !important;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .title-area2 .shape {
    width: 200px;
  }
}
.title-area2 .shape::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0;
  background-image: url(../img/banners/divider-shape2.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.title-area2.text-center {
  text-align: center;
}
.title-area2.text-center span,
.title-area2.text-center .subtitle {
  left: 50%;
  transform: translateX(-50%);
}
.title-area2.text-center .shape {
  margin: 0 auto;
}
.title-area2.dark h2,
.title-area2.dark h3,
.title-area2.dark .title {
  color: #fff;
}

header .top_menu {
  display: flex;
  align-items: center;
  background: #dadada;
  padding: 8px;
  height: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  header .top_menu {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  header .top_menu {
    display: none;
  }
}
header .top_menu .dn_btn {
  display: inline-block;
  font-size: 13px;
  margin-right: 40px;
  font-weight: normal;
  color: #181818;
  transition: all 0.2 ease;
}
header .top_menu .dn_btn i {
  margin-right: 5px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  header .top_menu .dn_btn {
    margin-right: 10px;
  }
}
header .top_menu .dn_btn:hover {
  color: #cd0f0c;
}
header .top_menu .header-social {
  display: flex;
}
header .top_menu .header-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 100px;
  background: #fff;
  color: #690706;
  transition: all 300ms linear 0s;
  margin-right: 5px;
}
header .top_menu .header-social a:hover {
  color: #181818;
}
header .top_menu .header-social a i {
  font-size: 16px;
}
header .top_menu .contact-menu a {
  display: inline-block !important;
  font-size: 14px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  header .top_menu .contact-menu a {
    font-size: 13px;
    margin-right: 20px;
  }
}
header .header-area {
  background: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
header .header-area.sticky {
  background: #fff;
  animation: remove-top 0.8s ease-in-out;
}
@keyframes remove-top {
  0% {
    opacity: 0;
    transform: translateY(-20%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
header .header-area.sticky .nav-branding {
  color: #000;
}
header .header-area.sticky .nav-menu .menu li a {
  color: #fff;
}
header .header-area.sticky .top_menu {
  display: flex;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  header .header-area.sticky .top_menu {
    display: none;
  }
}
header .header-area.sticky .mega-menu .mega-menu-column .mega-menu-list li a {
  color: #000000 !important;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  header .header-area.sticky .mega-menu .mega-menu-column .mega-menu-list li a {
    color: #fff !important;
  }
}
header .header-area .header-main {
  display: flex;
  justify-content: space-around;
  padding: 0px 10px;
  height: 70px;
  align-items: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  header .header-area .header-main {
    padding: 0px 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  header .header-area .header-main {
    justify-content: space-between;
    padding: 0px 20px;
  }
}
header .header-area .header-main .logo {
  padding: 0 15px;
  width: 280px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  header .header-area .header-main .logo {
    width: 240px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  header .header-area .header-main .logo {
    width: 200px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  header .header-area .header-main .logo {
    width: 240px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  header .header-area .header-main .logo {
    width: 200px;
  }
}
header .header-area .header-main .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
header .header-area .header-main .nav-menu {
  padding: 0 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  header .header-area .header-main .nav-menu {
    padding: 0 5px;
  }
}
@media (min-width:1400px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  header .header-area .header-main .nav-menu .menu {
    display: flex;
  }
}
header .header-area .header-main .nav-menu .menu .menu-item {
  display: inline-block;
  margin-left: 20px;
  position: relative;
}
header .header-area .header-main .nav-menu .menu .menu-item.has-children {
  position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  header .header-area .header-main .nav-menu .menu .menu-item {
    margin-left: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  header .header-area .header-main .nav-menu .menu .menu-item {
    margin-left: 10px;
  }
}
header .header-area .header-main .nav-menu .menu .menu-item:first-child {
  margin-left: 0;
}
header .header-area .header-main .nav-menu .menu .menu-item > a {
  display: block;
  padding: 12px 0;
  font-size: 18px;
  color: #000000;
  font-weight: 500;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  header .header-area .header-main .nav-menu .menu .menu-item > a {
    font-size: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  header .header-area .header-main .nav-menu .menu .menu-item > a {
    font-size: 13px;
  }
}
header .header-area .header-main .nav-menu .menu .menu-item > a .plus {
  display: inline-block;
  height: 10px;
  width: 10px;
  position: relative;
  margin-left: 3px;
  pointer-events: none;
}
header .header-area .header-main .nav-menu .menu .menu-item > a .plus::before, header .header-area .header-main .nav-menu .menu .menu-item > a .plus::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  left: 50%;
  top: 50%;
  background: #000;
  height: 2px;
  width: 100%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
header .header-area .header-main .nav-menu .menu .menu-item > a .plus::after {
  transform: translate(-50%, -50%) rotate(-90deg);
}
header .header-area .header-main .nav-menu .menu .menu-item > a::after {
  content: "";
  display: block;
  margin: auto;
  height: 3px;
  width: 0;
  position: relative;
  top: 1px;
  background: transparent;
  transition: all 0.3s;
}
header .header-area .header-main .nav-menu .menu .menu-item > a:hover {
  color: #cd0f0c;
}
header .header-area .header-main .nav-menu .menu .menu-item > a:hover .plus::before, header .header-area .header-main .nav-menu .menu .menu-item > a:hover .plus:after {
  background-color: #cd0f0c;
}
header .header-area .header-main .nav-menu .menu .menu-item > a:hover::after {
  width: 100%;
  background: #cd0f0c;
}
header .header-area .header-main .nav-menu .menu .menu-item > a.active-nav {
  background-color: #cd0f0c;
  color: #fff;
  padding-left: 8px;
  padding-right: 8px;
  border-radius: 0;
}
header .header-area .header-main .nav-menu .menu .menu-item > a.active-nav .plus::before, header .header-area .header-main .nav-menu .menu .menu-item > a.active-nav .plus::after {
  background-color: #fff;
}
header .header-area .header-main .nav-menu .menu .menu-item > a.active-nav::after {
  display: none;
}
header .header-area .header-main .nav-menu .menu .menu-item > a.active-nav:hover {
  color: #fff;
}
header .header-area .header-main .nav-menu .menu .menu-item > a.active-nav:hover .plus::before, header .header-area .header-main .nav-menu .menu .menu-item > a.active-nav:hover .plus::after {
  background-color: #fff;
}
header .header-area .header-main .nav-menu .menu .menu-item .sub-menu {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 250px;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #ffffff;
  padding: 10px 0;
  border-top: 3px solid #cd0f0c;
  transform: translateY(10px);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  max-height: 350px;
  overflow-y: scroll;
}
header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item {
  display: block;
  margin: 0 20px;
}
header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  transition: all 0.4s ease;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item a {
    color: #fff;
  }
}
header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item a:hover {
  color: #cd0f0c;
  padding-left: 4px;
}
header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item a::after {
  display: none;
}
header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item a.active-nav {
  background-color: #cd0f0c;
  color: #fff;
  border-radius: 0;
}
header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item a.active-nav:hover {
  color: #fff;
  padding-left: 4px;
}
@media (min-width: 992px) {
  header .header-area .header-main .nav-menu .menu .has-children:hover .sub-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  header .header-area .header-main .nav-menu .menu .has-children:hover > a .plus::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
@media (max-width: 991px) {
  header .header-area .header-main .nav-menu {
    position: fixed;
    right: -280px;
    visibility: hidden;
    width: 280px;
    height: 100%;
    top: 0;
    overflow-y: auto;
    background-color: #222222;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.5s ease;
  }
  header .header-area .header-main .nav-menu .menu .menu-item {
    display: block;
    margin: 0;
  }
  header .header-area .header-main .nav-menu .menu .menu-item > a {
    color: #ffffff;
    padding: 12px 15px;
    border-bottom: 1px solid #333333;
  }
  header .header-area .header-main .nav-menu .menu .menu-item > a .plus::before, header .header-area .header-main .nav-menu .menu .menu-item > a .plus::after {
    background-color: #ffffff;
  }
  header .header-area .header-main .nav-menu .menu .menu-item > a::after {
    display: none;
  }
  header .header-area .header-main .nav-menu .menu .menu-item > a.active-nav {
    background-color: #cd0f0c;
    color: #fff;
  }
  header .header-area .header-main .nav-menu .menu .menu-item > a.active-nav .plus::before, header .header-area .header-main .nav-menu .menu .menu-item > a.active-nav .plus::after {
    background-color: #fff;
  }
  header .header-area .header-main .nav-menu .menu .menu-item:first-child a {
    border-top: 1px solid #333333;
  }
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu {
    width: 100%;
    position: relative;
    opacity: 1;
    visibility: visible;
    border: none;
    background-color: transparent;
    box-shadow: none;
    transform: translateY(0px);
    padding: 0px;
    left: auto;
    top: auto;
    max-height: 0;
    overflow: hidden;
  }
}
@media only screen and (max-width: 991px) and (min-width: 1200px) and (max-width: 1399px), only screen and (max-width: 991px) and (min-width: 992px) and (max-width: 1199px) {
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu {
    height: auto;
  }
}
@media (max-width: 991px) {
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item {
    margin-left: 0;
  }
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item a {
    padding: 12px 25px;
    color: #ffffff;
    border-bottom: 1px solid #333333;
  }
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item a:hover {
    padding-left: 25px;
  }
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item a.active-nav {
    background-color: #cd0f0c;
    color: #fff;
  }
  header .header-area .header-main .nav-menu .menu .has-children a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header .header-area .header-main .nav-menu .menu .has-children.active > a .plus::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
header .header-area .header-main .open-nav-menu {
  height: 34px;
  width: 40px;
  margin-right: 15px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
header .header-area .header-main .open-nav-menu span {
  display: block;
  height: 4px;
  width: 40px;
  background-color: #181818;
  position: relative;
}
header .header-area .header-main .open-nav-menu span::after, header .header-area .header-main .open-nav-menu span::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #181818;
  box-sizing: border-box;
}
header .header-area .header-main .open-nav-menu span::before {
  top: -9px;
}
header .header-area .header-main .open-nav-menu span::after {
  top: 9px;
}
@media (max-width: 991px) {
  header .header-area .header-main .open-nav-menu {
    display: flex;
  }
}
header .header-area .header-main .close-nav-menu {
  font-size: 30px;
  background-color: transparent;
  color: #cd0f0c;
  margin: 0 0 15px 15px;
  cursor: pointer;
  display: none;
  align-items: center;
}
header .header-area .header-main .close-nav-menu img {
  width: 16px;
}
@media (max-width: 991px) {
  header .header-area .header-main .close-nav-menu {
    display: flex;
  }
}
header .header-area .header-main .menu-overlay {
  position: fixed;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
@media (max-width: 991px) {
  header .header-area .header-main .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }
  header .header-area .header-main .nav-menu.open {
    visibility: visible;
    right: 0px;
  }
}
header .header-area .contact-btn .btn-one {
  padding: 18px 35px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  header .header-area .contact-btn .btn-one {
    padding: 18px 25px;
    font-size: 14px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  header .header-area .contact-btn .btn-one {
    padding: 10px 16px;
    font-size: 13px;
  }
}

.padding-banner {
  padding-top: 136px;
}
@media (max-width: 991px) {
  .padding-banner {
    padding-top: 106px;
  }
}

@media (min-width: 992px) {
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu.sub-menu-2 {
    top: 8px;
    left: calc(100% + 21px);
    opacity: 0;
    visibility: hidden;
    width: 250px;
  }
  header .header-area .header-main .nav-menu .menu .menu-item.has-children-2:hover .sub-menu-2 {
    top: 0;
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 992px) {
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu.sub-menu-2 .menu-item a {
    padding: 12px 45px;
  }
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu.sub-menu-2 .menu-item a:hover {
    padding-left: 45px;
  }
}
.mega-menu {
  position: absolute;
  left: 55%;
  transform: translateX(-39%);
  top: calc(100% + 10px);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 1px;
  padding: 0;
  max-width: 100vw;
  max-height: 350px;
  overflow-y: hidden;
  overflow-x: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  border-top: 3px solid #cd0f0c;
}
@media (min-width:1400px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mega-menu {
    min-width: 85vw;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mega-menu {
    min-width: 95vw;
    max-width: 1300px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .mega-menu {
    position: relative;
    left: auto;
    transform: none;
    min-width: auto;
    max-width: none;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    border-top: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .mega-menu .container {
    padding: 0;
  }
}
@media (min-width:1400px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .mega-menu .mega-menu-column {
    padding: 20px 5px;
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .mega-menu .mega-menu-column {
    margin-bottom: 0px;
  }
}
.mega-menu .mega-menu-column .mega-menu-title {
  font-size: 16px;
  font-weight: 700;
  color: #cd0f0c;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .mega-menu .mega-menu-column .mega-menu-title {
    color: #ffffff;
    border-bottom-color: #333333;
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.mega-menu .mega-menu-column .mega-menu-title i {
  font-size: 16px;
  width: 20px;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .mega-menu .mega-menu-column .mega-menu-title i {
    font-size: 14px;
    width: 18px;
  }
}
.mega-menu .mega-menu-column .mega-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mega-menu .mega-menu-column .mega-menu-list li {
  margin-bottom: 8px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .mega-menu .mega-menu-column .mega-menu-list li {
    margin-bottom: 5px;
  }
}
.mega-menu .mega-menu-column .mega-menu-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  color: #333333;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .mega-menu .mega-menu-column .mega-menu-list li a {
    justify-content: start !important;
    color: #ffffff !important;
    padding: 10px 5px;
    font-size: 14px;
    border-radius: 0;
    border-bottom: 1px solid #333333;
  }
}
.mega-menu .mega-menu-column .mega-menu-list li a i {
  font-size: 14px;
  width: 20px;
  text-align: center;
  color: #cd0f0c;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .mega-menu .mega-menu-column .mega-menu-list li a i {
    font-size: 14px;
    width: 18px;
    color: #ffffff;
  }
}
.mega-menu .mega-menu-column .mega-menu-list li a:hover {
  background: rgba(205, 15, 12, 0.1);
  color: #cd0f0c;
  transform: translateX(5px);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .mega-menu .mega-menu-column .mega-menu-list li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: translateX(5px);
  }
}
.mega-menu .mega-menu-column .mega-menu-list li a:hover i {
  transform: scale(1.1);
}
.mega-menu .mega-menu-column .mega-menu-list li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgba(205, 15, 12, 0.1), transparent);
  transition: width 0.3s ease;
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .mega-menu .mega-menu-column .mega-menu-list li a::before {
    display: none;
  }
}
.mega-menu .mega-menu-column .mega-menu-list li a:hover::before {
  width: 100%;
}
.mega-menu .mega-menu-footer {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .mega-menu .mega-menu-footer {
    border-top-color: #333333;
    padding-top: 15px;
  }
}
.mega-menu .mega-menu-image {
  position: absolute;
  top: 0;
  right: -20px;
  width: 100%;
  height: 100%;
  max-height: 320px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.mega-menu .mega-menu-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, #fff 8%, rgba(255, 255, 255, 0.635) 30%, transparent 60%);
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .mega-menu .mega-menu-image {
    display: none !important;
  }
}
.mega-menu .mega-menu-image.active {
  display: flex;
}
.mega-menu .mega-menu-image .image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.mega-menu .mega-menu-image .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mega-menu .mega-menu-image .box-content {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #f0f0f0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mega-menu .mega-menu-image .box-content.active {
  opacity: 1;
  visibility: visible;
}
.mega-menu .mega-menu-image .box-content .image {
  width: 100%;
  height: 180px;
}
.mega-menu .mega-menu-image .box-content .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mega-menu .mega-menu-image .box-content .desc p {
  font-size: 14px;
  margin: 0;
}

@media (min-width:1400px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .has-children:hover .mega-menu {
    opacity: 1;
    visibility: visible;
  }
}
@media only screen and (min-width:1400px) and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 992px) and (max-width: 1199px) and (min-width: 992px) and (max-width: 1199px) {
  .has-children:hover .mega-menu {
    transform: translateX(-38%) translateY(2%);
  }
}
@media (max-width: 991px) and (min-width:1400px), only screen and (max-width: 991px) and (min-width: 1200px) and (max-width: 1399px), only screen and (max-width: 991px) and (min-width: 992px) and (max-width: 1199px) {
  .has-children.active .mega-menu {
    padding: 20px 10px;
  }
}
.language-dropdown {
  position: relative;
  display: inline-block;
  z-index: 10;
}
.language-dropdown.is-mobile {
  position: absolute;
  right: 10px;
  top: 12px;
  z-index: 1000;
}
.language-dropdown.is-mobile .dropdown-btn {
  background: rgba(248, 249, 250, 0.8);
}
.language-dropdown.is-mobile .lang-icon {
  width: 22px;
  height: auto;
  margin-right: 5px;
}
.language-dropdown .dropdown-btn {
  padding: 5px 5px;
  border-radius: 5px;
  cursor: pointer;
  min-width: 80px;
  display: flex;
  border: none;
  font-size: 11px;
  background: rgba(248, 249, 250, 0.5);
  color: #333;
  align-items: center;
}
.language-dropdown .dropdown-btn .arrow {
  font-size: 12px;
  margin-left: 5px;
  transition: 0.3s ease;
}
.language-dropdown .lang-icon {
  width: 22px;
  height: auto;
  margin-right: 5px;
}
.language-dropdown .lang-text {
  margin-right: 5px;
  font-size: 11px;
  color: #333;
}
.language-dropdown .dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  width: fit-content;
  min-width: 80px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.8);
  z-index: 2;
  padding: 5px;
  border-radius: 5px;
  margin-top: 5px;
}
.language-dropdown .dropdown-content a {
  display: flex;
  align-items: center;
  padding: 8px 10px;
}
.language-dropdown .dropdown-content a:hover {
  background-color: #f1f1f1;
}
.language-dropdown.active .dropdown-btn .arrow {
  transform: scaleY(-1);
}
.language-dropdown.active .dropdown-content {
  display: block;
}

.box-search {
  position: relative;
  width: fit-content;
  height: 40px;
  margin: 0 5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .box-search.is-mobile {
    margin: 20px 0;
    width: 100%;
    height: fit-content;
    padding: 0 10px;
  }
  .box-search.is-mobile .search-form {
    width: 100%;
    max-width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .box-search {
    margin: 0 10px;
    order: 3;
  }
}
.box-search .search-form {
  display: flex;
  align-items: center;
  background: rgba(248, 249, 250, 0.8);
  border: 2px solid rgba(45, 45, 45, 0.6);
  border-radius: 50px;
  padding: 3px 10px;
  height: 100%;
  width: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  min-width: 200px;
  max-width: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .box-search .search-form {
    min-width: fit-content;
    padding: 5px 14px;
    height: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .box-search .search-form {
    min-width: 200px;
    max-width: 200px;
    padding: 5px 12px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
  }
}
.box-search .search-form:hover {
  background: #ffffff;
  border: 2px solid rgba(205, 15, 12, 0.3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .box-search .search-form:hover {
    transform: none;
  }
}
.box-search .search-form:focus-within {
  background: #ffffff;
  border: 2px solid rgba(205, 15, 12, 0.3);
  outline: 1px solid rgba(205, 15, 12, 0.6);
  outline-offset: 3px;
  min-width: 220px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .box-search .search-form:focus-within {
    min-width: 190px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .box-search .search-form:focus-within {
    transform: none;
    min-width: 200px;
  }
}
.box-search .search-form input,
.box-search .search-form .form-input {
  flex: 1;
  border: none;
  width: 70%;
  margin-right: 25px;
  height: 100%;
  background: transparent;
  font-size: 14px;
  color: #333333;
  padding: 4px 0;
  outline: none;
  font-weight: 400;
  letter-spacing: 0.2px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .box-search .search-form input,
  .box-search .search-form .form-input {
    font-size: 13px;
    padding: 5px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .box-search .search-form input,
  .box-search .search-form .form-input {
    font-size: 14px;
    color: #333333;
  }
}
.box-search .search-form input::placeholder,
.box-search .search-form .form-input::placeholder {
  color: #6c757d;
  font-weight: 400;
  transition: color 0.3s ease;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .box-search .search-form input::placeholder,
  .box-search .search-form .form-input::placeholder {
    color: #666666;
  }
}
.box-search .search-form input:focus::placeholder,
.box-search .search-form .form-input:focus::placeholder {
  color: #adb5bd;
  transform: translateX(5px);
}
.box-search .search-form button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #cd0f0c, #cd0f0c);
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: 8px;
  overflow: hidden;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .box-search .search-form button {
    width: 28px;
    height: 28px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .box-search .search-form button {
    width: 26px;
    height: 26px;
    background: #cd0f0c;
  }
}
.box-search .search-form button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.box-search .search-form button:hover {
  transform: scale(1.02) translateY(-50%);
  box-shadow: 0 4px 12px rgba(205, 15, 12, 0.4);
}
.box-search .search-form button:hover::before {
  left: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .box-search .search-form button:hover {
    transform: scale(1.02) translateY(-50%);
  }
}
.box-search .search-form button i {
  color: #ffffff;
  font-size: 12px;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .box-search .search-form button i {
    font-size: 11px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .box-search .search-form button i {
    font-size: 10px;
  }
}
.box-search .search-form button:hover i {
  transform: scale(1.1);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .box-search {
    animation: slideInSearch 0.5s ease-out;
  }
  @keyframes slideInSearch {
    from {
      opacity: 0;
      transform: translateX(20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
}

.footer-area {
  margin: 20px;
  background: #dadada;
  padding: 65px 0 0;
  border-radius: 40px;
}
.footer-area .footer-top {
  border-bottom: 1px solid #ccc;
}
@media (min-width: 992px) {
  .footer-area .footer-top__row {
    flex-direction: row;
  }
}
@media (max-width: 991px) {
  .footer-area .footer-top__main .single-footer-caption {
    margin-bottom: 0;
  }
}
.footer-area .footer-top__info .footer-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  margin-bottom: 18px;
}
@media (min-width: 992px) {
  .footer-area .footer-top__info .single-footer-caption {
    margin-bottom: 0;
  }
}
.footer-area .footer-top__links .footer-cap ul li {
  margin-bottom: 12px;
}
@media (min-width: 992px) {
  .footer-area .footer-top__links .single-footer-caption {
    margin-bottom: 0;
  }
}
.footer-area .footer-top__brand {
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .footer-area .footer-top__brand {
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }
}
.footer-area .footer-top__brand .single-footer-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .footer-area .footer-top__brand .single-footer-caption {
    max-width: 100%;
  }
}
.footer-area .footer-top__brand .footer-pera .info1 {
  text-align: center;
}
.footer-area .footer-top__brand .single-footer-caption .footer-logo {
  justify-content: center;
}
.footer-area .footer-top__brand .social_badges {
  justify-content: center;
}
.footer-area .footer-top__brand .social_links {
  width: 100%;
}
.footer-area .footer-top__brand .social_links ul {
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .footer-area .footer-top .single-footer-caption {
    margin-bottom: 40px;
  }
}
.footer-area .footer-top .single-footer-caption .footer-logo {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  justify-content: start;
  border-radius: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-area .footer-top .single-footer-caption .footer-logo {
    justify-content: center;
  }
}
.footer-area .footer-top .single-footer-caption .footer-logo img {
  object-fit: contain;
  width: 250px;
  height: auto;
  padding: 10px 0;
  border-radius: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-area .footer-top .single-footer-caption .footer-logo img {
    width: 200px;
  }
}
.footer-area .footer-top .single-footer-caption .footer-pera .info1 {
  font-size: 1rem;
  line-height: 1.4rem;
  margin-bottom: 30px;
  font-weight: 400;
  color: #000;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-area .footer-top .single-footer-caption .footer-pera .info1 {
    padding-right: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-area .footer-top .single-footer-caption .footer-pera .info1 {
    padding-right: 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-area .footer-top .single-footer-caption .footer-pera .info1 {
    padding-right: 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-area .footer-top .single-footer-caption .footer-pera .info1 {
    padding-right: 0px;
  }
}
.footer-area .footer-top .single-footer-caption .footer-tittle span {
  color: #cd0f0c;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  margin-bottom: 35px;
  font-weight: 600;
  text-transform: uppercase;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-area .footer-top .single-footer-caption .footer-tittle span {
    font-size: 18px;
  }
}
.footer-area .footer-top .single-footer-caption .footer-tittle ul li {
  color: #fff;
  margin-bottom: 15px;
  text-transform: capitalize;
}
.footer-area .footer-top .single-footer-caption .footer-tittle ul li a {
  color: #868c98;
  font-weight: 300;
  transition: 0.4s ease;
}
.footer-area .footer-top .single-footer-caption .footer-tittle ul li a:hover {
  color: #cd0f0c;
  padding-left: 5px;
}
.footer-area .footer-top .single-footer-caption .footer-cap {
  margin-bottom: 30px;
}
.footer-area .footer-top .single-footer-caption .footer-cap span {
  color: #690706;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 10px;
  display: block;
}
.footer-area .footer-top .single-footer-caption .footer-cap p {
  color: #000;
  font-size: 16px;
}
.footer-area .footer-top .single-footer-caption .footer-cap a {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
  display: block;
  transition: 0.4s ease;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-area .footer-top .single-footer-caption .footer-cap a {
    font-size: 14px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-area .footer-top .single-footer-caption .footer-cap a i {
    font-size: 14px;
  }
}
.footer-area .footer-top .single-footer-caption .footer-cap a:hover {
  color: #cd0f0c;
  padding-left: 5px;
}
.footer-area .footer-top .single-footer-caption .footer-cap a i {
  margin-right: 2px;
}
.footer-area .footer-bottom {
  padding-bottom: 20px;
  padding-top: 30px;
}
.footer-area .footer-bottom img {
  filter: brightness(0);
  width: 125px;
  height: 52px;
}
.footer-area .footer-bottom .footer-copy-right p {
  color: #000;
  font-weight: 300;
  font-size: 16px;
  line-height: 2;
  margin-bottom: 12px;
}

.social_links {
  margin: 25px 0;
}
@media (max-width: 991px) {
  .social_links {
    margin: 30px 0 40px;
  }
}
.social_links ul li {
  display: inline-block;
}
.social_links ul li a {
  font-size: 18px;
  color: #C3B2F0;
  width: 40px;
  height: 40px;
  display: inline-block;
  text-align: center;
  background: #cd0f0c;
  border-radius: 50%;
  line-height: 40px !important;
  margin-right: 7px;
  color: #fff;
  line-height: 41px !important;
  transition: 0.4s ease;
}
.social_links ul li a:hover {
  background: #181818;
}

.social_badges {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.social_badges img {
  object-fit: contain;
  height: 52px;
  width: auto;
  display: block;
  filter: brightness(0);
}
@media (max-width: 991px) {
  .social_badges {
    justify-content: center;
    margin: 0 0 22px;
  }
  .social_badges img {
    height: 46px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .mob-center {
    text-align: center;
  }
  .mob-center .footer-top__main,
  .mob-center .footer-top__info,
  .mob-center .footer-top__links {
    text-align: left;
  }
}

.breadcrumb-nav {
  margin-top: 150px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .breadcrumb-nav {
    margin-top: 100px;
  }
}
.breadcrumb-nav .breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
}
.breadcrumb-nav .breadcrumb-link {
  color: #000;
  font-weight: 500;
  text-decoration: none;
}
.breadcrumb-nav .breadcrumb-link:hover {
  color: #690706;
}
.breadcrumb-nav .breadcrumb-sep {
  color: #000;
  font-weight: 400;
}
.breadcrumb-nav .breadcrumb-current {
  color: #cd0f0c;
  font-weight: 700;
}

.blog-area {
  padding: 65px 0;
  overflow-y: hidden;
}
.blog-area .home-blog-single {
  transition: 0.4s ease;
}
.blog-area .home-blog-single .blog-img-cap .blog-img {
  overflow: hidden;
  position: relative;
  height: 190px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}
.blog-area .home-blog-single .blog-img-cap .blog-img img {
  width: 100%;
  max-width: 100%;
  height: 344px;
  object-fit: cover;
  transform: scale(1);
  transition: all 0.5s ease-out 0s;
  border-radius: 8px 8px 0 0;
}
.blog-area .home-blog-single .blog-img-cap ul {
  background: #f3f3f3;
}
.blog-area .home-blog-single .blog-img-cap ul li {
  background: #181818;
  display: inline-block;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  color: #787878;
  padding: 20px 30px 20px 120px;
  margin-right: 50px;
  font-weight: 500;
  color: #fff;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-area .home-blog-single .blog-img-cap ul li {
    padding: 20px 30px 20px 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-area .home-blog-single .blog-img-cap ul li {
    padding-top: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 575px) {
  .blog-area .home-blog-single .blog-img-cap ul li {
    padding-top: 20px;
    padding-left: 20px;
  }
}
.blog-area .home-blog-single .blog-img-cap .blog-cap {
  background: #f3f3f3;
  padding: 20px 20px 20px 30px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0 0 8px 8px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-area .home-blog-single .blog-img-cap .blog-cap {
    min-height: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-area .home-blog-single .blog-img-cap .blog-cap {
    min-height: 0px;
  }
}
@media (max-width: 575px) {
  .blog-area .home-blog-single .blog-img-cap .blog-cap {
    min-height: 0px;
  }
}
.blog-area .home-blog-single .blog-img-cap .blog-cap h3 {
  color: #191d34;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-area .home-blog-single .blog-img-cap .blog-cap h3 {
    font-size: 19px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-area .home-blog-single .blog-img-cap .blog-cap h3 {
    font-size: 19px;
  }
}
@media (max-width: 575px) {
  .blog-area .home-blog-single .blog-img-cap .blog-cap h3 {
    font-size: 19px;
  }
}
.blog-area .home-blog-single .blog-img-cap .blog-cap .more-btn {
  position: relative;
  padding-left: 50px;
}
.blog-area .home-blog-single .blog-img-cap .blog-cap .more-btn::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  background: #000000;
}
.blog-area .home-blog-single:hover {
  box-shadow: 0px 22px 57px 0px rgba(34, 41, 72, 0.05);
}
.blog-area .home-blog-single:hover .blog-img img {
  transform: scale(1.1);
}

.brands-area {
  background: #fff;
}
.brands-area .item-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 120px;
  padding: 1.35rem 1.25rem;
  margin: 0;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  box-sizing: border-box;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .brands-area .item-brand {
    min-height: 100px;
    padding: 1rem;
  }
}
.brands-area .item-brand img {
  width: auto !important;
  max-width: 100%;
  height: auto !important;
  max-height: 76px;
  object-fit: contain;
  object-position: center;
}
.brands-area .brandSwiper .swiper-slide {
  height: auto;
  display: flex;
}
.brands-area .brandSwiper .swiper-slide .item-brand {
  flex: 1;
}

button.btn-main {
  border: none;
}

.btn-main {
  background: #690706;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  padding: 13px 20px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  border-radius: 5px;
  -moz-user-select: none;
  font-weight: 400;
  letter-spacing: 1px;
  cursor: pointer;
  transition: color 0.4s linear;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-main::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: #cd0f0c;
  border-radius: 5px;
  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, 0.5), 7px 7px 20px 0px rgba(0, 0, 0, 0.1), 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.btn-main:hover {
  color: #fff;
}
.btn-main:hover:after {
  left: 0;
  width: 100%;
}
.btn-main:active {
  top: 2px;
}

.btn-one {
  background: #cd0f0c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  border: 0;
  text-transform: capitalize;
  z-index: 1;
  width: fit-content;
  position: relative;
  font-size: 16px;
  border-radius: 99px;
  font-weight: 700;
  text-transform: uppercase;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .btn-one {
    font-size: 14px;
    padding: 18px 45px;
  }
}
.btn-one.color2 {
  background: #f1f1f1 !important;
  color: #690706 !important;
}
.btn-one.color2::before, .btn-one.color2::after {
  background-color: #cd0f0c !important;
}
.btn-one.color3 {
  background: #181818 !important;
  color: #fff !important;
}
.btn-one.color3::before, .btn-one.color3::after {
  background-color: #690706 !important;
}
.btn-one i {
  font-size: 24px;
  margin-right: 10px;
}
.btn-one::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 0;
  content: "";
  background-color: #690706;
  transition: all 0.4s ease-in-out;
  border-radius: 0;
  z-index: -1;
}
.btn-one:after {
  position: absolute;
  top: 0;
  right: 0;
  width: 51%;
  height: 0;
  content: "";
  background-color: #690706;
  transition: all 0.4s ease-in-out;
  border-radius: 0;
  z-index: -1;
}
.btn-one:hover, .btn-one:active {
  color: #fff;
  transform: scale(1.02);
}
.btn-one:hover::before {
  height: 100%;
}
.btn-one:hover:after {
  height: 100%;
}

@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
.btn-two {
  position: relative;
  line-height: 1;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  background-color: #cd0f0c;
  color: #fff;
  border-radius: 99px;
  padding: 8px 10px;
  margin: 10px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
  box-shadow: 3px 3px 25px -5px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease-in;
}
.btn-two.color2 {
  background-color: #161616;
}
.btn-two.color2:hover {
  background-color: #f5f5f5;
}
.btn-two.color3 {
  background-color: #181818;
}
.btn-two.color3:hover {
  background-color: #f5f5f5;
}
.btn-two:hover {
  background-color: #690706;
  transform: scale(1.03);
}
.btn-two:hover .icon .i1 {
  transition: transform 0.3s ease-in-out;
  transform: translate(180%, 0%);
}
.btn-two:hover .icon .i2 {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0px, 0px) rotate(0deg);
}
.btn-two span,
.btn-two .txt {
  font-weight: 600;
  font-size: 16px;
  padding: 10px 15px;
}
.btn-two .icon {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  position: relative;
  color: #cd0f0c;
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.btn-two .icon .i1,
.btn-two .icon .i2 {
  color: #cd0f0c;
  font-size: 16px;
  margin: 0;
  position: absolute;
  transform: translate(0%, 0%) rotate(0deg);
}
.btn-two .icon .i2 {
  transform: translate(-200%, 0%) rotate(0deg);
}

.btn-arrow {
  position: relative;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1rem;
  font-weight: 800;
  transition: 0.3s all ease;
  color: #181818;
  display: inline-block;
}
.btn-arrow:after {
  transition: 0.3s all ease;
  position: absolute;
  content: "➜";
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  opacity: 0;
  visibility: hidden;
}
.btn-arrow:hover {
  padding-right: 30px;
  color: #690706;
}
.btn-arrow:hover:after {
  opacity: 1;
  visibility: visible;
}

.card-two {
  overflow: hidden;
  margin: 10px 0;
  border-radius: 20px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  transition: 0.4s ease;
}
.card-two.has-desc .card-prod-content {
  min-height: 200px;
}
.card-two.has-desc .card-prod-content h2,
.card-two.has-desc .card-prod-content h3 {
  margin-bottom: 10px;
  min-height: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .card-two.has-desc .card-prod-content h2,
  .card-two.has-desc .card-prod-content h3 {
    min-height: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .card-two.has-desc .card-prod-content h2,
  .card-two.has-desc .card-prod-content h3 {
    min-height: 45px;
  }
}
.card-two:hover {
  transform: translateY(-5px);
}
.card-two:hover .card-prod-content {
  background-image: linear-gradient(60deg, #181818 0%, #181818 99%);
}
.card-two:hover .card-prod-content::before {
  background-color: #fff;
  height: 70%;
}
.card-two:hover .cart-img img {
  transform: scale(1.02);
}
.card-two:hover .btn-a {
  background-color: #fff;
}
.card-two:hover .btn-a i {
  color: #690706;
}
.card-two .cart-img {
  overflow: hidden;
  width: 100%;
  height: 270px;
  background-color: #f6f6f6;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .card-two .cart-img {
    height: 220px;
  }
}
@media (max-width: 575px) {
  .card-two .cart-img {
    height: 250px;
  }
}
@media (max-width: 320px) {
  .card-two .cart-img {
    height: 250px;
  }
}
.card-two .cart-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease;
  background-color: #fff;
}
.card-two .cart-img img.obj-contain {
  object-fit: contain;
}
.card-two .card-prod-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-image: linear-gradient(90deg, #181818 0%, #181818 99%);
  position: relative;
  padding: 30px 25px 30px;
  transition: 0.5s ease;
  min-height: 140px;
}
.card-two .card-prod-content::before {
  position: absolute;
  height: 60%;
  width: 6px;
  background: #690706;
  content: "";
  left: 0;
  transition: 0.3s;
}
.card-two .card-prod-content h2,
.card-two .card-prod-content h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
  line-height: 1.4rem;
  font-weight: 700;
  margin-right: 10px;
  text-transform: uppercase;
  position: relative;
  transition: 0.3s ease;
  color: #fff;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .card-two .card-prod-content h2,
  .card-two .card-prod-content h3 {
    font-size: 16px;
    margin-right: 10px;
  }
}
@media (max-width: 575px) {
  .card-two .card-prod-content h2,
  .card-two .card-prod-content h3 {
    font-size: 18px;
  }
}
@media (max-width: 320px) {
  .card-two .card-prod-content h2,
  .card-two .card-prod-content h3 {
    font-size: 16px;
  }
}
.card-two .card-prod-content p {
  font-size: 14px;
  color: #fff;
  width: 95%;
  overflow: hidden;
  text-align: left;
  hyphens: none;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.card-two .card-prod-content .btn-a {
  height: 50px;
  width: 50px;
  border: 2px solid #fff;
  font-size: 18px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  border-radius: 50%;
  text-align: center;
}
@media (max-width: 575px) {
  .card-two .card-prod-content .btn-a {
    height: 45px;
    width: 45px;
  }
}

.testimonial-block-one {
  margin: 15px 10px;
}
.testimonial-block-one .inner-box {
  position: relative;
  display: block;
}
.testimonial-block-one .inner-box .text-box {
  position: relative;
  display: block;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 20px;
  padding: 96px 40px 33px 40px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-block-one .inner-box .text-box {
    min-height: 240px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-block-one .inner-box .text-box {
    min-height: 200px;
    padding: 76px 20px 28px 20px;
  }
}
.testimonial-block-one .inner-box .text-box .quote-icon {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 66px;
  height: 66px;
  border-radius: 14px;
  background: #cd0f0c;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.testimonial-block-one .inner-box .text-box .quote-icon i {
  color: #fff;
  font-size: 44px;
  line-height: 1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-block-one .inner-box .text-box .quote-icon {
    top: 18px;
    left: 18px;
    width: 48px;
    height: 48px;
  }
  .testimonial-block-one .inner-box .text-box .quote-icon i {
    font-size: 22px;
  }
}
.testimonial-block-one .inner-box .text-box > p {
  margin: 18px 0 18px 0;
}
.testimonial-block-one .inner-box .rating {
  position: absolute;
  top: 26px;
  right: 28px;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}
.testimonial-block-one .inner-box .rating i {
  position: relative;
  display: inline-block;
  margin-right: 0;
  margin-bottom: 0;
  font-size: 20px;
  color: #181818;
  line-height: 1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-block-one .inner-box .rating {
    top: 20px;
    right: 20px;
  }
}
.testimonial-block-one .inner-box .author-box {
  position: relative;
  display: block;
  padding: 0;
  margin-top: 4px;
}
.testimonial-block-one .inner-box .author-box p {
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 24px;
  font-weight: 600;
  margin: 0;
}
.testimonial-block-one .inner-box .author-box .designation {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 24px;
}

.card-atuacao {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 45px 10px;
  margin: 10px 0;
  width: 100%;
  min-height: 320px;
  text-align: center;
  border-radius: 20px;
  background-color: #fff;
  border: 2px solid #dadada;
  box-shadow: 0 6px 20px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.8s ease-in-out;
  position: relative;
  z-index: 0;
  isolation: isolate;
  overflow: visible;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .card-atuacao {
    padding: 40px 10px;
    min-height: 320px;
  }
}
.card-atuacao .card-atuacao-bar {
  position: absolute;
  left: 15%;
  bottom: -10px;
  width: 70%;
  height: 12px;
  background: #c70c10;
  border-radius: 999px;
  z-index: -3;
  pointer-events: none;
}
.card-atuacao > *:not(.card-atuacao-bar) {
  position: relative;
  z-index: 1;
}
.card-atuacao .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 104px;
  margin: 0 auto 12px;
  padding: 0;
  border: none;
  background: transparent;
  transition: transform 0.3s ease;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .card-atuacao .icon {
    width: 96px;
    height: 96px;
  }
}
.card-atuacao .icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 64px;
  border: 2px solid #0f0f0f;
  border-radius: 14px;
  transform: translate(-50%, -50%) rotate(52deg);
  z-index: 1;
  box-sizing: border-box;
  pointer-events: none;
}
.card-atuacao .icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  background: #950f0e;
  border-radius: 12px;
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: 0;
  pointer-events: none;
}
.card-atuacao .icon img {
  position: relative;
  z-index: 2;
  width: 36px;
  height: 36px;
  max-width: none;
  object-fit: contain;
  object-position: center;
  filter: brightness(0) invert(1);
}
.card-atuacao .icon i {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 44px;
  line-height: 1;
}
.card-atuacao .text,
.card-atuacao h2,
.card-atuacao h3 {
  font-size: 20px;
  line-height: 22px;
  font-weight: 600;
  color: #cd0f0c;
  margin-bottom: 10px;
}
.card-atuacao p,
.card-atuacao .desc {
  font-size: 14px;
  color: #000;
  font-weight: 400;
}
.card-atuacao:hover .icon {
  transform: translateY(-5px);
}

.card-promo {
  display: flex;
  align-items: center;
  position: relative;
  padding: 30px 10px;
  margin: 10px 0;
  padding-left: 30px;
  min-height: 300px;
  overflow: hidden;
  border-radius: 20px;
  z-index: 1;
}
.card-promo.style3 .content {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 5px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .card-promo.style3 .content {
    width: 100%;
    padding: 40px 30px;
  }
}
.card-promo.style3 .box-image {
  width: 45%;
  height: 100%;
  bottom: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .card-promo.style3 .box-image {
    width: 100%;
  }
}
.card-promo.style3 .box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .card-promo.style3::before {
    display: none;
  }
}
.card-promo.color2::after {
  background: linear-gradient(-30deg, #181818 0%, #161616 60%);
  opacity: 0.7;
}
.card-promo.color2::before {
  display: none;
}
.card-promo.color3::after {
  background: linear-gradient(325deg, #cbcbcb 0%, #ebebeb 60%);
  opacity: 1;
}
.card-promo.color3::before {
  filter: saturate(0);
  opacity: 0.1;
}
.card-promo.color3 .content .title {
  color: #000;
}
.card-promo.color3 .content p,
.card-promo.color3 .content .desc {
  color: #000;
}
.card-promo.color4::after {
  background: linear-gradient(-30deg, #ebebeb 0%, #f5f5f5 60%);
  opacity: 0.8;
}
.card-promo.color4::before {
  display: none;
}
.card-promo.color4 .content .title {
  color: #000;
}
.card-promo.color4 .content p,
.card-promo.color4 .content .desc {
  color: #000;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .card-promo {
    display: flex;
    flex-direction: column;
    padding: 0 0;
    padding-bottom: 0;
  }
}
.card-promo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-30deg, #cd0f0c 0%, #690706 60%);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.95;
}
.card-promo::before {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: url("../img/logo/icon.ico") no-repeat;
  background-position: center;
  background-size: contain;
  border-radius: 20px;
  opacity: 0.2;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .card-promo::before {
    width: 350px;
    height: 350px;
    top: auto;
    bottom: -100px;
    right: 30px;
    opacity: 0.1;
  }
}
.card-promo .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 49%;
  height: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .card-promo .content {
    width: 45%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .card-promo .content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 40px;
    right: 0;
  }
}
.card-promo .content .title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  text-align: left;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 700;
}
.card-promo .content p,
.card-promo .content .desc {
  font-size: 14px;
  line-height: 18px;
  font-weight: 300;
  text-align: left;
  color: #fff;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.card-promo .content .btn-link {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  width: fit-content;
  padding: 8px 20px;
  background: #cd0f0c;
  color: #fff;
  font-weight: 600;
  transition: 0.3s ease;
  border-radius: 15px;
}
.card-promo .content .btn-link:hover {
  background: #181818;
}
.card-promo .box-image {
  display: flex;
  align-items: end;
  position: absolute;
  overflow: hidden;
  right: 0px;
  bottom: 10px;
  width: 49%;
  height: 90%;
}
@media (min-width:1400px) {
  .card-promo .box-image {
    width: 55%;
    height: 90%;
    right: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .card-promo .box-image {
    width: 50%;
    height: 98%;
    right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .card-promo .box-image {
    width: 45%;
    height: 95%;
    right: 0;
    bottom: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .card-promo .box-image {
    position: relative;
    width: 100%;
    height: 250px;
    right: 0;
    bottom: 30px;
  }
}
.card-promo .box-image:hover img {
  transform: scale(1.05) rotate(3deg);
}
.card-promo .box-image img {
  width: 100%;
  height: 98%;
  object-fit: contain;
  object-position: center right;
  filter: drop-shadow(5px 12px 5px rgba(0, 0, 0, 0.3));
  transition: 0.3s ease;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .card-promo .box-image img {
    object-position: center;
  }
}

.card-03 {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 16px 0 !important;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-03:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.card-03:hover .card-content .btns span {
  background: #141414;
}
.card-03.style2 .card-content {
  padding-top: 0;
}
.card-03.style2 .card-content .text-box {
  padding: 0;
  min-height: auto;
}
.card-03 .box-image {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
}
.card-03 .box-image .image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 320px;
  flex-shrink: 0;
  border-radius: 16px 16px 0 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .card-03 .box-image .image {
    height: 200px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .card-03 .box-image .image {
    height: 190px;
  }
}
.card-03 .box-image .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.card-03 .box-image .image img.obj-contain {
  object-fit: contain;
  background: #fff;
  padding: 16px;
}
.card-03 .box-image::after {
  content: "";
  flex-shrink: 0;
  align-self: center;
  width: calc(100% - 28px);
  max-width: 100%;
  height: 2px;
  margin: 0;
  background: #cd0f0c;
  border: none;
  pointer-events: none;
}
.card-03 .box-image .box-icon {
  display: none;
}
.card-03 .card-content {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fafafa;
  padding: 20px 20px 22px;
  gap: 18px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .card-03 .card-content {
    padding: 18px 16px 20px;
    gap: 16px;
  }
}
.card-03 .card-content .text-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 0;
  min-height: 0;
  flex: 1;
}
.card-03 .card-content .text-box h2,
.card-03 .card-content .text-box h3,
.card-03 .card-content .text-box .title {
  margin: 0;
  font-size: clamp(0.88rem, 0.82rem + 0.3vw, 1rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #111;
}
.card-03 .card-content .text-box p,
.card-03 .card-content .text-box .text {
  margin: 0;
  max-width: 36ch;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 400;
  color: #6b6e75;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .card-03 .card-content .text-box p,
  .card-03 .card-content .text-box .text {
    max-width: none;
    font-size: 0.84rem;
  }
}
.card-03 .card-content .btns {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  margin-top: auto;
}
.card-03 .card-content .btns span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin: 0;
  padding: 11px 12px 11px 20px;
  background: #0a0a0a;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border-radius: 999px;
  transition: background 0.25s ease;
  box-sizing: border-box;
}
.card-03 .card-content .btns span i {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border-radius: 50%;
  background: #fff;
  color: #0a0a0a;
  font-size: 0.8rem;
  line-height: 1;
}

a:has(> .card-03) {
  display: flex;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
a:has(> .card-03) .card-03 {
  flex: 1;
  width: 100%;
}

.card-prod04 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: linear-gradient(60deg, #ebebeb, #ffffff);
}
.card-prod04 .box-image {
  position: relative;
  width: 100%;
  height: 150px;
}
.card-prod04 .box-image .bg {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.card-prod04 .box-image .bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #181818;
  opacity: 0.3;
  z-index: 1;
}
.card-prod04 .box-image .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0);
}
.card-prod04 .box-image .image {
  position: absolute;
  left: 30px;
  bottom: -70px;
  width: 170px;
  height: 170px;
  padding: 10px;
  border-radius: 50%;
  border: 1px solid rgba(24, 24, 24, 0.1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  background: #fff;
  z-index: 5;
}
.card-prod04 .box-image .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.card-prod04 .card-content {
  width: 100%;
  min-height: 280px;
  padding: 20px 30px;
  padding-top: 100px;
  z-index: 1;
}
.card-prod04 .card-content .title {
  font-size: 22px;
  font-weight: 600;
  line-height: 26px;
  text-transform: uppercase;
  letter-spacing: -0.02rem;
  margin-bottom: 10px;
}
.card-prod04 .card-content .box-btns {
  display: flex;
  align-items: center;
  width: 100%;
  height: fit-content;
  padding: 5px 0;
  margin-top: 15px;
}
.card-prod04 .card-content .box-btns .btn-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  min-width: 130px;
  width: fit-content;
  padding: 10px 20px;
  background: #cd0f0c;
  color: #fff;
  transition: all 0.3s ease;
}
.card-prod04 .card-content .box-btns .btn-link:hover {
  background: #690706;
}

.card-prod-aplicacoes {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  margin: 0;
}
.card-prod-aplicacoes::after {
  content: "";
  position: absolute;
  top: 243px;
  left: 10%;
  width: 80%;
  height: 14px;
  background: #cd0f0c;
  border-radius: 10px;
  z-index: 1;
  pointer-events: none;
}
.card-prod-aplicacoes .box-image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  height: 250px;
  flex-shrink: 0;
}
.card-prod-aplicacoes .box-image .image {
  position: relative;
  width: 100%;
  height: 100%;
}
.card-prod-aplicacoes .box-image .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}
.card-prod-aplicacoes .card-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 25px 20px;
  min-height: 0;
  background: #fff;
}
.card-prod-aplicacoes .card-content .text-box {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
.card-prod-aplicacoes .card-content .text-box h3,
.card-prod-aplicacoes .card-content .text-box .title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  flex-shrink: 0;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: normal;
  color: #000;
}
.card-prod-aplicacoes .card-content .text-box p,
.card-prod-aplicacoes .card-content .text-box .text {
  font-size: 14px;
  line-height: 1.5;
  color: #444;
  flex: 1 1 auto;
  margin-bottom: 0;
}
.card-prod-aplicacoes .card-content .btns {
  flex-shrink: 0;
  margin-top: 20px;
  position: relative;
}
.card-prod-aplicacoes .card-content .btns span {
  background: #000;
  color: #fff;
  border-radius: 40px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  text-decoration: none;
  width: 100%;
  box-sizing: border-box;
  transition: opacity 0.2s ease;
}
.card-prod-aplicacoes .card-content .btns span i {
  margin-left: 10px;
  flex-shrink: 0;
  background: #fff;
  color: #000;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
a:hover .card-prod-aplicacoes .btns span, .card-prod-aplicacoes:hover .btns span {
  opacity: 0.92;
}

.card-catalogo {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 20px 0;
}
.card-catalogo .catalogo-content {
  padding: 50px 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .card-catalogo .catalogo-content {
    padding: 40px 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .card-catalogo .catalogo-content {
    padding: 40px 30px;
    text-align: center;
  }
}
.card-catalogo .catalogo-content .title-area2 {
  margin-bottom: 30px;
}
.card-catalogo .catalogo-content .title-area2 .title {
  font-size: 48px;
  font-weight: 700;
  color: #cd0f0c;
  margin-bottom: 5px;
  text-transform: uppercase;
  line-height: 1.1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .card-catalogo .catalogo-content .title-area2 .title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .card-catalogo .catalogo-content .title-area2 .title {
    font-size: 36px;
  }
}
.card-catalogo .catalogo-content .title-area2 .subtitle {
  font-size: 32px;
  font-weight: 600;
  color: #690706;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.2;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .card-catalogo .catalogo-content .title-area2 .subtitle {
    font-size: 28px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .card-catalogo .catalogo-content .title-area2 .subtitle {
    font-size: 24px;
  }
}
.card-catalogo .catalogo-content .title-area2 p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .card-catalogo .catalogo-content .title-area2 p {
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .card-catalogo .catalogo-content .title-area2 p {
    font-size: 16px;
  }
}
.card-catalogo .catalogo-content .catalogo-btn .btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #cd0f0c, #690706);
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(205, 15, 12, 0.3);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .card-catalogo .catalogo-content .catalogo-btn .btn-download {
    padding: 12px 25px;
    font-size: 14px;
  }
}
.card-catalogo .catalogo-content .catalogo-btn .btn-download i {
  margin-right: 10px;
  font-size: 18px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .card-catalogo .catalogo-content .catalogo-btn .btn-download i {
    font-size: 16px;
    margin-right: 8px;
  }
}
.card-catalogo .catalogo-content .catalogo-btn .btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(205, 15, 12, 0.4);
  background: linear-gradient(45deg, #690706, #cd0f0c);
}
.card-catalogo .catalogo-image {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .card-catalogo .catalogo-image {
    padding: 20px;
  }
}
.card-catalogo .catalogo-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.card-catalogo .catalogo-image img:hover {
  transform: scale(1.02);
}

.tabs-container {
  margin-top: 30px;
}
.tabs-container .tabs-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
.tabs-container .tabs-nav .tab-btn {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  color: #333;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.tabs-container .tabs-nav .tab-btn:hover {
  background: #e9ecef;
  border-color: #cd0f0c;
  color: #cd0f0c;
}
.tabs-container .tabs-nav .tab-btn.active {
  background: #cd0f0c;
  border-color: #cd0f0c;
  color: #fff;
  box-shadow: 0 5px 15px rgba(205, 15, 12, 0.3);
}
.tabs-container .tabs-nav .tab-btn.active::before {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid #fff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.tabs-container .tabs-content .tab-pane {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}
.tabs-container .tabs-content .tab-pane.active {
  display: block;
}
.tabs-container .tabs-content .tab-pane .tab-content {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #cd0f0c;
}
.tabs-container .tabs-content .tab-pane .tab-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 0;
}
.tabs-container .tabs-content .tab-pane .tab-content .caracteristicas-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tabs-container .tabs-content .tab-pane .tab-content .caracteristicas-list li {
  position: relative;
  padding: 12px 0 12px 30px;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
}
.tabs-container .tabs-content .tab-pane .tab-content .caracteristicas-list li:last-child {
  border-bottom: none;
}
.tabs-container .tabs-content .tab-pane .tab-content .caracteristicas-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  color: #cd0f0c;
  font-weight: bold;
  font-size: 18px;
}
.tabs-container .tabs-content .tab-pane .tab-content .download-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tabs-container .tabs-content .tab-pane .tab-content .download-buttons {
    flex-direction: column;
    gap: 15px;
  }
}
.tabs-container .tabs-content .tab-pane .tab-content .download-buttons .btn-download-catalog,
.tabs-container .tabs-content .tab-pane .tab-content .download-buttons .btn-download-manual {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #cd0f0c, #690706);
  color: #fff;
  padding: 15px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(205, 15, 12, 0.3);
  min-width: 150px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tabs-container .tabs-content .tab-pane .tab-content .download-buttons .btn-download-catalog,
  .tabs-container .tabs-content .tab-pane .tab-content .download-buttons .btn-download-manual {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
  }
}
.tabs-container .tabs-content .tab-pane .tab-content .download-buttons .btn-download-catalog i,
.tabs-container .tabs-content .tab-pane .tab-content .download-buttons .btn-download-manual i {
  margin-right: 10px;
  font-size: 18px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tabs-container .tabs-content .tab-pane .tab-content .download-buttons .btn-download-catalog i,
  .tabs-container .tabs-content .tab-pane .tab-content .download-buttons .btn-download-manual i {
    font-size: 16px;
    margin-right: 8px;
  }
}
.tabs-container .tabs-content .tab-pane .tab-content .download-buttons .btn-download-catalog:hover,
.tabs-container .tabs-content .tab-pane .tab-content .download-buttons .btn-download-manual:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(205, 15, 12, 0.4);
  background: linear-gradient(45deg, #690706, #cd0f0c);
}

.productSwiper .swiper-wrapper {
  align-items: stretch;
}
.productSwiper .swiper-slide {
  height: auto;
  display: flex;
}
.productSwiper .swiper-slide > [class*=col] {
  display: flex;
  width: 100%;
}
.productSwiper .card-produto {
  width: 100%;
}
.productSwiper .card-produto .card-body h3 {
  line-height: 1.35;
  min-height: 2.7em;
  line-clamp: 2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.productSwiper .card-produto .card-body p {
  line-height: 1.5;
  min-height: 4.5em;
  line-clamp: 3;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.productSwiper .card-03 .box-image .image img {
  object-fit: cover;
  object-position: center;
}
.productSwiper .card-produto .card-img img {
  object-fit: contain;
  object-position: center;
}
.productSwiper .card-prod-aplicacoes .box-image .image img {
  object-fit: cover;
  object-position: center;
  background: #fff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.orca-equipe {
  flex: 1;
  background: #fafbfc;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(205, 15, 12, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.orca-equipe:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-color: rgba(205, 15, 12, 0.2);
}

.orca-equipe .card-number {
  font-size: 3.5em;
  font-weight: 700;
  color: rgba(205, 15, 12, 0.8);
  text-align: center;
  margin: 20px 0 12px;
  transition: all 0.4s ease;
  font-family: "Montserrat", sans-serif;
}

.orca-equipe .card-header {
  text-align: center;
  font-weight: 600;
  font-size: 1.2em;
  color: rgba(105, 7, 6, 0.9);
  padding: 12px 18px;
  transition: all 0.4s ease;
  font-family: "Montserrat", sans-serif;
  line-height: 1.3;
}

.orca-equipe .card-content {
  padding: 0 18px;
  overflow: hidden;
  max-height: 0;
  transition: all 0.6s ease;
  opacity: 0;
  color: #fff;
  background: linear-gradient(135deg, rgba(205, 15, 12, 0.85), rgba(105, 7, 6, 0.85));
}

.orca-equipe.open {
  flex: 3;
  background: linear-gradient(135deg, rgba(205, 15, 12, 0.9), rgba(105, 7, 6, 0.9));
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 24px rgba(205, 15, 12, 0.15);
}

.orca-equipe.open .card-number {
  color: rgba(255, 255, 255, 0.95);
  transform: scale(1.05);
}

.orca-equipe.open .card-header {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.3em;
}

.orca-equipe.open .card-content {
  max-height: 500px;
  padding: 20px;
  opacity: 1;
  background: transparent;
}

.orca-equipe .card-content p {
  margin-bottom: 12px;
  line-height: 1.5em;
  font-size: 1em;
  font-family: "Montserrat", sans-serif;
  color: rgba(255, 255, 255, 0.9);
}

.download-link {
  display: inline-block;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.95);
  color: #cd0f0c;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9em;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.download-link:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.note {
  margin-top: 12px;
  padding: 12px;
  background: rgba(255, 245, 245, 0.9);
  color: rgba(122, 27, 43, 0.9);
  border-radius: 8px;
  font-size: 0.9em;
  font-weight: 500;
  border-left: 3px solid rgba(205, 15, 12, 0.6);
}

.address {
  margin-top: 12px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  font-size: 0.9em;
  color: rgba(105, 7, 6, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.address strong {
  color: rgba(205, 15, 12, 0.9);
  font-weight: 600;
}

@media (max-width: 880px) {
  .container {
    flex-direction: column;
  }
  .orca-equipe {
    flex: 1 !important;
    width: 100%;
  }
}
.card-valores {
  background: #fff;
  border-radius: 15px;
  border: 1px solid #ddd;
  position: relative;
}
.card-valores::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 8px;
  background: #cd0f0c;
  border-radius: 0 0 10px 10px;
}
.card-valores .icon-wrapper {
  display: flex;
  justify-content: center;
}
.card-valores .icon-box {
  position: relative;
  width: 60px;
  height: 60px;
  background: #cd0f0c;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.card-valores .icon-box i {
  color: #fff;
  font-size: 40px;
  transform: rotate(-45deg);
}
.card-valores .icon-box img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  transform: rotate(-45deg);
  filter: brightness(0) invert(1);
  position: relative;
  z-index: 2;
}
.card-valores .icon-box::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid #000;
  border-radius: 10px;
  transform: translate(2%, -2%) rotate(-24deg);
  z-index: -1;
}
.card-valores .title {
  font-size: 22px;
  color: #c40000;
  font-weight: bold;
}
.card-valores p {
  color: #333;
  font-size: 18px;
  line-height: 1.6;
}

.card-valores--iso .card-valores--iso__body p {
  font-size: 16px;
  line-height: 1.65;
  color: #333;
}
.card-valores--iso .icon-box img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.card-valores--passo {
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card-valores--passo .card-valores__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.25rem;
  text-align: left;
}
.card-valores--passo .card-valores__head .icon-wrapper {
  justify-content: flex-start;
  flex-shrink: 0;
}
.card-valores--passo .icon-box--passo {
  background: #950f0e;
}
.card-valores--passo .icon-box--passo .icon-box__num {
  display: block;
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1;
  transform: rotate(-45deg);
  font-family: inherit;
}
.card-valores--passo .card-valores__titulo-passo {
  display: block;
  color: #000 !important;
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  text-align: left;
  flex: 1;
}
.card-valores--passo .card-valores__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.card-valores--passo .card-valores__body p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}
.card-valores--passo .card-valores__link-passo {
  color: #cd0f0c;
  font-weight: 700;
  text-decoration: underline;
}
.card-valores--passo .card-valores__link-passo:hover {
  color: #690706;
}
.card-valores--passo .card-valores__alerta {
  color: #333;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
  text-transform: uppercase;
}
.card-valores--passo .card-valores__unidade {
  color: #cd0f0c;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.card-valores--passo .card-valores__horario {
  font-size: 15px;
  line-height: 1.55;
  color: #333;
}

.section-passos-equipamento .row > [class*=col-] {
  display: flex;
}

.section-passos-equipamento .card-valores--passo {
  width: 100%;
}

.section-destaques .row.justify-content-center > [class*=col-] {
  display: flex;
}

.section-destaques .card-valores {
  flex: 1 1 auto;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.section-destaques .card-valores .icon-wrapper,
.section-destaques .card-valores .title {
  flex-shrink: 0;
}
.section-destaques .card-valores p {
  flex: 1 1 auto;
}

.card-produto {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}
.card-produto::after {
  content: "";
  position: absolute;
  top: 243px;
  left: 10%;
  width: 80%;
  height: 12px;
  background: #cd0f0c;
  border-radius: 10px;
  z-index: 1;
  pointer-events: none;
}
.card-produto.color02::after {
  background: transparent;
}
.card-produto .card-img {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  height: 250px;
  flex-shrink: 0;
}
.card-produto .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}
.card-produto .card-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 25px 20px;
  min-height: 0;
}
.card-produto .card-body h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  flex-shrink: 0;
}
.card-produto .card-body p {
  font-size: 14px;
  color: #444;
  flex: 1 1 auto;
  margin-bottom: 0;
}
.card-produto .btn-ver {
  flex-shrink: 0;
  margin-top: 20px;
  background: #000;
  color: #fff;
  border-radius: 40px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  font-weight: 600;
}
.card-produto .btn-ver.color02 {
  background: #dadada !important;
  color: #000 !important;
}
.card-produto .btn-ver .arrow {
  background: #fff;
  color: #000;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}
.card-produto .btn-ver i {
  font-size: 16px;
}
.card-produto--texto-only {
  padding-bottom: 24px;
}
.card-produto--texto-only::after {
  display: none;
}
.card-produto--texto-only .card-body {
  padding-top: 28px;
}
.card-produto--texto-only .btn-ver--no-arrow {
  justify-content: center;
}
.card-produto--texto-only .btn-ver--no-arrow .arrow {
  display: none !important;
}

.btn-ver--no-arrow {
  justify-content: center;
}
.btn-ver--no-arrow .arrow {
  display: none !important;
}

.product-area .container-fluid .row .row > [class*=col-],
.product-area .container .row .row > [class*=col-] {
  display: flex;
}

.section-padding .container-fluid .row .row > [class*=col-],
.section-padding .container .row .row > [class*=col-] {
  display: flex;
}

[class*=col]:has(> .card-produto) {
  margin-bottom: 20px;
}

[class*=col]:has(> .card-valores) {
  margin-bottom: 28px;
}

.cta-area {
  padding: 60px 0;
}
.cta-area .cta-banner {
  background: #950F0E;
  border-radius: 26px;
  padding: 0px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  overflow: hidden;
}
.cta-area .cta-banner.assistencia01 {
  height: 250px !important;
}
.cta-area .cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.02));
  pointer-events: none;
}
.cta-area .cta-banner {
  position: relative;
}
.cta-area .cta-banner .cta-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.cta-area .cta-banner .cta-left-icon {
  width: 120px;
  height: auto;
  margin-top: 0;
  flex: 0 0 auto;
}
.cta-area .cta-banner .cta-left-text .title {
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}
.cta-area .cta-banner .cta-left-text p {
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
  margin: 10px 0 0 0;
  font-weight: 500;
}
.cta-area .cta-banner .cta-right {
  position: relative;
  flex: 0 0 auto;
  width: 420px;
  max-width: 40vw;
}
.cta-area .cta-banner .cta-right .cta-elements-img {
  width: 100%;
  height: auto;
  display: block;
}
.cta-area .cta-banner .cta-right .cta-right-links {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 14px 12px;
}
.cta-area .cta-banner .cta-right .cta-pill {
  width: 100%;
  flex: 0 0 auto;
  height: 70px;
  background: #0b0b0b;
  text-decoration: none;
  outline: none;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8px;
  gap: 12px;
}
.cta-area .cta-banner .cta-right .cta-pill.color02 {
  background: #fff !important;
  justify-content: center !important;
}
.cta-area .cta-banner .cta-right .cta-pill i {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  color: #cd0f0c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex: 0 0 auto;
}
.cta-area .cta-banner .cta-right .cta-pill-text {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cta-area .cta-banner .cta-right .cta-pill-text.color02 {
  color: #000 !important;
}
.cta-area .cta-banner .cta-right .cta-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cta-area {
    padding: 50px 0;
  }
  .cta-area .cta-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 18px;
    border-radius: 20px;
  }
  .cta-area .cta-right {
    width: 100% !important;
    max-width: 100% !important;
  }
  .cta-area .cta-left-text .title {
    font-size: 34px !important;
  }
}

.cta-area--suporte .cta-area--suporte__panel {
  position: relative;
  background: #950f0e;
  border-radius: 26px;
  padding: 48px 36px 40px;
  overflow: hidden;
}
.cta-area--suporte .cta-area--suporte__panel::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -8%;
  width: min(55%, 420px);
  aspect-ratio: 1;
  background: rgba(0, 0, 0, 0.12);
  border-radius: 28px;
  transform: rotate(12deg);
  pointer-events: none;
}
.cta-area--suporte .cta-area--suporte__panel::after {
  content: "";
  position: absolute;
  bottom: -25%;
  right: 5%;
  width: min(40%, 280px);
  aspect-ratio: 1;
  border: 2px solid rgba(0, 0, 0, 0.14);
  border-radius: 24px;
  transform: rotate(-18deg);
  pointer-events: none;
}
.cta-area--suporte .cta-area--suporte__intro {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}
.cta-area--suporte .cta-area--suporte__title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cta-area--suporte .cta-area--suporte__desc {
  margin: 16px 0 0;
  color: #fff;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.55;
  font-weight: 500;
  opacity: 0.98;
}
.cta-area--suporte .cta-area--suporte__cards {
  position: relative;
  z-index: 1;
}
.cta-area--suporte .cta-area--suporte__cards > [class*=col-] {
  display: flex;
}
.cta-area--suporte .card-produto--texto-only .card-body h3 {
  text-transform: uppercase;
  font-size: 17px;
  letter-spacing: 0.03em;
}
.cta-area--suporte .card-produto--texto-only .btn-ver {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.06em;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cta-area--suporte .cta-area--suporte__panel {
    padding: 32px 18px 28px;
    border-radius: 20px;
  }
  .cta-area--suporte .cta-area--suporte__intro {
    margin-bottom: 28px;
  }
}

@media (min-width: 992px) {
  .menu-sidebar {
    display: flex;
    justify-content: end;
  }
}

.accordion {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
}
@media (min-width: 992px) {
  .accordion {
    width: 100%;
  }
}
.accordion .accordion-item {
  border: none;
}
.accordion .accordion-item:not(:last-child) {
  border-bottom: 1px solid #e5e5e5;
}
.accordion .accordion-item button[aria-expanded=true] {
  border-bottom: 1px solid #cd0f0c;
}
.accordion .accordion-item button[aria-expanded=true] .icon {
  color: #cd0f0c;
}
@media (max-width: 991px) {
  .accordion {
    padding: 0 20px;
  }
}
.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #161616;
  font-size: 1rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
  transition: 0.4s ease;
}
.accordion button:hover, .accordion button:focus {
  cursor: pointer;
  color: #cd0f0c;
}
.accordion button:hover::after, .accordion button:focus::after {
  cursor: pointer;
  color: #cd0f0c;
  border: 1px solid #cd0f0c;
}
.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
  font-weight: 600;
  font-size: 1rem;
}
.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: -13px;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
  color: #181818;
}
.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.accordion button[aria-expanded=true] {
  color: #690706;
}
.accordion button[aria-expanded=true] .icon::after {
  width: 0;
}
.accordion button[aria-expanded=true] + .accordion-content {
  opacity: 1;
  max-height: 100%;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
@media (max-width: 991px) {
  .accordion button[aria-expanded=true] + .accordion-content {
    overflow-y: scroll;
  }
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p,
.accordion .accordion-content li {
  font-size: 0.9rem;
  font-weight: 300;
  margin: 2em 0;
}
.accordion .accordion-content p a:hover,
.accordion .accordion-content li a:hover {
  color: #cd0f0c;
  padding-left: 5px;
}
@media (max-width: 991px) {
  .accordion .accordion-content p {
    font-weight: 600;
    color: #181818;
    padding-bottom: 5px;
    border-bottom: 1px solid #e5e5e5;
  }
}

.home-form {
  border-top: 3px solid color-mix(in srgb, #690706, #fff 65%);
  padding: 65px 0;
}
.home-form form,
.home-form input,
.home-form label,
.home-form p,
.home-form textarea {
  color: #000 !important;
}
.home-form .contact-card .fa-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #181818;
  padding: 10px;
  width: 55px;
  height: 55px;
  text-align: center;
  float: left;
  margin-right: 20px;
  border-radius: 50%;
}
.home-form .contact-card .fa-contact i {
  font-size: 25px;
  color: #fff;
}
.home-form .contact-card .content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-form .contact-card .content p {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 5px 0;
}
.home-form .contact-card .content p a {
  color: #000;
}
.home-form .contact-card .content p a:hover {
  color: #cd0f0c;
}

.form-contact label {
  font-size: 14px;
}
.form-contact .form-group {
  margin-bottom: 15px;
}
.form-contact .form-group .btn-prod button,
.form-contact .form-group .btn-prod a {
  width: 80%;
  margin-left: 0;
}
.form-contact .form-control {
  border: 1px solid #a9a9a9;
  border-radius: 7px;
  height: 56px;
  padding-left: 18px;
  font-size: 15px;
  background: #fff;
  width: 100%;
  transition: all 0.2s ease;
}
.form-contact .form-control:focus {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(193, 8, 18, 0.12);
  border-color: color-mix(in srgb, #690706, #000 18%);
  background: #fff;
}
.form-contact .form-control::placeholder {
  font-weight: 400;
  color: #717171;
}
.form-contact textarea {
  border-radius: 7px;
  height: 100% !important;
  padding-top: 20px;
  min-height: 210px;
}
.form-contact button {
  border: none;
}
.form-contact .btn-form {
  background: #c70c10;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.14);
  padding: 0 24px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  font-size: 14px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: all 0.2s ease;
  position: relative;
  z-index: 1;
  overflow: visible;
  text-decoration: none;
  border: 0;
  min-width: 230px;
}
.form-contact .btn-form::after {
  display: none;
}
.form-contact .btn-form:hover {
  color: #fff;
  transform: none;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.14);
}
.form-contact .btn-form:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(199, 12, 16, 0.2);
}
.form-contact .btn-form--email {
  background: #c70c10;
}
.form-contact .btn-form--email:hover {
  background: #ad0a0e;
}
.form-contact .btn-form--whatsapp {
  background: #0a0a0a;
}
.form-contact .btn-form--whatsapp:hover {
  background: #1f1f1f;
}
.form-contact .btn-form--whatsapp:focus-visible {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.25);
}
.form-contact#form-contact .form-group.text-center {
  text-align: left !important;
}
.form-contact#form-contact .d-flex {
  gap: 16px;
  flex-wrap: wrap;
}
.form-contact#form-contact .form-contact-actions {
  align-items: center;
  justify-content: flex-start;
}
.form-contact#form-contact .form-contact-actions .btn-form + .btn-form {
  margin-left: 16px !important;
}
.form-contact#form-contact .btn-form {
  margin-left: 0;
  font-size: 17px;
  min-width: 230px;
  height: 48px;
  padding: 0 24px;
}
.form-contact#form-contact .btn-form span {
  line-height: 1;
}
@media (max-width: 575px) {
  .form-contact#form-contact .form-contact-actions .btn-form + .btn-form {
    margin-left: 0 !important;
    margin-top: 12px;
  }
}
.form-contact#form-orcamento .form-group {
  margin-bottom: 10px;
}
.form-contact#form-orcamento .form-control {
  height: 52px;
  font-size: 16px;
  background: #fff;
}
.form-contact#form-orcamento textarea.form-control {
  min-height: 82px;
  padding-top: 14px;
}
.form-contact#form-orcamento .orcamento-form-wrap__policy {
  margin: 8px 0 18px;
  color: #6f6f6f;
  font-size: 12px;
  line-height: 1.35;
}
.form-contact#form-orcamento .orcamento-form-wrap__policy a {
  color: #4e4e4e;
  font-weight: 700;
  text-decoration: underline;
}
.form-contact#form-orcamento .btn-form--orcamento {
  width: 100%;
  max-width: 420px;
  margin: 0;
  font-size: 17px;
  height: 52px;
}
.form-contact#form-orcamento .btn-prod button,
.form-contact#form-orcamento .btn-prod a {
  width: 100%;
  max-width: 420px;
}
.form-contact#form-sac .row > [class*=col-] {
  display: block;
  width: 100%;
  max-width: 100%;
}
.form-contact#form-sac .form-group {
  margin-bottom: 0;
  width: 100%;
  max-width: 100%;
}
.form-contact#form-sac .form-control {
  width: 100%;
  max-width: none;
  min-height: 56px;
  height: auto;
  font-size: 16px;
  box-sizing: border-box;
}
.form-contact#form-sac .sac-form-occurrence {
  display: block;
  width: 100%;
  max-width: 100%;
}
.form-contact#form-sac .sac-form-occurrence .form-check {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  width: 100%;
  column-gap: 10px;
  margin-bottom: 0.65rem;
}
.form-contact#form-sac .sac-form-occurrence .form-check-input {
  flex-shrink: 0;
  margin-top: 0.35em;
  float: none;
  position: relative;
}
.form-contact#form-sac .sac-form-occurrence .form-check-label {
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.45;
  white-space: normal;
}
.form-contact#form-sac .form-group.text-center {
  text-align: left !important;
}

#form-prod-int {
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 8px;
}

.h3-form {
  font-size: 20px;
  color: #181818;
}
.h3-form i {
  color: #cd0f0c;
  font-size: 18px;
  position: relative;
  top: 5px;
}

.whats-form {
  background: #22ba59;
  margin-left: 20px;
}
.whats-form::after {
  background-color: #01a43d;
}

@keyframes sweep {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*=============*/
.whatsapp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 75px;
  right: 15px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  z-index: 100;
  animation: sweep 1.5s ease-in-out;
  display: flex;
  justify-content: center;
}

.whatsapp-icon {
  margin-top: 13px;
}

.contact-section {
  padding: 65px 0 0;
  background: #efefef;
}
.contact-section .contact-section__title {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #111;
}
.contact-section .contact-section__title span {
  color: #690706;
  font-weight: 600;
}
.contact-section .info-container {
  background: #f5f5f5;
  border: 1px solid #d0d0d0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  padding: 12px 20px 20px;
  border-radius: 18px;
}
.contact-section .info-container .info-container__media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 26px;
}
.contact-section .info-container .info-container__media > img {
  width: 100%;
  height: auto;
  display: block;
}
.contact-section .info-container .info-container__float-cta {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 62%;
  height: 40%;
  min-height: 88px;
  border-radius: 0 24px 0 14px;
  background: #950F0E;
  z-index: 2;
}
.contact-section .info-container .info-container__float-cta-top {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  width: 58%;
  height: 50%;
  min-height: 96px;
  border-radius: 24px;
  background: #C70C10;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-section .info-container .info-container__elements {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.95;
}
.contact-section .info-container .info-container__contacts {
  padding: 0 4px;
}
.contact-section .info-container .contact-info {
  display: flex;
  align-items: flex-start;
}
.contact-section .info-container .contact-info:not(:last-child) {
  margin-bottom: 14px;
}
.contact-section .info-container .contact-info h3 {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  margin-bottom: 1px;
  line-height: 1.2;
}
.contact-section .info-container .contact-info h3 a:hover {
  color: #cd0f0c;
}
.contact-section .info-container .contact-info p {
  color: #666;
  margin-bottom: 0;
  font-size: 15px;
}
.contact-section .info-container .contact-info .icon {
  color: #690706;
  margin-right: 12px;
  font-size: 22px;
  min-width: 28px;
  margin-top: 4px;
}
.contact-section .info-container::after {
  display: none;
}
.contact-section .btn-contact {
  display: flex;
}
@media (max-width: 576px) {
  .contact-section .btn-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .contact-section .btn-contact .btn-main {
    margin-left: 0;
    width: 80%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-section .contact-section__title {
    text-align: center;
  }
}

.orcamento-section .orcamento-form-wrap {
  padding: 4px 0;
}
.orcamento-section .orcamento-form-wrap__title {
  margin: 0 0 6px;
  color: #c70c10;
  text-transform: uppercase;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  font-weight: 600;
}
.orcamento-section .orcamento-form-wrap__desc {
  margin: 0 0 14px;
  color: #2f2f2f;
  font-size: 30px;
  line-height: 1.3;
  max-width: 760px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .orcamento-section .orcamento-form-wrap__title,
  .orcamento-section .orcamento-form-wrap__desc {
    text-align: center;
  }
  .orcamento-section .orcamento-form-wrap__desc {
    font-size: 18px;
  }
}

.contact-section.sac-page .sac-page__intro {
  font-size: 16px;
  line-height: 1.65;
  color: #2f2f2f;
}
.contact-section.sac-page .sac-page__intro p {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .contact-section.sac-page .sac-page__split {
    align-items: flex-start;
  }
}
.contact-section.sac-page .sac-page__text .text-content.desc p,
.contact-section.sac-page .sac-page__text .text-content.desc .sac-block p {
  text-align: left;
}
@media (max-width: 991.98px) {
  .contact-section.sac-page .sac-page__text .text-content.desc p,
  .contact-section.sac-page .sac-page__text .text-content.desc .sac-block p {
    text-align: justify;
  }
}
@media (min-width: 992px) {
  .contact-section.sac-page .sac-page__text {
    padding-right: clamp(12px, 2vw, 28px);
  }
}
@media (min-width: 992px) {
  .contact-section.sac-page .sac-page__form-col {
    position: sticky;
    top: calc(var(--header-height, 88px) + 24px);
    align-self: flex-start;
  }
}
.contact-section.sac-page .sac-form-wrap.orcamento-form-wrap {
  width: 100%;
  max-width: 100%;
  padding-bottom: 8px;
}

.banner-full {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #1a1a1a;
  margin-top: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full {
    margin-top: 70px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full {
    margin-top: 70px;
  }
}
@media (max-width: 575px) {
  .banner-full {
    margin-top: 70px;
  }
}
.banner-full .swiper-slide.swiper-slide-active .fadeUp {
  opacity: 0;
  animation: fadeup 1.2s cubic-bezier(0.25, 0.26, 0.25, 0.94) 0.9s 1 normal forwards;
}
.banner-full .swiper-slide.swiper-slide-active .flipIn {
  opacity: 0;
  animation: flipIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}
.banner-full .swiper-pagination {
  margin-bottom: 5px;
}
@media (min-width:1400px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .swiper-pagination.position-left {
    width: 350px;
    height: 30px;
    top: 47%;
    left: -15vh;
    transform: rotate(90deg) translateY(-50%);
  }
}
.banner-full .swiper-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 5px;
  margin: 0 5px !important;
  border-radius: 2px;
  transition: 0.8s ease-in-out;
  background: #ffffff;
  opacity: 0.5;
}
.banner-full .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 80px;
  background: #cd0f0c;
  outline: 1px solid #cd0f0c;
  opacity: 1;
}
.banner-full .swiper-buttons {
  color: #181818;
  height: 50px;
  width: 50px;
  background: rgba(255, 255, 255, 0.5);
  transform: rotate(45deg);
  border: 1px solid #690706;
  transition: 0.3s ease;
  display: flex;
  border-radius: 50%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .swiper-buttons {
    display: flex;
    height: 40px;
    width: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full .swiper-buttons {
    display: flex;
    height: 45px;
    width: 45px;
  }
}
@media (max-width: 575px) {
  .banner-full .swiper-buttons {
    display: flex;
    height: 35px;
    width: 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-full .swiper-buttons.swiper-button-prev, .banner-full .swiper-buttons.swiper-button-next {
    top: auto;
    bottom: 30px;
  }
}
.banner-full .swiper-buttons.swiper-button-prev {
  left: 15px;
}
.banner-full .swiper-buttons.swiper-button-next {
  right: 15px;
}
.banner-full .swiper-buttons i {
  font-size: 1.5rem;
  color: #cd0f0c;
  transition: 0.3s ease;
  transform: rotate(-45deg);
}
.banner-full .swiper-buttons::before, .banner-full .swiper-buttons::after {
  color: #cd0f0c;
  font-size: 25px;
  font-weight: 600;
  display: none;
}
.banner-full .swiper-buttons:hover {
  transform: scale(1.1);
  background: #fff;
}
.banner-full .swiper-buttons:hover i {
  transform: scale(1.05);
}
.banner-full .swiper-buttons:hover::before, .banner-full .swiper-buttons:hover::after {
  color: #cd0f0c;
}
.banner-full .banner-main {
  position: relative !important;
  width: 100%;
  height: 500px;
  overflow: hidden;
}
@media (min-width:1400px) {
  .banner-full .banner-main {
    height: 500px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner-full .banner-main {
    height: 500px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .banner-main {
    height: 400px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full .banner-main {
    height: 640px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full .banner-main {
    height: 620px;
  }
}
@media (max-width: 575px) {
  .banner-full .banner-main {
    height: 540px;
  }
}
.banner-full .banner-main .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #242424;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 5px;
}
.banner-full .banner-main .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom right;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .banner-main .swiper-slide img {
    object-position: bottom center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full .banner-main .swiper-slide img {
    object-position: center;
  }
}
.banner-full .banner-main .content-area {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5px;
}
.banner-full .banner-main .content-area .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.banner-full .banner-main .content-area .bg .image-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.5);
  animation: loopScale 8s ease-in 0s infinite alternate forwards;
}
.banner-full .banner-main .content-area .bg .shape {
  position: absolute;
  width: 100%;
  height: 90%;
  left: 0px;
  bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.banner-full .banner-main .content-area .bg .shape img {
  width: 115%;
  height: 100%;
  object-position: left bottom;
  margin-left: -30px;
  opacity: 1;
}
.banner-full .banner-main .content-area .content {
  display: flex;
  align-items: start;
  justify-content: start;
  width: 95%;
  height: 100%;
  margin: 0 auto;
  z-index: 2;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .banner-main .content-area .content {
    width: 100%;
    height: 100%;
    padding: 0px 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full .banner-main .content-area .content {
    width: 100%;
    height: 100%;
    padding: 10px 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full .banner-main .content-area .content {
    width: 100%;
    height: 95%;
    padding: 20px;
  }
}
@media (max-width: 575px) {
  .banner-full .banner-main .content-area .content {
    width: 100%;
    height: 90%;
    padding: 20px;
  }
}
.banner-full .banner-main .content-area .content .text {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px;
  text-align: left;
  margin: 5px 0;
  width: 35vw;
  margin-left: 4vw;
  margin-top: 110px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .banner-main .content-area .content .text {
    width: 38vw;
    margin-left: 2vw;
    margin-top: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full .banner-main .content-area .content .text {
    width: 80vw;
    margin-left: 8vw;
    margin-top: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full .banner-main .content-area .content .text {
    width: 80vw;
    margin-top: -10px;
    margin-left: 8vw;
  }
}
@media (max-width: 575px) {
  .banner-full .banner-main .content-area .content .text {
    width: 98vw;
    margin-left: 2vw;
    margin-top: -10px;
  }
}
.banner-full .banner-main .content-area .content .text h1,
.banner-full .banner-main .content-area .content .text h2,
.banner-full .banner-main .content-area .content .text span {
  color: #000;
  font-size: 2.6rem;
  line-height: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .banner-main .content-area .content .text h1,
  .banner-full .banner-main .content-area .content .text h2,
  .banner-full .banner-main .content-area .content .text span {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full .banner-main .content-area .content .text h1,
  .banner-full .banner-main .content-area .content .text h2,
  .banner-full .banner-main .content-area .content .text span {
    font-size: 2.4rem;
    line-height: 2.5rem;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full .banner-main .content-area .content .text h1,
  .banner-full .banner-main .content-area .content .text h2,
  .banner-full .banner-main .content-area .content .text span {
    font-size: 1.8rem;
    line-height: 2rem;
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .banner-full .banner-main .content-area .content .text h1,
  .banner-full .banner-main .content-area .content .text h2,
  .banner-full .banner-main .content-area .content .text span {
    font-size: 1.4rem;
    line-height: 1.6rem;
    margin-bottom: 10px;
  }
}
.banner-full .banner-main .content-area .content .text h1 b,
.banner-full .banner-main .content-area .content .text h2 b,
.banner-full .banner-main .content-area .content .text span b {
  font-weight: 700;
  color: #cd0f0c;
}
.banner-full .banner-main .content-area .content .text p {
  font-size: 1rem;
  font-weight: 1rem;
  font-weight: 300;
  width: 80%;
  color: #000;
  margin: 15px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .banner-main .content-area .content .text p {
    font-size: 1rem;
    line-height: 1.2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full .banner-main .content-area .content .text p {
    font-size: 1rem;
    line-height: 1.2rem;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full .banner-main .content-area .content .text p {
    font-size: 0.8rem;
    line-height: 1.1rem;
  }
}
@media (max-width: 575px) {
  .banner-full .banner-main .content-area .content .text p {
    font-size: 0.8rem;
    line-height: 1.1rem;
    margin-top: 5px;
  }
}
.banner-full .banner-main .content-area .content .text .btn-one {
  padding: 10px 30px;
  background: #cd0f0c;
  color: #fff;
}
.banner-full .banner-main .content-area .content .text .btn-one span {
  font-size: 1rem;
  line-height: normal;
  text-transform: capitalize;
  padding: 2px;
  margin: 0;
  color: #fff;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-full .banner-main .content-area .content .text .btn-one {
    padding: 10px 20px;
    font-size: 14px;
  }
}
.banner-full .banner-main .content-area .content .text .btn-one::after, .banner-full .banner-main .content-area .content .text .btn-one::before {
  background-color: #690706;
}
.banner-full .banner-main .content-area .content .text .btn-one i {
  width: 25px;
  height: 25px;
}
.banner-full .banner-main .content-area .content .image-banner {
  width: 100%;
  height: 400px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  border: 4px solid rgba(249, 249, 249, 0.6);
  box-shadow: 8px 8px 45px -5px rgba(0, 0, 0, 0.5);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .banner-main .content-area .content .image-banner {
    width: 100%;
    height: 360px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full .banner-main .content-area .content .image-banner {
    width: 100%;
    height: 330px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full .banner-main .content-area .content .image-banner {
    width: 95%;
    height: 260px;
  }
}
@media (max-width: 575px) {
  .banner-full .banner-main .content-area .content .image-banner {
    margin: 30px 10px;
    width: 90%;
    height: 240px;
  }
}
.banner-full .banner-main .content-area .content .image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #fff;
}
.banner-full .banner-main .content-area .content .image-banner img.obj-contain {
  object-fit: contain;
}
.banner-full .banner-thumb {
  position: absolute;
  bottom: 5%;
  left: 50%;
  width: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full .banner-thumb {
    display: none;
  }
}
@media (max-width: 575px) {
  .banner-full .banner-thumb {
    display: none;
  }
}
.banner-full .banner-thumb .swiper-wrapper {
  display: flex;
  justify-content: center;
}
.banner-full .banner-thumb .img-thumb {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  transition: 0.5s ease;
  box-shadow: 0 3px 20px -5px rgba(0, 0, 0, 0.6);
  opacity: 0.5;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .banner-thumb .img-thumb {
    width: 50px !important;
    height: 50px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full .banner-thumb .img-thumb {
    width: 50px !important;
    height: 50px !important;
  }
}
@media (max-width: 575px) {
  .banner-full .banner-thumb .img-thumb {
    width: 50px !important;
    height: 50px !important;
  }
}
.banner-full .banner-thumb .img-thumb.swiper-slide-thumb-active {
  transform: scale(1.4);
  opacity: 1;
  border: 2px solid #690706;
  box-shadow: 0 3px 25px -5px rgba(0, 0, 0, 0.6);
}
.banner-full .banner-thumb .img-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section-about {
  overflow-y: visible !important;
  position: relative;
}
.section-about .about-content {
  padding: 0 10px;
}
.section-about .about-content p {
  text-align: justify;
  font-weight: 400;
  font-size: 14px;
  line-height: 27px;
  color: #000;
  margin: 5px 0;
}
.section-about .about-content .text-content .desc {
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-about .about-content .text-content .desc {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-about .about-content .text-content .desc {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .section-about .about-content .text-content .desc {
    width: 100%;
  }
}
.section-about .about-content .text-content .desc p {
  text-align: justify;
  font-weight: 300;
  font-size: 16px;
  line-height: 27px;
  color: #000;
  margin: 8px 0;
}
.section-about .about-content .about-list {
  margin: 10px 0;
}
.section-about .about-content .about-list .item-list {
  display: flex;
  align-items: center;
  margin: 8px 0;
}
.section-about .about-content .about-list .item-list .icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(233, 233, 233, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-about .about-content .about-list .item-list .icon i {
  font-weight: 600;
  color: #cd0f0c;
}
.section-about .about-content .about-list .item-list .text-p {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #1a1a1a;
  margin-left: 10px;
  margin-bottom: 0;
}
.section-about .about-img:not(:has(.about-img__stage)) {
  position: relative;
  top: 0;
  width: 100%;
  height: 550px;
  isolation: isolate;
  overflow: visible;
}
@media (max-width: 575px) {
  .section-about .about-img:not(:has(.about-img__stage)) {
    height: 295px;
  }
}
.section-about .about-img:not(:has(.about-img__stage))::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 50%;
  height: 50%;
  right: 20px;
  bottom: -35px;
  background-color: #C70C10;
  border-radius: 24px;
  pointer-events: none;
}
@media (max-width: 575px) {
  .section-about .about-img:not(:has(.about-img__stage))::after {
    right: -12px;
    bottom: -12px;
    border-radius: 18px;
  }
}
.section-about .about-img:not(:has(.about-img__stage))::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -20px;
  left: -14px;
  width: calc(80% + 14px);
  height: calc(90% + 14px);
  border: 5px solid #950F0E;
  border-radius: 24px;
  pointer-events: none;
  box-sizing: border-box;
}
@media (max-width: 575px) {
  .section-about .about-img:not(:has(.about-img__stage))::before {
    top: -10px;
    left: -10px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border-radius: 18px;
    border-width: 2px;
  }
}
.section-about .about-img:not(:has(.about-img__stage)) img,
.section-about .about-img:not(:has(.about-img__stage)) .tilt-img {
  position: relative;
  z-index: 1;
  width: 90%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}
@media (max-width: 575px) {
  .section-about .about-img:not(:has(.about-img__stage)) img,
  .section-about .about-img:not(:has(.about-img__stage)) .tilt-img {
    border-radius: 18px;
  }
}
.section-about .about-img:has(.about-img__stage) {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 2rem 1rem 3rem;
}
.section-about .about-img:has(.about-img__stage) .about-img__stage {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1;
  max-width: 100%;
  margin: 0 auto;
}
.section-about .about-img:has(.about-img__stage) .about-img__diamond {
  position: absolute;
  width: 90%;
  aspect-ratio: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  overflow: hidden;
  border-radius: 16px;
  z-index: 1;
}
.section-about .about-img:has(.about-img__stage) .about-img__diamond-inner {
  position: absolute;
  width: 142%;
  height: 142%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.section-about .about-img:has(.about-img__stage) img,
.section-about .about-img:has(.about-img__stage) .tilt-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.section-about .about-img:has(.about-img__stage) .about-img__frame {
  position: absolute;
  width: 100%;
  aspect-ratio: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid #950F0E;
  border-radius: 18px;
  pointer-events: none;
  z-index: 3;
  box-sizing: border-box;
}
.section-about .about-img:has(.about-img__stage) .about-img__accent {
  position: absolute;
  width: 26%;
  aspect-ratio: 1;
  top: -15%;
  left: -15%;
  background: #cd0f0c;
  border-radius: 12px;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 575px) {
  .section-about .about-img:has(.about-img__stage) {
    padding: 1.25rem 0.5rem 2rem;
  }
  .section-about .about-img:has(.about-img__stage) .about-img__stage {
    width: min(100%, 300px);
  }
  .section-about .about-img:has(.about-img__stage) .about-img__diamond {
    border-radius: 10px;
  }
  .section-about .about-img:has(.about-img__stage) .about-img__frame {
    border-width: 2px;
    border-radius: 14px;
  }
  .section-about .about-img:has(.about-img__stage) .about-img__accent {
    border-radius: 10px;
  }
}

.box-cards-mission {
  margin-top: 90px;
}
.box-cards-mission .card-mission {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  height: 100%;
  background-color: #f1f1f1;
  border-radius: 5px;
  box-shadow: 0px 4px 25px -5px rgba(23, 37, 57, 0.2);
  transition: 0.3s ease-in-out;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .box-cards-mission .card-mission {
    height: auto;
    margin: 40px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .box-cards-mission .card-mission {
    height: auto;
    margin: 40px 0;
  }
}
@media (max-width: 575px) {
  .box-cards-mission .card-mission {
    height: auto;
    margin: 40px 0;
  }
}
.box-cards-mission .card-mission:hover {
  transform: scale(1.02);
}
.box-cards-mission .card-mission::after {
  position: absolute;
  left: 0;
  top: 75px;
  transform: translate(-50%, -50%);
  content: "";
  height: 115px;
  width: 115px;
  background: #fff;
  border-radius: 50%;
  z-index: -1;
}
.box-cards-mission .card-mission .icon {
  height: 88px;
  width: 88px;
  border-radius: 50px;
  background: #181818;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 31px;
  left: 0;
  transform: translateX(-50%);
  transition: 0.2s ease-in-out;
}
.box-cards-mission .card-mission .icon i {
  font-size: 40px;
  color: #fff;
}
.box-cards-mission .card-mission .content {
  text-align: center;
  padding: 45px 15px;
}
.box-cards-mission .card-mission .content .title {
  margin-bottom: 10px;
  font-size: 25px;
  font-weight: 700;
  color: #1a1a1a;
}
.box-cards-mission .card-mission .content .desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  color: #1a1a1a;
}

.product-area {
  overflow: visible !important;
  position: relative;
}
.product-area.bg-dark1 {
  position: relative;
  background: linear-gradient(30deg, #0a0a0a, #121212, #0a0a0a, #121212);
  overflow: hidden !important;
  z-index: 1;
}
.product-area.bg-dark1::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 300px;
  border-radius: 0 0 800px 800px;
  background: #cd0f0c;
  filter: blur(100px);
  opacity: 0.2;
  z-index: -1;
}
.product-area .productSwiper {
  position: relative;
}
.product-area .productSwiper .box-controls {
  position: relative;
  width: 200px;
  height: 60px;
  margin: 0 auto;
  margin-top: 10px;
  z-index: 1;
}
.product-area .productSwiper .swiper-scrollbar {
  position: relative;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  margin-top: 5px;
  height: 5px;
  width: 70%;
  background: rgba(245, 245, 245, 0.8);
}
.product-area .productSwiper .swiper-scrollbar .swiper-scrollbar-drag {
  background: #690706;
}
.product-area .productSwiper .swiper-pagination-fraction {
  width: 100%;
  font-size: 1rem;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  z-index: 1;
  color: #ccc;
}
.product-area .productSwiper .swiper-pagination-fraction .swiper-pagination-current,
.product-area .productSwiper .swiper-pagination-fraction .swiper-pagination-total {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0px;
  color: #ccc;
}
.product-area .productSwiper .swiper-pagination-fraction .swiper-pagination-current {
  font-size: 1.3rem;
  color: #690706;
}
.product-area .productSwiper .navs {
  position: relative;
  width: 100%;
  height: 100%;
}
@media (min-width:1400px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .product-area .productSwiper .navs {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .product-area .productSwiper .navs {
    width: 100%;
  }
}
.product-area .productSwiper .navs .swiper-button-next,
.product-area .productSwiper .navs .swiper-button-prev {
  position: absolute;
  width: 45px;
  height: 45px;
  top: 50%;
  bottom: auto;
  margin: 0;
  transform: translateY(-50%);
}
.product-area .productSwiper .navs .swiper-button-next::after,
.product-area .productSwiper .navs .swiper-button-prev::after {
  font-size: 20px;
  color: #cd0f0c;
  font-weight: 600;
}

.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  position: absolute;
  top: 55%;
  height: 55px;
  width: 55px;
  cursor: pointer;
  font-size: 1.25rem;
  text-align: center;
  line-height: 55px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
  z-index: 3;
}
.swiper .swiper-button-prev::after,
.swiper .swiper-button-next::after {
  font-size: 20px;
  color: #a81818;
  font-weight: 600;
}

.section-text1 .style-img02 {
  position: relative;
  transition: all 0.3s ease-in-out;
  background: #161616;
  border: 1px solid #cd0f0c;
  text-align: center;
  padding: 20px 20px;
  border-radius: 2px;
  height: 515px;
  width: 95%;
}
.section-text1 .style-img02.faixa-none::before {
  display: none;
}
.section-text1 .style-img02::before {
  content: "";
  position: absolute;
  top: 0;
  left: 80%;
  width: 60px;
  height: 70%;
  background: #cd0f0c;
  background: linear-gradient(180deg, #cd0f0c 40%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
}
.section-text1 .style-img02::after {
  content: "";
  position: absolute;
  bottom: -3%;
  left: -3%;
  width: 250px;
  height: 90%;
  border-radius: 1%;
  transform: rotate(0deg);
  opacity: 0.8;
  background-size: 10px 10px;
  background-image: repeating-linear-gradient(45deg, #cd0f0c 0, #cd0f0c 1px, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 50%);
  opacity: 0.8;
  z-index: -1;
}
.section-text1 .style-img02 img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -3%;
  width: 110%;
  height: 95%;
  border-radius: 3px;
  object-fit: cover;
  object-position: center;
}

.tabs-box .tab-btn-box {
  position: relative;
  max-width: 100%;
  margin-bottom: 20px;
}
.tabs-box .tab-btn-box .tab-btns {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: left;
  border-radius: 10px;
}
.tabs-box .tab-btn-box .tab-btns .tab-btn {
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 10px 10px;
  margin: 5px 3px;
  cursor: pointer;
  color: #690706;
  border-radius: 2px;
  border: 1px solid #E4E4E4;
  background: #fff;
  z-index: 1;
  transition: all 500ms ease;
  min-width: 200px;
  margin: 5px auto;
}
.tabs-box .tab-btn-box .tab-btns .tab-btn::before {
  position: absolute;
  content: "";
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  left: 0px;
  top: 0px;
  border-radius: 2px;
  z-index: -1;
  opacity: 0;
  transition: all 500ms ease;
  background: #cd0f0c;
}
.tabs-box .tab-btn-box .tab-btns .tab-btn.active-btn {
  color: #fff;
}
.tabs-box .tab-btn-box .tab-btns .tab-btn.active-btn::before {
  opacity: 1;
}
.tabs-box .tabs-content .tab {
  display: none;
}
.tabs-box .tabs-content .tab.active-tab {
  display: block;
  animation: fadeInRight 1s ease 0s 1 normal forwards;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.tabs-box .tabs-content .inner-box {
  display: flex;
  align-items: start;
  max-height: 400px;
  overflow-y: auto;
}
.tabs-box .tabs-content .inner-box .icon {
  position: relative;
  display: flex;
  justify-content: center;
  width: 110px;
  height: 110px;
  padding-right: 20px;
  margin-right: 15px;
}
.tabs-box .tabs-content .inner-box .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(19%) sepia(89%) saturate(6568%) hue-rotate(158deg) brightness(95%) contrast(101%);
}
.tabs-box .tabs-content .inner-box .text {
  position: relative;
  width: calc(100% - 110px);
}
.tabs-box .tabs-content .inner-box .text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
  width: 2px;
  height: 90%;
  border-radius: 5px;
  background: #cd0f0c;
  z-index: -1;
}
.tabs-box .tabs-content .inner-box .text h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #cd0f0c;
}
.tabs-box .tabs-content .inner-box .text p {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 15px;
  width: 95%;
}

.section-destaques {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.section-destaques.bg-dark1 .tab-content .box-text .desc p, .section-destaques.bg-dark2 .tab-content .box-text .desc p {
  color: #fff;
}
.section-destaques .box-navfeatures .custom-nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  border: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-destaques .box-navfeatures .custom-nav {
    margin-bottom: 15px;
  }
}
.section-destaques .box-navfeatures .custom-nav.to-top .tab-style {
  display: flex;
  width: 49%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-destaques .box-navfeatures .custom-nav.to-top .tab-style {
    width: 100%;
    margin: 5px;
  }
}
@media (max-width: 575px) {
  .section-destaques .box-navfeatures .custom-nav.to-top .tab-style {
    width: 100%;
    margin: 5px;
  }
}
.section-destaques .box-navfeatures .custom-nav.to-top .tab-style .nav-link {
  margin: 5px;
}
@media (max-width: 575px) {
  .section-destaques .box-navfeatures .custom-nav.to-top .tab-style .nav-link {
    margin: 0px;
  }
}
.section-destaques .box-navfeatures .custom-nav.to-top .tab-style:nth-child(1) .nav-link {
  border-radius: 5px 0 0 0px;
}
.section-destaques .box-navfeatures .custom-nav.to-top .tab-style:nth-last-child(1) .nav-link {
  border-radius: 0 5px 0 0;
}
.section-destaques .box-navfeatures .custom-nav .tab-style {
  width: 100%;
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-destaques .box-navfeatures .custom-nav .tab-style {
    width: 48%;
    margin: 5px;
  }
}
.section-destaques .box-navfeatures .custom-nav .tab-style .nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: 0 0;
  border: none;
  border-radius: 2px;
  background-color: #f5f5f5;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 18px;
  text-align: left;
  padding: 10px 30px;
  width: 100%;
  color: #000000;
  cursor: pointer;
  border: 1px solid #d8d8d8;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-destaques .box-navfeatures .custom-nav .tab-style .nav-link {
    padding: 10px 15px;
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-destaques .box-navfeatures .custom-nav .tab-style .nav-link {
    margin: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-destaques .box-navfeatures .custom-nav .tab-style .nav-link {
    padding: 10px 20px;
  }
}
@media (max-width: 575px) {
  .section-destaques .box-navfeatures .custom-nav .tab-style .nav-link {
    padding: 10px 20px;
  }
}
.section-destaques .box-navfeatures .custom-nav .tab-style .nav-link .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
}
.section-destaques .box-navfeatures .custom-nav .tab-style .nav-link .icon i {
  font-size: 30px;
  color: #cd0f0c;
  background: linear-gradient(120deg, #181818 45%, #161616 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-destaques .box-navfeatures .custom-nav .tab-style .nav-link .icon i {
    font-size: 25px;
  }
}
.section-destaques .box-navfeatures .custom-nav .tab-style .nav-link .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.section-destaques .box-navfeatures .custom-nav .tab-style .nav-link.active {
  color: #ffffff;
  background: linear-gradient(130deg, #181818 60%, #161616 100%);
  border-color: #dee2e6;
  border: 0;
}
.section-destaques .box-navfeatures .custom-nav .tab-style .nav-link.active img {
  filter: invert(1) brightness(100);
}
.section-destaques .box-navfeatures .custom-nav .tab-style .nav-link.active i {
  color: #fff;
  background: linear-gradient(120deg, #fff 45%, #eee 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-destaques .box-navfeatures .tab-content .tab-pane {
  display: none;
  padding: 5px;
}
.section-destaques .box-navfeatures .tab-content .tab-pane.active {
  display: block;
  animation: fadeInRight 1s ease 0s 1 normal forwards;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.section-destaques .box-navfeatures .tab-content .box-img {
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 2px;
  border: 2px solid #e8e8e8;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-destaques .box-navfeatures .tab-content .box-img {
    height: 400px;
  }
}
.section-destaques .box-navfeatures .tab-content .box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-destaques .box-navfeatures .tab-content .box-text {
    padding: 20px 0;
  }
}
@media (max-width: 575px) {
  .section-destaques .box-navfeatures .tab-content .box-text {
    padding: 20px 0;
  }
}
@media (max-width: 320px) {
  .section-destaques .box-navfeatures .tab-content .box-text {
    padding: 20px 0;
  }
}
.section-destaques .box-navfeatures .tab-content .box-text .subtitle {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  padding-left: 18px;
  color: #1a1a1a;
}
.section-destaques .box-navfeatures .tab-content .box-text .subtitle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1px;
  width: 2px;
  height: 15px;
  background: #cd0f0c;
  transform: translateY(-50%) skew(-10deg);
}
.section-destaques .box-navfeatures .tab-content .box-text .subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 7px;
  width: 2px;
  height: 15px;
  background: #cd0f0c;
  transform: translateY(-50%) skew(-10deg);
}
.section-destaques .box-navfeatures .tab-content .box-text .subtitle span {
  font-weight: 500;
  color: #cd0f0c;
}
.section-destaques .box-navfeatures .tab-content .box-text .title {
  font-size: 35px;
  text-transform: uppercase;
  font-weight: 700;
  color: #690706;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-destaques .box-navfeatures .tab-content .box-text .subtitle {
    font-size: 16px;
  }
  .section-destaques .box-navfeatures .tab-content .box-text .title {
    font-size: 25px;
  }
}
.section-destaques .box-navfeatures .tab-content .box-text .desc p {
  text-align: justify;
  font-size: 16px;
  margin: 5px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-destaques .box-navfeatures .tab-content .box-text .desc p {
    font-size: 14px;
    line-height: 25px;
  }
}
.section-destaques .box-navfeatures .tab-content .box-text .list {
  margin: 10px 0;
}
.section-destaques .box-navfeatures .tab-content .box-text .list li {
  display: flex;
  align-items: center;
  font-size: 16px;
  padding: 5px 0;
}
.section-destaques .box-navfeatures .tab-content .box-text .list li i {
  margin-right: 5px;
  font-size: 20px;
  background-color: #fff;
  color: #cd0f0c;
}
.section-destaques .box-navfeatures .tab-content .btn-two {
  margin-top: 15px;
  width: fit-content;
}
.section-destaques .destaques-img01 {
  position: relative;
  transition: all 0.3s ease-in-out;
  background: #161616;
  border: 1px solid #cd0f0c;
  text-align: center;
  padding: 20px 20px;
  border-radius: 2px;
  height: 515px;
  width: 95%;
}
.section-destaques .destaques-img01.faixa-none::before {
  display: none;
}
.section-destaques .destaques-img01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 80%;
  width: 60px;
  height: 70%;
  background: #cd0f0c;
  background: linear-gradient(180deg, #cd0f0c 40%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
}
.section-destaques .destaques-img01::after {
  content: "";
  position: absolute;
  bottom: -3%;
  left: -3%;
  width: 250px;
  height: 90%;
  border-radius: 1%;
  transform: rotate(0deg);
  opacity: 0.8;
  background-size: 10px 10px;
  background-image: repeating-linear-gradient(45deg, #cd0f0c 0, #cd0f0c 1px, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 50%);
  opacity: 0.8;
  z-index: -1;
}
.section-destaques .destaques-img01 img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -3%;
  width: 110%;
  height: 95%;
  border-radius: 3px;
  object-fit: cover;
  object-position: center;
}
.section-destaques .gallery-destaques .gallery-slide {
  display: block;
  width: 360px;
  height: 400px;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  filter: blur(5px);
}
.section-destaques .gallery-destaques .gallery-slide.swiper-slide-active {
  filter: none;
}
.section-destaques .gallery-destaques .gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-destaques .gallery-destaques .swiper-actions {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.section-destaques .gallery-destaques .gallery-slider .swiper-pagination {
  position: static;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.section-destaques .gallery-destaques .gallery-slider .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 4px;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
  margin: 0 !important;
}
.section-destaques .gallery-destaques .gallery-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #cd0f0c;
  width: 30px;
}

.section-vantagens {
  position: relative;
  z-index: 1;
  padding: 3rem 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-vantagens {
    padding: 2rem 0;
  }
}
.section-vantagens .vantagens-block {
  background: #0a0a0a;
  border-radius: 44px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-vantagens .vantagens-block {
    border-radius: 32px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-vantagens .vantagens-block {
    border-radius: 24px;
  }
}
.section-vantagens .vantagens-block > .row {
  min-height: 420px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-vantagens .vantagens-block > .row {
    min-height: 0;
  }
}
.section-vantagens .box-image-vantagens {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-vantagens .box-image-vantagens {
    min-height: 520px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-vantagens .box-image-vantagens {
    min-height: 340px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-vantagens .box-image-vantagens {
    min-height: 280px;
  }
}
.section-vantagens .box-image-vantagens .left-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border-radius: 44px 0 0 44px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-vantagens .box-image-vantagens .left-image {
    border-radius: 32px 0 0 32px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-vantagens .box-image-vantagens .left-image {
    border-radius: 24px 24px 0 0;
  }
}
.section-vantagens .box-image-vantagens .left-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  display: block;
}
.section-vantagens .box-image-vantagens .left-image__frame {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  top: 1.35rem;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 1.35rem;
  border: 2px solid #cd0f0c;
  border-radius: 18px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-vantagens .box-image-vantagens .left-image__frame {
    top: 1rem;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    border-radius: 14px;
  }
}
.section-vantagens .box-vantagens {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: clamp(2rem, 4vw, 3.25rem) clamp(1.25rem, 3.5vw, 3rem);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-vantagens .box-vantagens {
    padding: 2rem 1.25rem 2.25rem;
  }
}
.section-vantagens .box-vantagens .title-area2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
}
.section-vantagens .box-vantagens .title-area2.white .subtitle {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.45rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: #5c5c5c;
  border-radius: 8px;
}
.section-vantagens .box-vantagens .title-area2.white .title {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  margin-top: 0;
  margin-bottom: 0.85rem;
}
.section-vantagens .box-vantagens .title-area2.white > p:not(.subtitle) {
  margin: 0;
  max-width: 48rem;
  font-size: 0.95rem;
  line-height: 1.65;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}
.section-vantagens .box-vantagens .box-cards {
  margin-top: 0.5rem;
}
.section-vantagens .box-vantagens .box-cards .row {
  --bs-gutter-y: 1rem;
}
.section-vantagens .box-vantagens .box-cards .card-vantagens {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  height: 100%;
  background: #fff;
  padding: 1.1rem 1.15rem;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: none;
  transition: box-shadow 0.25s ease;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-vantagens .box-vantagens .box-cards .card-vantagens {
    min-height: 0;
  }
}
.section-vantagens .box-vantagens .box-cards .card-vantagens:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}
.section-vantagens .box-vantagens .box-cards .card-vantagens:hover .icon img {
  transform: none;
}
.section-vantagens .box-vantagens .box-cards .card-vantagens .icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #690706;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-vantagens .box-vantagens .box-cards .card-vantagens .icon img {
  width: 30px;
  height: 30px;
  padding: 0;
  object-fit: contain;
  object-position: center;
  filter: brightness(0) invert(1);
  transition: transform 0.25s ease;
}
.section-vantagens .box-vantagens .box-cards .card-vantagens .icon i {
  font-size: 26px;
  color: #fff;
}
.section-vantagens .box-vantagens .box-cards .card-vantagens .content {
  flex: 1;
  width: auto;
  margin-left: 0;
  min-width: 0;
}
.section-vantagens .box-vantagens .box-cards .card-vantagens .content h2,
.section-vantagens .box-vantagens .box-cards .card-vantagens .content h3 {
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #cd0f0c;
  margin: 0 0 0.35rem;
  line-height: 1.25;
}
.section-vantagens .box-vantagens .box-cards .card-vantagens .content p {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1.45;
  color: #3a3d42;
}

.section-feedbacks {
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
.section-feedbacks::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../img/banners/bg-feedbacks.webp);
  background-position: center;
  background-size: contain;
  background-blend-mode: normal;
  background-repeat: no-repeat;
  opacity: 0.45;
  z-index: 0;
  pointer-events: none;
}
.section-feedbacks > * {
  position: relative;
  z-index: 1;
}
.section-feedbacks .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #cd0f0c;
  padding: 50px 30px;
  border-radius: 30px;
  margin-bottom: 70px;
  min-height: 450px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-feedbacks .content {
    margin-bottom: 20px;
  }
}
.section-feedbacks .content .title span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  font-size: 24px;
  font-weight: 600;
  padding: 8px 10px;
  color: #fff;
  background: rgba(105, 7, 6, 0.2);
  border-radius: 100px;
  margin-bottom: 15px;
}
.section-feedbacks .content .title span i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 20px;
  background: #cd0f0c;
  color: #fff;
  font-size: 18px;
  margin-right: 10px;
  border-radius: 50%;
}
.section-feedbacks .content .title span i::before {
  margin-top: 3px;
}
.section-feedbacks .content .title h2,
.section-feedbacks .content .title h3 {
  font-size: 2.6rem;
  line-height: 2.8rem;
  margin-bottom: 15px;
  color: #fff;
}
.section-feedbacks .content .title h2 b,
.section-feedbacks .content .title h3 b {
  color: #181818;
}
.section-feedbacks .content .text {
  margin-bottom: 40px;
}
.section-feedbacks .content .text p {
  color: #fff;
  font-size: 16px;
}
.section-feedbacks .content .btn-testi {
  width: fit-content;
  padding: 10px 25px;
  background: #fff;
  color: #cd0f0c;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease;
  border-radius: 5px;
}
.section-feedbacks .content .btn-testi:hover {
  background: #690706;
  color: #fff;
}
.section-feedbacks .feedbackSwiper {
  padding: 10px;
}
.section-feedbacks .feedbackSwiper .controls {
  position: relative;
  bottom: 20px;
  width: 150px;
  margin: 0 auto;
  margin-top: 20px;
  height: 60px;
}
.section-feedbacks .feedbackSwiper .controls .swiper-button-prev,
.section-feedbacks .feedbackSwiper .controls .swiper-button-next {
  top: auto;
  bottom: 5px;
  transform: none;
}

@media (min-width: 768px) {
  .int-page-1 .ajust-float {
    width: 55%;
    float: left;
    margin-right: 20px;
  }
}
.int-page-1 .ajust-float img {
  border-radius: 5px;
  min-height: 400px;
  object-fit: cover;
}
@media (min-width: 992px) {
  .int-page-1 .padding-lg-right {
    padding-right: 5%;
  }
}
.int-page-1 .swiper-button-prev,
.int-page-1 .swiper-button-next {
  position: absolute;
  top: 55%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 1.25rem;
  text-align: center;
  line-height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
  z-index: 3;
}
.int-page-1 .swiper-button-prev::after,
.int-page-1 .swiper-button-next::after {
  font-size: 20px;
  color: #000018;
  font-weight: 600;
}
.int-page-1 p {
  text-align: justify;
  hyphens: auto;
  word-break: break-word;
}
.int-page-1 .boxExpand {
  margin: 10px 0;
  padding: 10px 0;
}
.int-page-1 .boxExpand #contentExpand {
  position: relative;
  max-height: 200px;
  overflow: hidden;
  transition: max-height 0.8s ease-in-out;
}
.int-page-1 .boxExpand #contentExpand ul li {
  list-style-position: inside;
}
.int-page-1 .boxExpand #contentExpand.expanded {
  max-height: 5000px;
}
.int-page-1 .boxExpand #contentExpand.expanded::before {
  display: none;
}
.int-page-1 .boxExpand #contentExpand::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 2;
  background: linear-gradient(to top, #ffffff 20%, rgba(0, 0, 0, 0) 100%);
}
.int-page-1 .boxExpand .btn-expand {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  top: 0px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  z-index: 2;
  border: none;
  outline: none;
  transition: 0.3s ease;
  background: transparent;
}
.int-page-1 .boxExpand .btn-expand i {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cd0f0c;
  bottom: 0px;
  font-size: 40px;
  transition: 0.3s ease;
}

.int-page-2 .prodintSwiper {
  height: 400px;
}
.int-page-2 .swiper-button-prev,
.int-page-2 .swiper-button-next {
  position: absolute;
  top: 55%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 1.25rem;
  text-align: center;
  line-height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
  z-index: 3;
}
.int-page-2 .swiper-button-prev::after,
.int-page-2 .swiper-button-next::after {
  font-size: 20px;
  color: #000018;
  font-weight: 600;
}
.int-page-2 .img-text {
  position: relative;
  background-image: url(../img/gallery/about.webp);
}
.int-page-2 .img-text::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, #454545, rgba(255, 255, 255, 0));
  z-index: 0;
}
.int-page-2 .img-text .content-padding {
  padding: 32px;
  z-index: 1;
}
.int-page-2 .img-text .content-padding h2,
.int-page-2 .img-text .content-padding p {
  color: #FFF;
}
.int-page-2 .buttons .btn-main {
  width: 100%;
  text-align: center;
  margin-left: 0;
}

.int-page-3 .title-text01 {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center !important;
  padding: 10px;
}
.int-page-3 .title-text01 .title {
  position: relative;
}
.int-page-3 .title-text01 .title .sub-bg {
  position: absolute;
  top: -40px;
  left: -40px;
  font-size: 100px;
  font-weight: 600;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #cd0f0c;
  opacity: 0.2;
}
.int-page-3 .title-text01 .title h1,
.int-page-3 .title-text01 .title h2,
.int-page-3 .title-text01 .title h3 {
  position: relative;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 10px 0;
  background: -webkit-linear-gradient(#cd0f0c, #690706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.int-page-3 .section-title02 {
  position: relative;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  z-index: 1;
}
.int-page-3 .section-title02 .icon {
  width: 120px;
  opacity: 1;
  z-index: -1;
}
.int-page-3 .section-title02 .subtitle {
  font-size: 24px;
  font-weight: 700;
  color: #690706;
  background: linear-gradient(90deg, #cd0f0c 45%, #690706 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}
@media (max-width: 575px) {
  .int-page-3 .section-title02 .subtitle {
    font-size: 18px;
  }
}
@media (max-width: 320px) {
  .int-page-3 .section-title02 .subtitle {
    font-size: 16px;
  }
}
.int-page-3 .section-title02 .title {
  font-size: 45px;
  font-weight: 800;
  color: #2c2b2b;
  text-align: center;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .int-page-3 .section-title02 .title {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  .int-page-3 .section-title02 .title {
    font-size: 30px;
  }
}
@media (max-width: 320px) {
  .int-page-3 .section-title02 .title {
    font-size: 22px;
  }
}
.int-page-3 .section-title02 .title.color-gradint {
  background: linear-gradient(90deg, #cd0f0c 45%, #690706 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.int-page-3 .section-title02 .desc {
  margin: 5px 0;
}
.int-page-3 .section-title02 .desc p {
  text-align: center;
  font-size: 16px;
  color: #1a1a1a;
  margin: 0;
}
.int-page-3 .style-img01 {
  position: relative;
  transition: all 0.3s ease-in-out;
  background: #fff;
  border: 1px solid #cd0f0c;
  text-align: center;
  padding: 20px 20px;
  border-radius: 10px;
  height: 415px;
  width: 90%;
}
.int-page-3 .style-img01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 80%;
  width: 60px;
  height: 70%;
  background: #cd0f0c;
  background: linear-gradient(180deg, #cd0f0c 40%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
}
.int-page-3 .style-img01::after {
  content: "";
  position: absolute;
  bottom: -3%;
  left: -3%;
  width: 250px;
  height: 80%;
  border-radius: 5%;
  transform: rotate(0deg);
  background: radial-gradient(farthest-side at -33.33% 50%, rgba(0, 0, 0, 0) 52%, #690706 54% 57%, rgba(0, 0, 0, 0) 59%) 0 40px, radial-gradient(farthest-side at 50% 133.33%, rgba(0, 0, 0, 0) 52%, #690706 54% 57%, rgba(0, 0, 0, 0) 59%) 40px 0, radial-gradient(farthest-side at 133.33% 50%, rgba(0, 0, 0, 0) 52%, #690706 54% 57%, rgba(0, 0, 0, 0) 59%), radial-gradient(farthest-side at 50% -33.33%, rgba(0, 0, 0, 0) 52%, #690706 54% 57%, rgba(0, 0, 0, 0) 59%), #fefeff;
  background-size: 17.1416327405px 80px, 80px 17.1416327405px;
  opacity: 0.5;
  z-index: -1;
}
.int-page-3 .style-img01 img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -5%;
  width: 110%;
  height: 90%;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
}

.int-page-4 .box-img {
  margin-bottom: 20px;
  height: 450px;
}
.int-page-4 .box-img .prodintSwiper {
  width: 100%;
  height: 100%;
}
.int-page-4 .service-content .titles1 {
  font-size: 26px;
  margin: 15px 0;
  color: #690706;
}
.int-page-4 .service-content .titles2 {
  color: #690706;
  font-size: 24px;
  margin: 15px 0;
}
.int-page-4 .service-content p {
  font-size: 16px;
  text-align: justify;
  color: #000;
}
.int-page-4 .service-details-card {
  padding: 20px;
  box-shadow: 0px 8px 30px rgba(106, 106, 106, 0.1019607843);
  display: flex;
  align-items: start;
  border-left: 5px solid #cd0f0c;
  margin: 20px 0;
}
.int-page-4 .service-details-card .icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 5px;
  background-color: #f2f2f2;
  font-size: 35px;
  color: #cd0f0c;
}
.int-page-4 .service-details-card .details {
  margin-left: 20px;
}
.int-page-4 .service-details-card .details h2,
.int-page-4 .service-details-card .details h3 {
  font-size: 1.4rem;
  line-height: 1.4rem;
  margin-bottom: 10px;
}
.int-page-4 .service-details-card .details p {
  font-size: 16px;
  color: #000;
}
.int-page-4 .sidebar02 .box-categoria {
  padding: 20px 30px;
  margin-bottom: 10px;
  background-color: rgba(238, 238, 238, 0.9333333333);
}
.int-page-4 .sidebar02 .box-categoria .cat-title {
  font-size: 30px;
  font-weight: 600;
  margin: 15px 0;
}
.int-page-4 .sidebar02 .box-categoria ul {
  margin-bottom: 10px;
}
.int-page-4 .sidebar02 .box-categoria ul li {
  padding: 18px 25px;
  list-style: none;
  background: #fff;
  margin-top: 15px;
  position: relative;
  z-index: 1;
  font-weight: 600;
  overflow: hidden;
  transition: 0.3s ease;
}
.int-page-4 .sidebar02 .box-categoria ul li a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  color: #000;
}
.int-page-4 .sidebar02 .box-categoria ul li:hover {
  transform: scale(1.03);
  background: #cd0f0c;
}
.int-page-4 .sidebar02 .box-categoria ul li:hover a {
  color: #fff;
}
.int-page-4 .sidebar02 .sidebar-cta {
  position: relative;
  padding: 20px 30px;
  margin: 20px 0;
  height: 450px;
}
.int-page-4 .sidebar02 .sidebar-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  z-index: 1;
}
.int-page-4 .sidebar02 .sidebar-cta img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.int-page-4 .sidebar02 .sidebar-cta .content-inner {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 20px 30px;
  z-index: 2;
}
.int-page-4 .sidebar02 .sidebar-cta .content-inner i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #cd0f0c;
  border-radius: 50%;
  color: #fff;
  font-size: 25px;
}
.int-page-4 .sidebar02 .sidebar-cta .content-inner h2,
.int-page-4 .sidebar02 .sidebar-cta .content-inner h3 {
  color: #fff;
  font-size: 26px;
  margin: 15px 0;
}
.int-page-4 .sidebar02 .sidebar-cta .content-inner a {
  padding: 15px 30px;
  background-color: #cd0f0c;
  color: #fff;
  font-size: 18px;
  transition: 0.3s ease;
}
.int-page-4 .sidebar02 .sidebar-cta .content-inner a:hover {
  background-color: #fff;
  color: #cd0f0c;
}
.int-page-4 .swiper-button-prev,
.int-page-4 .swiper-button-next {
  position: absolute;
  top: 55%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 1.25rem;
  text-align: center;
  line-height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
  z-index: 3;
}
.int-page-4 .swiper-button-prev::after,
.int-page-4 .swiper-button-next::after {
  font-size: 20px;
  color: #000018;
  font-weight: 600;
}

.box-navfeatures .custom-nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  border: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .box-navfeatures .custom-nav {
    margin-bottom: 15px;
  }
}
.box-navfeatures .custom-nav .tab-style {
  width: 100%;
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .box-navfeatures .custom-nav .tab-style {
    width: 48%;
    margin: 5px;
  }
}
.box-navfeatures .custom-nav .tab-style .nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: 0 0;
  border: none;
  border-radius: 10px;
  background-color: #f5f5f5;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 18px;
  text-align: left;
  padding: 10px 30px;
  width: 100%;
  color: #000000;
  cursor: pointer;
  border: 1px solid #d8d8d8;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .box-navfeatures .custom-nav .tab-style .nav-link {
    padding: 10px 15px;
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .box-navfeatures .custom-nav .tab-style .nav-link {
    margin: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .box-navfeatures .custom-nav .tab-style .nav-link {
    padding: 10px 20px;
  }
}
@media (max-width: 575px) {
  .box-navfeatures .custom-nav .tab-style .nav-link {
    padding: 10px 20px;
  }
}
.box-navfeatures .custom-nav .tab-style .nav-link .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
}
.box-navfeatures .custom-nav .tab-style .nav-link .icon i {
  font-size: 30px;
  color: #cd0f0c;
  background: linear-gradient(120deg, #690706 45%, #cd0f0c 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .box-navfeatures .custom-nav .tab-style .nav-link .icon i {
    font-size: 25px;
  }
}
.box-navfeatures .custom-nav .tab-style .nav-link .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.box-navfeatures .custom-nav .tab-style .nav-link.active {
  color: #ffffff;
  background: linear-gradient(130deg, #690706 60%, #cd0f0c 100%);
  border-color: #dee2e6;
  border: 0;
}
.box-navfeatures .custom-nav .tab-style .nav-link.active img {
  filter: brightness(600%) saturate(0);
}
.box-navfeatures .custom-nav .tab-style .nav-link.active i {
  color: #fff;
  background: linear-gradient(120deg, #fff 45%, #eee 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.box-navfeatures .tab-content .tab-pane {
  display: none;
  padding: 5px;
}
.box-navfeatures .tab-content .tab-pane.active {
  display: flex;
  animation: zoomIn 1s ease 0s 1 normal forwards;
}
.box-navfeatures .tab-content .box-img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  border: 2px solid #e8e8e8;
  margin-bottom: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .box-navfeatures .tab-content .box-img {
    height: 400px;
  }
}
.box-navfeatures .tab-content .box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .box-navfeatures .tab-content .box-text {
    padding: 20px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .box-navfeatures .tab-content .box-text {
    padding: 20px 0;
  }
}
@media (max-width: 320px) {
  .box-navfeatures .tab-content .box-text {
    padding: 20px 0;
  }
}
.box-navfeatures .tab-content .box-text .subtitle {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  padding-left: 18px;
  color: #1a1a1a;
}
.box-navfeatures .tab-content .box-text .subtitle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1px;
  width: 2px;
  height: 15px;
  background: #181818;
  transform: translateY(-50%) skew(-10deg);
}
.box-navfeatures .tab-content .box-text .subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 7px;
  width: 2px;
  height: 15px;
  background: #181818;
  transform: translateY(-50%) skew(-10deg);
}
.box-navfeatures .tab-content .box-text .subtitle span {
  font-weight: 500;
  color: #cd0f0c;
}
.box-navfeatures .tab-content .box-text .title {
  font-size: 35px;
  text-transform: uppercase;
  font-weight: 700;
  color: #690706;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .box-navfeatures .tab-content .box-text .subtitle {
    font-size: 16px;
  }
  .box-navfeatures .tab-content .box-text .title {
    font-size: 25px;
  }
}
.box-navfeatures .tab-content .box-text .desc p {
  text-align: justify;
  font-size: 16px;
  margin: 5px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .box-navfeatures .tab-content .box-text .desc p {
    font-size: 14px;
    line-height: 25px;
  }
}
.box-navfeatures .tab-content .box-text .list {
  margin: 10px 0;
}
.box-navfeatures .tab-content .box-text .list li {
  display: flex;
  align-items: center;
  font-size: 16px;
  padding: 5px 0;
}
.box-navfeatures .tab-content .box-text .list li i {
  margin-right: 5px;
  font-size: 20px;
  background-color: #fff;
  color: #cd0f0c;
}
.box-navfeatures .tab-content .box-text .btn-four {
  margin-top: 10px;
  padding: 8px 20px;
}

.tab-pane-horizontal .table-container {
  width: 100%;
  overflow-x: auto; /* garante rolagem em telas muito estreitas */
}
.tab-pane-horizontal {
  /* Estilo da tabela */
}
.tab-pane-horizontal table {
  width: 100%;
  border-collapse: collapse;
  min-width: 300px; /* evita "apertar" demais em telas pequenas */
  font-family: "Lato", arial;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
}
.tab-pane-horizontal th,
.tab-pane-horizontal td {
  padding: 12px;
  border: none;
  text-align: left;
}
.tab-pane-horizontal {
  /* Cabeçalho */
}
.tab-pane-horizontal th {
  background-color: #004080;
  color: white;
}
.tab-pane-horizontal {
  /* Linhas alternadas */
}
.tab-pane-horizontal tr:nth-child(even) {
  background-color: #eee;
}
.tab-pane-horizontal tr:nth-child(odd) {
  background-color: #ffffff;
}
.tab-pane-horizontal {
  /* Efeito hover */
}
.tab-pane-horizontal tr:hover {
  background-color: #ddd;
}
.tab-pane-horizontal td:first-child {
  font-weight: bold;
}

.tab-content .pagina {
  width: 100%;
  max-width: 1000px;
  text-align: center;
  margin: auto;
}
.tab-content .infografico {
  width: 100%;
  height: auto;
  text-align: center;
  margin: auto;
}
.tab-content .infografico p {
  color: #333;
  font-family: "Lato", arial;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  text-align: center;
}
.tab-content .imagem-infografico {
  width: 90%;
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 80px;
  font-family: "Lato", arial;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #555;
}
.tab-content .imagem-infografico img {
  width: 100%;
}
.tab-content .texto-infografico {
  width: 90%;
  color: #333;
  font-family: "Lato", arial;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  text-align: center;
  height: auto;
  padding-bottom: 20px;
  padding-top: 10px;
  padding-left: 5%;
  padding-right: 5%;
}
.tab-content .titulo-infografico {
  width: 100%;
  font-family: "Lato", arial;
  font-weight: 700;
  font-style: normal;
  font-size: 35px;
  text-align: center;
  border-top: 1px solid #ccc;
  padding-top: 50px;
  text-transform: uppercase;
}

/* Estilos para tabs horizontais */
.section-tabs {
  background: #f8f9fa;
}

.tabs-container-horizontal {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.tabs-nav-horizontal {
  display: flex;
  background: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
  padding: 10px;
  gap: 10px;
}

.tab-btn-horizontal {
  flex: 1;
  padding: 15px 20px;
  border: 2px solid #e9ecef;
  background: #f8f9fa;
  color: #333;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 10px;
  text-align: center;
  position: relative;
}

.tab-btn-horizontal:hover {
  background: #e9ecef;
  border-color: #8B0000;
  color: #8B0000;
}

.tab-btn-horizontal.active {
  background: linear-gradient(135deg, #8B0000 0%, #A00000 100%);
  border-color: #8B0000;
  color: #fff;
  box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
}

@media (max-width: 991.98px) {
  .tabs-nav-horizontal {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    justify-content: flex-start;
    scrollbar-width: thin;
  }
  .tab-btn-horizontal {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}
.tabs-content-horizontal {
  padding: 30px;
}

.tab-pane-horizontal {
  display: none;
}

.tab-pane-horizontal.active {
  display: block;
}

.tabs-content-horizontal p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
  text-align: justify;
  font-weight: 400;
}

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

.caracteristicas-list li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  font-weight: 500;
}

.caracteristicas-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #dc3545;
  font-weight: bold;
}

.download-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-download-catalog,
.btn-download-manual {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #8B0000 0%, #A00000 100%);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: 1px solid #8B0000;
}

.btn-download-catalog:hover,
.btn-download-manual:hover {
  background: linear-gradient(135deg, #6B0000 0%, #8B0000 100%);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
}

/* Página de produto (prod.php) */
.product-image-container {
  background: white;
  border: none;
  border-radius: 0;
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(180deg);
  }
}
.main-product-img {
  width: 100%;
  height: 350px;
  object-fit: contain;
  object-position: center;
  display: block;
  position: relative;
  z-index: 2;
  filter: none;
  transition: all 0.4s ease;
}

.main-product-img:hover {
  transform: scale(1.02);
  filter: none;
}

.product-thumbnails {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  padding: 25px;
  background: linear-gradient(135deg, #f1f3f4 0%, #ffffff 100%);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(220, 53, 69, 0.1);
}

.thumbnail {
  width: 90px;
  height: 90px;
  border: 2px solid #666;
  border-radius: 15px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
  position: relative;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.thumbnail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.thumbnail:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  border-color: #333;
}

.thumbnail:hover::before {
  opacity: 1;
}

.thumbnail.active {
  border: 2px solid #dc3545;
  box-shadow: 0 10px 25px rgba(220, 53, 69, 0.4);
}

.thumbnail.active::before {
  opacity: 1;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  filter: contrast(1.1) brightness(1.05);
}

.thumbnail:hover img {
  transform: scale(1.15);
  filter: contrast(1.2) brightness(1.1);
}

.product-description {
  margin-top: 20px;
}

.product-description p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 25px;
  font-weight: 400;
  text-align: justify;
}

.title-area2 .title {
  font-size: 24px;
  font-weight: 700;
  color: #8b0000;
  line-height: 1.4;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.5px;
}

.product-buttons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.btn-solicitar-orcamento,
.btn-entrar-contato {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
}

.btn-solicitar-orcamento {
  background: transparent;
  color: #8b0000;
  border: 1px solid #8b0000;
}

.btn-solicitar-orcamento:hover {
  background: #8b0000;
  color: white;
}

.btn-entrar-contato {
  background: #8b0000;
  color: white;
  border: 1px solid #8b0000;
  position: relative;
  overflow: hidden;
}

.btn-entrar-contato::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-entrar-contato:hover::before {
  left: 100%;
}

.btn-entrar-contato:hover {
  background: #6b0000;
  border-color: #6b0000;
  transform: scale(1.05);
}

.orcamento-form {
  max-width: 100%;
}

.orcamento-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.orcamento-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.orcamento-field label {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.orcamento-field input,
.orcamento-field select {
  height: 46px;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  padding: 0 14px;
  font-size: 15px;
  color: #1f1f1f;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.orcamento-field input:focus,
.orcamento-field select:focus {
  outline: none;
  border-color: #8b0000;
  box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.12);
}

.orcamento-field input[readonly] {
  background: #f5f5f5;
  color: #666;
}

.btn-orcamento-submit {
  border: 1px solid #8b0000;
  background: linear-gradient(135deg, #8b0000 0%, #a00000 100%);
  color: #fff;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
}

.btn-orcamento-submit:hover {
  background: linear-gradient(135deg, #6b0000 0%, #8b0000 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(139, 0, 0, 0.25);
}

@media (max-width: 767px) {
  .orcamento-grid {
    grid-template-columns: 1fr;
  }
}
.catalogo-download-section {
  position: relative;
  overflow: visible !important;
  padding: 75px 0 120px;
  z-index: 5;
}

.catalogo-wrap {
  position: relative;
  z-index: 5;
  padding-top: 34px;
  padding-bottom: 120px;
}
.catalogo-wrap .catalogo-box {
  position: relative;
  background: #0A0A0A;
  border-radius: 25px;
  padding: 42px 40px;
  min-height: 250px;
  overflow: visible !important;
}
.catalogo-wrap .catalogo-box .row {
  min-height: 165px;
}
.catalogo-wrap .catalogo-box .conteudo {
  position: relative;
  z-index: 3;
  color: #fff;
}
.catalogo-wrap .catalogo-box .conteudo h2 {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 10px;
}
.catalogo-wrap .catalogo-box .conteudo h2 span {
  color: #e30613;
  font-weight: 700;
}
.catalogo-wrap .catalogo-box .conteudo p {
  color: #ccc;
  margin-bottom: 20px;
  font-size: 16px;
}
.catalogo-wrap .catalogo-box .btn-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #e30613;
  color: #fff;
  padding: 12px 25px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
}
.catalogo-wrap .catalogo-box .btn-download .icon {
  background: #fff;
  color: #000;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.catalogo-wrap .catalogo-box .btn-download i {
  font-size: 16px;
}
.catalogo-wrap .catalogo-box .img-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(30%, 360px);
  height: auto;
  opacity: 1;
  z-index: 2;
  pointer-events: none;
}
.catalogo-wrap .img-central {
  position: absolute;
  left: 50%;
  top: -30px;
  transform: translateX(-50%);
  z-index: 4;
}
.catalogo-wrap .img-central img {
  width: auto;
  height: clamp(360px, 33vw, 40px);
  max-width: none;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .catalogo-wrap .catalogo-box {
    padding: 28px 24px;
    min-height: unset;
    overflow: hidden;
  }
  .catalogo-wrap .catalogo-box .row {
    min-height: unset;
  }
  .catalogo-wrap .catalogo-box .conteudo {
    text-align: center;
  }
  .catalogo-wrap .catalogo-box .conteudo p br {
    display: none;
  }
  .catalogo-wrap .catalogo-box .img-overlay {
    width: min(42%, 180px);
    opacity: 0.38;
  }
  .catalogo-wrap .img-central {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    padding-top: 0;
    margin: 20px auto 0;
  }
  .catalogo-wrap .img-central img {
    width: min(100%, 320px);
    height: auto;
    max-width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .catalogo-download-section {
    padding: 55px 0 50px;
  }
}
/* Estilos para textos das tabs */
.tabs-content-horizontal p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
  text-align: justify;
  font-weight: 400;
}

.caracteristicas-list li {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  font-weight: 500;
}

/* Estilos para a tabela */
.table-container {
  overflow-x: auto;
}

.table-container table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.table-container td {
  padding: 12px 15px;
  border-bottom: 1px solid #dee2e6;
  vertical-align: top;
}

.table-container td:first-child {
  font-weight: 600;
  color: #8B0000;
  width: 40%;
}

.table-container td:last-child {
  color: #333;
}

/* Estilos para imagens infográficas */
.imagem-infografico {
  text-align: center;
  margin: 20px 0;
}

.imagem-infografico img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.titulo-infografico {
  color: #8B0000;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.texto-infografico {
  margin-bottom: 30px;
}

.texto-infografico p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
}

.map-site ul li {
  margin-bottom: 10px;
}
.map-site ul li i {
  color: #690706;
}
.map-site ul li a {
  color: #000;
  text-transform: uppercase;
  font-size: 0.9em;
}
.map-site ul li a:hover {
  color: #cd0f0c;
  padding-left: 5px;
}

.politica-de-privacidade h2 {
  margin-top: 15px;
}

.politica-de-devolucao-page .return-policy-body {
  font-size: 16px;
  line-height: 1.65;
  color: #2f2f2f;
}
.politica-de-devolucao-page .return-policy-body p {
  text-align: left;
}
.politica-de-devolucao-page .return-policy-body .return-policy-list {
  padding-left: 1.35rem;
  margin-bottom: 1.25rem;
}
.politica-de-devolucao-page .return-policy-body .return-policy-list li {
  margin-bottom: 0.85rem;
}
.politica-de-devolucao-page .return-policy-body .return-policy-list li:last-child {
  margin-bottom: 0;
}
.politica-de-devolucao-page .return-policy-body .return-policy-list--compact li {
  margin-bottom: 0.5rem;
}
.politica-de-devolucao-page .return-policy-body a {
  color: #cd0f0c;
  font-weight: 600;
  text-decoration: underline;
}
.politica-de-devolucao-page .return-policy-body a:hover {
  color: #690706;
}

.lgpd {
  position: fixed;
  bottom: 4%;
  left: 2%;
  max-width: 360px;
  padding: 1rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  z-index: 9999;
}
.lgpd .title {
  font-weight: 600;
  color: rgb(31, 41, 55);
}
.lgpd .description {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgb(75, 85, 99);
}
.lgpd .description a {
  color: rgb(59, 130, 246);
}
.lgpd .description a:hover {
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
}
.lgpd .actions {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-top: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  flex-shrink: 0;
}
.lgpd .actions .pref {
  font-size: 0.75rem;
  line-height: 1rem;
  color: rgb(31, 41, 55);
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  background-color: transparent;
}
.lgpd .actions .pref:hover {
  color: rgb(156, 163, 175);
}
.lgpd .actions .pref:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.lgpd .actions .accept {
  font-size: 0.75rem;
  line-height: 1rem;
  background-color: rgb(17, 24, 39);
  font-weight: 500;
  border-radius: 0.5rem;
  color: #fff;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  cursor: pointer;
  border: none;
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.lgpd .actions .accept:hover {
  background-color: rgb(55, 65, 81);
}
.lgpd .actions .accept:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1 * var(--slide-width) * var(--slides)));
  }
}
.slider {
  --slide-width: 315px;
  --slide-height: 240px;
  --slides: 7;
  --fade-width: 120px;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.12);
  height: var(--slide-height);
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
}
.slider::before, .slider::after {
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 100%;
  position: absolute;
  width: var(--fade-width);
  z-index: 2;
  pointer-events: none;
}
.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.slider::before {
  left: 0;
  top: 0;
}
.slider:hover .slide-track {
  animation-play-state: paused;
}
.slider .slide-track {
  animation: scroll 30s linear infinite;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-inline: 8px;
  will-change: transform;
  width: calc(var(--slide-width) * var(--slides) * 2);
}
.slider .slide {
  height: var(--slide-height);
  width: var(--slide-width);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider .slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
  filter: saturate(1.05) contrast(1.02);
}

@media (max-width: 991px) {
  .slider {
    --slide-width: 180px;
    --slide-height: 90px;
    --fade-width: 80px;
  }
}
@media (max-width: 575px) {
  .slider {
    --slide-width: 140px;
    --slide-height: 80px;
    --fade-width: 64px;
    border-radius: 6px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .slider .slide-track {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
.politic {
  background: #f5f5f5;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  margin: 24px 0;
}
.politic h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.2;
  color: #1a1a1a;
  background: linear-gradient(20deg, #cd0f0c, #690706, #cd0f0c, #690706);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.politic p {
  margin: 0 0 12px 0;
  color: black;
  font-size: 1rem;
  line-height: 1.6;
}
.politic ul {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
}
.politic li {
  display: grid;
  grid-template-columns: 35px 1fr;
  line-height: 30px;
  gap: 10px;
  font-size: 20px;
  align-items: start;
  color: #1a1a1a;
}
.politic li::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 36px;
  margin-top: 4px;
  background: url("../img/icons/check-icon.webp") no-repeat center/contain;
}
@media (min-width: 768px) {
  .politic {
    padding: 28px 32px;
  }
  .politic ul {
    grid-template-columns: 1fr 1fr;
  }
}

.card {
  --bg: #fff;
  --title-color: #fff;
  --title-color-hover: #000;
  --text-color: #666;
  --button-color: #eee;
  --button-color-hover: #ddd;
  background: var(--bg);
  border-radius: 2rem;
  padding: 0.5rem;
  height: 30rem;
  margin: 2rem;
  overflow: hidden;
  position: relative;
  font-family: Lato, Montserrat, Helvetica, Arial, sans-serif;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translateY(30px);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .card {
    height: 28rem;
    margin: 1.5rem;
    border-radius: 1.5rem;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .card {
    height: 25rem;
    margin: 1rem;
    border-radius: 1rem;
    padding: 0.3rem;
  }
}
.card.card-enter {
  animation: cardEnter 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.card .title {
  font-size: 33px;
  z-index: 2;
  color: #ffffff;
  align-self: center;
  text-align: center;
  margin-top: -150px;
  font-weight: 600;
  padding: 0 40px 0 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .card .title {
    font-size: 20px;
    margin-top: -85px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .card .title {
    font-size: 18px;
    margin-top: -75px;
  }
}
@keyframes cardEnter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.card::before {
  content: "";
  position: absolute;
  width: calc(100% - 1rem);
  height: 66%;
  bottom: 8px;
  left: 0.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  border-radius: 0 0 1.5rem 1.5rem;
  translate: 0 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .card::before {
    bottom: 8px;
    border-radius: 0 0 1.2rem 1.2rem;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .card::before {
    bottom: 8px;
    left: 0.3rem;
    width: calc(100% - 0.6rem);
    border-radius: 0 0 1rem 1rem;
  }
}
.card img {
  max-width: 100%;
  aspect-ratio: 3/3;
  object-fit: cover;
  object-position: 50% 5%;
  border-radius: 1.5rem;
  display: block;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(1);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .card img {
    border-radius: 1.2rem;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .card img {
    border-radius: 1rem;
    aspect-ratio: 3/4;
  }
}
.card section {
  margin: 1rem;
  height: calc(33.3333% - 1rem);
  display: none;
  position: relative;
  z-index: 3;
  overflow-y: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .card section {
    margin: 0.8rem;
    height: calc(33.3333% - 0.8rem);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .card section {
    margin: 0.5rem;
    height: calc(33.3333% - 0.5rem);
  }
}
.card section h3 {
  margin: 0;
  margin-block-end: 1rem;
  font-size: 1.3rem;
  opacity: 0;
  translate: 0 -200%;
  color: var(--title-color);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-weight: 700;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .card section h3 {
    font-size: 1.3rem;
    margin-block-end: 0.8rem;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .card section h3 {
    font-size: 1.1rem;
    margin-block-end: 0.6rem;
  }
}
.card section p {
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--text-color);
  opacity: 0;
  margin: 0;
  translate: 0 100%;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .card section p {
    font-size: 0.9rem;
    line-height: 1.3;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .card section p {
    font-size: 0.85rem;
    line-height: 1.3;
  }
}
.card section div {
  flex: 1;
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  translate: 0 100%;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}
.card section div .tag {
  align-self: center;
  color: var(--title-color-hover);
}
.card section div button {
  border: 1px solid transparent;
  border-radius: 1.25rem 1.25rem 1.5rem 1.25rem;
  font-size: 1rem;
  padding: 1rem 1.5rem 1rem 2.75rem;
  translate: 1rem;
  background: var(--button-color);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  outline-offset: 2px;
  position: relative;
  color: var(--title-color-hover);
  cursor: pointer;
  font-weight: 600;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .card section div button {
    font-size: 0.9rem;
    padding: 0.8rem 1.2rem 0.8rem 2.5rem;
    border-radius: 1rem 1rem 1.2rem 1rem;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .card section div button {
    font-size: 0.8rem;
    padding: 0.6rem 1rem 0.6rem 2rem;
    border-radius: 0.8rem 0.8rem 1rem 0.8rem;
    translate: 0.5rem;
  }
}
.card section div::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
  z-index: 1;
}
.card section div::after {
  content: "";
  width: 0.85rem;
  height: 0.1rem;
  background: currentcolor;
  position: absolute;
  top: 50%;
  left: 1.33rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
  z-index: 2;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .card section div::after {
    width: 0.75rem;
    left: 1.2rem;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .card section div::after {
    width: 0.65rem;
    left: 1rem;
  }
}
.card section div .icon-plus {
  position: absolute;
  top: 50%;
  left: 1.33rem;
  width: 0.85rem;
  height: 0.1rem;
  background: currentcolor;
  border-radius: 1rem;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  z-index: 2;
}
.card section div .icon-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.85rem;
  height: 0.1rem;
  background: currentcolor;
  border-radius: 1rem;
  transform: translate(-50%, -50%) rotate(90deg);
  transition: all 0.3s ease;
}
.card section div.following::after {
  rotate: 0deg;
}
.card section div:hover {
  background: var(--button-color-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.card section div:hover::before {
  left: 100%;
}
.card section div:focus {
  outline: 2px solid var(--text-color);
}
.card:hover, .card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.card:hover .title, .card:focus-within .title {
  display: none;
}
.card:hover::before, .card:focus-within::before {
  translate: 0 100%;
}
.card:hover img, .card:focus-within img {
  aspect-ratio: 1/1;
  object-position: 50% 10%;
  transform: scale(1.05);
  height: 345px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .card:hover img, .card:focus-within img {
    height: 200px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .card:hover img, .card:focus-within img {
    height: 180px;
    transform: scale(1.02);
  }
}
.card:hover section, .card:focus-within section {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card:hover section h3,
.card:hover section p, .card:focus-within section h3,
.card:focus-within section p {
  translate: 0 0;
  margin-block-end: 0.5rem;
  opacity: 1;
}
.card:hover section h3, .card:focus-within section h3 {
  color: var(--title-color-hover);
}
.card:hover section div, .card:focus-within section div {
  translate: 0 0;
  opacity: 1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .card:hover, .card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
}

.card-unidade {
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  overflow: hidden;
  background: #950f0e;
  min-height: 100%;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}
.card-unidade.color2 {
  background: #c70c10;
}
.card-unidade__media {
  position: relative;
  flex: 0 0 auto;
  height: clamp(200px, 52vw, 280px);
  max-height: 320px;
  background: #950f0e;
}
.card-unidade__media.color2 {
  background: #c70c10;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .card-unidade__media {
    height: 260px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .card-unidade__media {
    height: 280px;
  }
}
.card-unidade__media img {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.card-unidade__media iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 28px;
  display: block;
}
.card-unidade__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 22px 22px 24px;
  background: #950f0e;
  text-align: left;
}
.card-unidade__body.color2 {
  background: #c70c10;
}
.card-unidade__tag {
  display: inline-block;
  align-self: flex-start;
  background: #dadada;
  color: #000;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 8px;
  margin-bottom: 14px;
  line-height: 1.2;
}
.card-unidade__title {
  color: #fff;
  font-size: clamp(1.05rem, 2.8vw, 1.35rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.25;
  margin: 0 0 12px 0;
}
.card-unidade__address {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.45;
  margin: 0 0 20px 0;
  flex: 1 1 auto;
}
.card-unidade__btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin-top: auto;
  padding: 12px 18px 12px 20px;
  background: #000;
  color: #fff !important;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.card-unidade__btn:hover {
  opacity: 0.92;
  color: #fff !important;
}
.card-unidade__btn-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/*# sourceMappingURL=style.css.map */
