@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
@font-face {
  font-family: "Impact Regular";
  font-style: normal;
  font-weight: normal;
  src: local("Impact Regular"), url("../fonts/impact.woff") format("woff");
}

@font-face {
  font-family: "Impact Regular";
  font-style: normal;
  font-weight: normal;
  src: local("Impact Regular"),
    url("../fonts/unicode.impact.woff") format("woff");
}

@font-face {
  font-family: "Impacted Regular";
  font-style: normal;
  font-weight: normal;
  src: local("Impacted Regular"), url("../fonts/Impacted.woff") format("woff");
}

:root {
  --font-theme-title: "Impact Regular";
  --font-theme-text: "Poppins", serif;
  --font-theme-awesome: "Font Awesome 6 Pro";
  --theme-color-1: #000000;
  --theme-color-2: #ffffff;
  --theme-color-3: #ed0000;
  --theme-color-4: #656565;
  --theme-color-5: #d9d9d9;
}

body {
  font-family: var(--font-theme-text);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-theme-title);
  letter-spacing: 1px;
}

a {
  text-decoration: none;
  color: var(--theme-color-1);
}

a:hover {
  text-decoration: none;
}

.btn-theme {
  background-color: var(--theme-color-2);
  color: var(--theme-color-3);
  border-radius: 0;
  text-transform: uppercase;
  font-weight: 600;
}

.btn-theme:hover {
  background-color: var(--theme-color-3);
  color: var(--theme-color-2);
  transition: 0.3s ease-in-out;
}

.btn-theme-secondary {
  background-color: var(--theme-color-3);
  color: var(--theme-color-2);
  border-radius: 0;
  text-transform: uppercase;
  font-weight: 600;
}

.btn-theme-secondary:hover {
  background-color: var(--theme-color-1);
  color: var(--theme-color-3);
  transition: 0.3s ease-in-out;
}

.btn-theme-tertiary {
  background-color: var(--theme-color-2);
  color: var(--theme-color-3);
  border: 1px solid var(--theme-color-3);
  border-radius: 0;
  text-transform: uppercase;
  font-weight: 600;
}

.btn-theme-tertiary:hover {
  background-color: var(--theme-color-1);
  color: var(--theme-color-2);
  transition: 0.3s ease-in-out;
}

.btn-theme-fourth {
  background-color: transparent;
  color: var(--theme-color-2);
  border: 1px solid var(--theme-color-2);
  border-radius: 0;
  text-transform: uppercase;
  font-weight: 600;
}

.btn-theme-fourth:hover {
  background-color: var(--theme-color-2);
  color: var(--theme-color-1);
  transition: 0.3s ease-in-out;
}

.btn-theme-quinary {
  background-color: var(--theme-color-2);
  color: var(--theme-color-1);
  border: 1px solid var(--theme-color-1);
  border-radius: 0;
  text-transform: uppercase;
  font-weight: 600;
}

.btn-theme-quinary:hover {
  background-color: var(--theme-color-1);
  color: var(--theme-color-2);
  transition: 0.3s ease-in-out;
}

.button-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.bg-dark-theme {
  background-color: var(--theme-color-1);
  color: var(--theme-color-2);
}

.bg-white-theme {
  background-color: var(--theme-color-2);
  color: var(--theme-color-1);
}

.bg-red-theme {
  background-color: var(--theme-color-3);
  color: var(--theme-color-2);
}

.bg-gray-theme {
  background-color: var(--theme-color-4);
  color: var(--theme-color-2);
}

.bg-half-theme {
  background-image: linear-gradient(
    to bottom,
    var(--theme-color-2) 0 75%,
    var(--theme-color-1) 75% 100%
  );
}

.text-theme-white {
  color: var(--theme-color-2);
}

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

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

.bg-red {
  background-color: var(--theme-color-3) !important;
  border: 1px solid var(--theme-color-3) !important;
  color: var(--theme-color-2) !important;
}
.bg-outline-red {
  background-color: var(--theme-color-2) !important;
  border: 1px solid var(--theme-color-3) !important;
  color: var(--theme-color-3) !important;
}
.selo {
  position: absolute;
  left: 3%;
  object-fit: cover;
  width: 170px;
}

#hidden-desktop {
  display: none;
}

#owl-banner .owl-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
#owl-1-columns .owl-item {
  background: transparent;
  border: 1px solid var(--theme-color-2);
  color: var(--theme-color-2);
  padding: 2rem;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#owl-1-columns .owl-item .items {
}
/* ==========================================================================
Header
========================================================================== */
.header {
  background-color: var(--theme-color-1);
  color: var(--theme-color-2);
  position: relative;
  z-index: 1000;
}

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

.header-menu {
  list-style: none;
  padding: 0;
}

.header-menu ul li {
  display: block;
  margin-right: 1rem;
  position: relative;
}

.header-menu ul li a {
  text-decoration: none;
  color: var(--theme-color-2);
  padding: 0.5rem 0.5rem;
  display: block;
  transition: all 0.3s ease-in-out;
}

.header-menu ul li a:hover {
  color: var(--theme-color-3);
  transition: 0.3s ease-in-out;
}

.header-menu ul li:last-child {
  margin-right: 0;
}

/* ==========================================================================
Dropdown Menu Styles
========================================================================== */
.header-menu .navbar-nav .nav-item {
  position: relative;
}

.header-menu .navbar-nav .dropdown-menu {
  background-color: var(--theme-color-1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 0;
  padding: 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
}

.header-menu .navbar-nav .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-menu .navbar-nav .dropdown-menu .dropdown-item {
  color: var(--theme-color-2);
  padding: 12px 20px;
  transition: all 0.3s ease-in-out;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.header-menu .navbar-nav .dropdown-menu .dropdown-item:last-child {
  border-bottom: none;
}

.header-menu .navbar-nav .dropdown-menu .dropdown-item:hover {
  background-color: var(--theme-color-3);
  color: var(--theme-color-1);
  padding-left: 25px;
}

.header-menu .navbar-nav .dropdown-toggle::after {
  content: "";
  font-family: "bootstrap-icons";
  border: none;
  margin-left: 5px;
  transition: transform 0.3s ease-in-out;
}

.header-menu .navbar-nav .dropdown-toggle::after,
.header-menu .navbar-nav .dropdown-toggle .bi {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.header-menu .navbar-nav .nav-item:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.header-menu .navbar-nav .dropdown-menu .dropdown-submenu {
  position: relative;
}

.header-menu .navbar-nav .dropdown-menu .dropdown-submenu .dropdown-menu {
  left: 100%;
  top: 0;
  margin-left: 1px;
}

.header-menu .navbar-nav .dropdown-submenu > a::after {
  content: "";
  font-family: "bootstrap-icons";
  float: right;
  margin-top: 2px;
}

.navbar-toggler .bi {
  color: var(--theme-color-2);
  font-size: 1.2rem;
}

@media (max-width: 991.98px) {
  .header-menu .navbar-nav .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin: 0;
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 10px;
  }

  .header-menu .navbar-nav .dropdown-menu .dropdown-item {
    padding-left: 30px;
  }

  .header-menu .navbar-nav .dropdown-menu .dropdown-item:hover {
    padding-left: 35px;
  }

  .header-menu .navbar-nav .dropdown-toggle::after {
    content: "";
    font-family: "bootstrap-icons";
    float: right;
  }

  .header-menu .navbar-nav .show .bi-chevron-down {
    transform: rotate(180deg);
  }
}

.header-menu .bi {
  font-size: 1rem;
  transition: transform 0.3s ease-in-out;
}

.header-menu .nav-item:hover .bi-chevron-down,
.header-menu .menu-item-has-children:hover .bi-chevron-down {
  transform: rotate(180deg);
}

.header-menu .dropdown-submenu .bi-chevron-right {
  float: right;
  margin-left: auto;
  margin-top: 2px;
}

.header-menu .menu-item-has-children > a::after {
  content: "\F22C";
  font-family: "bootstrap-icons";
  margin-left: 5px;
  transition: transform 0.3s ease-in-out;
  position: absolute;
  top: 8px;
  display: none;
}

.header-menu .menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}

.header-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--theme-color-1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
  z-index: 999;
  padding-left: 10px;
}

.header-menu .sub-menu a::after {
  font-family: "bootstrap-icons";
  margin-left: 0;
  position: absolute;
  content: "\F135";
  color: var(--theme-color-3);
  left: 0;
}

.header-menu .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-menu .sub-menu li {
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-menu .sub-menu li:last-child {
  border-bottom: none;
}

.header-menu .sub-menu a {
  padding: 12px 20px;
  transition: all 0.3s ease-in-out;
}

.header-menu .sub-menu a:hover {
  background-color: var(--theme-color-3);
  color: var(--theme-color-1);
  padding-left: 25px;
}

/* Mobile WordPress menu */
@media (max-width: 991.98px) {
  .header-menu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
    box-shadow: none;
    margin-top: 10px;
  }

  .header-menu .sub-menu a {
    padding-left: 30px;
  }

  .header-menu .sub-menu a:hover {
    padding-left: 35px;
  }
}

/* ==========================================================================
Mobile Menu Styles
========================================================================== */
.navbar-toggler {
  border: 1px solid var(--theme-color-2);
  background-color: transparent;
  padding: 0.5rem;
}

.navbar-toggler:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transition: 0.3s ease-in-out;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: none;
  width: auto;
  height: auto;
}

/* ==========================================================================
Video
========================================================================== */
.banner-video {
  width: 100%;
  height: 800px;
  position: relative;
  overflow: hidden;
}

.banner-video-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-video-inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.video-thumb {
  position: relative;
  display: inline-block;
}

.video-thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
  color: var(--theme-color-2);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  line-height: 100px;
  font-size: 3rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-button:hover {
  background: rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
  .banner-video-inner video {
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .banner-video-inner video {
    min-width: 100%;
    min-height: 100%;
  }
}

@media (min-width: 1920px) {
  .banner-video-inner video {
    max-width: 100%;
    max-height: 100vh;
  }
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   Representantes
========================================================================== */
.filtros .form-control,
.filtros .form-select {
  background-color: transparent;
  color: var(--theme-color-2);
  border-radius: 0;
  padding: 0.775rem 0.75rem;
}

.filtros .form-control::placeholder,
.filtros .form-select::placeholder {
  color: var(--theme-color-2);
}

.filtros .form-control:focus,
.filtros .form-select:focus {
  box-shadow: none;
  border: 1px solid var(--theme-color-1);
  transition: 0.3s ease-in-out;
}

.filtros select {
  background-color: transparent;
  color: var(--theme-color-2);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid var(--theme-color-2);
  border-radius: 0;
  padding: 0.775rem 0.75rem;
}

.filtros select:focus {
  box-shadow: none;
  border-color: var(--theme-color-2);
}

.filtros option {
  background-color: transparent;
  color: var(--theme-color-1);
}

.representante-card {
  border: 1px solid var(--theme-color-3);
  border-radius: 0;
}

.representante-card i {
  color: var(--theme-color-2);
  background-color: var(--theme-color-3);
  display: inline-flex;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}

/* ==========================================================================
Contato
========================================================================== */
.contato {
  background: url("../images/bg-contato.png") center/cover no-repeat;
}

.contato .card {
  border-radius: 0;
}

.contato .form-label {
  font-weight: 600;
}

.contato .form-control {
  background-color: transparent;
  color: var(--theme-color-1);
  border-radius: 0;
}

.contato .form-control:focus {
  box-shadow: none;
  border: 1px solid var(--theme-color-1);
  transition: 0.3s ease-in-out;
}

.contato .form-control::placeholder {
  color: var(--theme-color-4);
}

/* ==========================================================================
News
========================================================================== */
.news .form-control {
  background-color: transparent;
  color: var(--theme-color-2);
  border-radius: 0;
}

.news .form-control:focus {
  box-shadow: none;
  border: 1px solid var(--theme-color-1);
  transition: 0.3s ease-in-out;
}

.news .form-control::placeholder {
  color: var(--theme-color-2);
  font-weight: 600;
  text-transform: uppercase;
}

/* ==========================================================================
Produtos
========================================================================== */
.produtos .card {
  background-image: linear-gradient(
    to bottom,
    var(--theme-color-2) 0 60%,
    var(--theme-color-3) 60% 100%
  );
  border: 0;
  border-radius: 0;
}

.produtos .card img {
  height: 310px;
  object-fit: cover;
  position: relative;
}

.produtos .card img:hover {
  transform: translateY(-10px);
  transition: 0.3s ease-in-out;
}
.produtos .card .title {
  position: relative;
  bottom: 2rem;
}
.produtos-card-item {
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--theme-color-5);
}

.produtos-card-item:hover {
  transform: translateY(-10px);
  transition: 0.3s ease-in-out;
  border: 1px solid var(--theme-color-3);
}

.produtos-card-item img {
  height: 300px;
  object-fit: cover;
  position: relative;
}

.produto-imagem {
  position: relative;
  overflow: hidden;
}

.produto-galeria-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}

#produto-carousel {
  height: 400px;
  flex: 1;
}

#produto-carousel .owl-stage-outer,
#produto-carousel .owl-stage {
  height: 100%;
}

#produto-carousel .owl-item {
  height: 100%;
}

#produto-carousel .item {
  height: 100%;
  position: relative;
  border: 1px solid var(--theme-color-5);
}

#produto-carousel .item a {
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
}

#produto-carousel .item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.produto-thumbnails {
  display: flex;
  gap: 10px;
  padding: 5px 5px;
  justify-content: start;
  flex-wrap: wrap;
}

.thumb-item {
  width: 75px;
  height: 75px;
  border: 2px solid #ddd;
  cursor: pointer;
  overflow: hidden;
  border-radius: 0;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.thumb-item.active {
  border-color: var(--theme-color-1);
  opacity: 1;
  transform: scale(1.05);
}

.thumb-item:hover {
  border-color: var(--theme-color-2);
  opacity: 1;
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#produto-carousel .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  pointer-events: none;
}

#produto-carousel .owl-prev,
#produto-carousel .owl-next {
  position: absolute;
  top: 0;
  background: rgba(0, 0, 0, 0.7) !important;
  color: white !important;
  border: none !important;
  border-radius: 50% !important;
  width: 45px !important;
  height: 45px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 16px !important;
  cursor: pointer !important;
  pointer-events: auto;
  transition: all 0.3s ease !important;
  z-index: 10;
}

#produto-carousel .owl-prev {
  left: 15px;
}

#produto-carousel .owl-next {
  right: 15px;
}

#produto-carousel .owl-prev:hover,
#produto-carousel .owl-next:hover {
  background: var(--theme-color-3) !important;
  transform: scale(1.1) !important;
}

.produto-imagem-wrapper {
  position: relative;
  display: inline-block;
}

.zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  color: var(--theme-color-2);
  font-size: 16px;
  background-color: var(--theme-color-3);
  border-radius: 50%;
  padding: 12px 16px;
  pointer-events: none;
}

.produto-imagem-wrapper:hover .zoom-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.produto-imagem-wrapper:hover img {
  filter: brightness(80%);
  transition: filter 0.3s ease;
}

.produto-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 0;
}

.produto-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.produto-item .card-image img {
  height: 200px;
  object-fit: cover;
  position: relative;
}

.produto-item .card:hover {
  transform: translateY(-10px);
  transition: 0.3s ease-in-out;
  border: 1px solid var(--theme-color-3);
}

/* ==========================================================================
Blog
========================================================================== */
.blog-item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top;
}

.social-share-buttons .btn {
  padding: 0.5rem 1rem;
  border-radius: 0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
}

.btn-linkedin {
  background-color: #0077b5;
  color: white;
}

.btn-linkedin:hover {
  background-color: #005582;
  color: white;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25d366;
  color: white;
}

.btn-whatsapp:hover {
  background-color: #1da851;
  color: white;
  transform: translateY(-2px);
}

.btn-email {
  background-color: #dc3545;
  color: white;
}

.btn-email:hover {
  background-color: #c82333;
  color: white;
  transform: translateY(-2px);
}

.btn-twitter {
  background-color: #000000;
  color: white;
}

.btn-twitter:hover {
  background-color: #333333;
  color: white;
  transform: translateY(-2px);
}

.btn-facebook {
  background-color: #4267b2;
  color: white;
}

.btn-facebook:hover {
  background-color: #365899;
  color: white;
  transform: translateY(-2px);
}

.btn-copy-link {
  background-color: #6c757d;
  color: white;
}

.btn-copy-link:hover {
  background-color: #5a6268;
  color: white;
  transform: translateY(-2px);
}

.post-meta i {
  color: var(--theme-color-1);
}

.blog-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.tag-list .badge {
  font-size: 0.8rem;
}

.post-navigation .btn {
  min-width: 150px;
}

@media (max-width: 768px) {
  .social-share-buttons {
    flex-direction: column;
  }

  .social-share-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .post-navigation .col-md-6:last-child {
    text-align: left !important;
    margin-top: 1rem;
  }
}

.pagination .page-link {
  color: var(--theme-color-3);
  border-color: var(--theme-color-3);
  border-radius: 0;
  padding: 0.45rem 1rem;
  margin: 0 0.25rem;
  transition: all 0.3s ease;
}

.pagination .page-link:hover {
  background-color: var(--theme-color-1);
  border-color: var(--theme-color-1);
  color: var(--theme-color-2);
  transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
  background-color: var(--theme-color-3);
  border-color: var(--theme-color-3);
  color: var(--theme-color-2);
}

.pagination .page-item.disabled .page-link {
  opacity: 0.5;
  pointer-events: none;
}

@media (max-width: 768px) {
  .pagination .page-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
  }
}

/* ==========================================================================
Sidebar
========================================================================== */
/* ==========================================================================
Footer
========================================================================== */
.footer {
  background-color: var(--theme-color-1);
  color: var(--theme-color-2);
}

.footer .footer-menu ul {
  list-style: none;
  padding: 0;
}

.footer .footer-menu ul li {
  display: block;
  margin-bottom: 0.5rem;
  position: relative;
}

.footer .footer-menu ul li a {
  text-decoration: none;
  color: var(--theme-color-2);
  padding-left: 20px;
}

.footer .footer-menu ul li a:hover {
  color: var(--theme-color-3);
  transition: 0.3s ease-in-out;
  padding-right: 0.25rem;
}

.footer .footer-menu ul li a::after {
  font-family: "bootstrap-icons";
  margin-left: 0;
  position: absolute;
  content: "\F135";
  color: var(--theme-color-3);
  left: 0;
}

.footer .footer-social ul {
  list-style: none;
  padding: 0;
}

.footer .footer-social ul li {
  display: inline-block;
  margin-right: 0.5rem;
}

.footer .footer-social ul li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--theme-color-2);
  color: var(--theme-color-1);
  transition: 0.3s ease-in-out;
}

.footer .footer-social ul li a:hover {
  background-color: var(--theme-color-3);
  transition: 0.3s ease-in-out;
}

.footer-link {
  background-color: #25d366;
  color: var(--theme-color-2);
  border: 1px solid #25d366;
  width: 50px;
  height: 50px;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 999;
}

.footer-link:hover {
  background-color: var(--theme-color-3);
  color: var(--theme-color-2);
  transition: 0.3s ease-in-out;
}

/* ==========================================================================
Responsividade
========================================================================== */
@media (max-width: 992px) {
  #hidden-desktop {
    display: initial !important;
  }
  #hidden-mobile {
    display: none;
  }
  .bg-half-theme {
    background-image: linear-gradient(
      to bottom,
      var(--theme-color-2) 0 40%,
      var(--theme-color-3) 40% 100%
    );
  }
  .navbar-collapse {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
  }

  .navbar-nav {
    gap: 0;
  }

  .header-menu ul li {
    margin-bottom: 0.5rem;
    margin-right: 0;
  }

  .selo {
    display: none;
  }
  .button-group {
    display: inline-block;
  }
  .button-group a {
    margin-bottom: 0.5rem;
  }
  .produtos .card img {
    height: auto;
  }

  .footer .text-start,
  .footer .text-end {
    text-align: left !important;
  }
  .btn {
    font-size: 0.85rem;
  }
}

/* ==========================================================================
Hotspot
========================================================================== */
.image-wrapper {
  position: relative;
  display: inline-block;
  max-width: 100%;
}
.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}
.hotpoint {
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--theme-color-3);
  border: 3px solid var(--theme-color-3);
  cursor: pointer;
  z-index: 100;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
  }
}
.hotpoint:hover {
  transform: translate(-50%, -50%) scale(1.2);
  background: var(--theme-color-1);
  animation: none;
}
.hotpoint::before {
  content: attr(data-number);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--theme-color-2);
  font-size: 12px;
  font-weight: bold;
}
.hotpoint-tooltip {
  position: absolute;
  background-color: var(--theme-color-2);
  color: var(--theme-color-1);
  box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
  padding: 6px 10px;
  width: 200px;
  border-radius: 4px;
  font-size: 9px;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease;
  white-space: wrap;
  transform: translateY(10px);
}
.hotpoint-tooltip.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .hotpoint {
    width: 16px;
    height: 16px;
    font-size: 8px;
    width: 180px;
  }

  .hotpoint::before {
    font-size: 9px;
  }

  .hotpoint-tooltip {
    font-size: 12px;
    padding: 8px 12px;
  }
}
