/* ---------------------------------------------------------------------- */
/*	cores do projeto
/* ---------------------------------------------------------------------- */
:root {
  --redColor: #2366af !important;
  --whiteColor: #fff !important;
  --blackColor: #333 !important;
  --blueColor: #025095 !important;
  --yellowColor: #fff12c !important;
  --grayColor: #ddd !important;
  --greenColor: #198754 !important;
  --bgColor: var(--whiteColor) !important;
  --borderInputColor: #dee2e6;
  --borderRadius: 20px;
}

/* ---------------------------------------------------------------------- */
/*	wpp
/* ---------------------------------------------------------------------- */
.wpp {
  z-index: 999;
  position: fixed;
  top: 100px;
  right: 10px;
  padding: 10px 20px;
  background: var(--greenColor);
  color: var(--whiteColor);
  text-decoration: none;
  font-size: 15px;
  border-radius: var(--borderRadius);
}

.wpp:hover {
  color: var(--whiteColor);
}

.wpp img {
  height: 30px;
  filter: brightness(0) invert(1);
}

/* Definir o elemento que irá piscar */
.elemento-piscando {
  animation: piscar 1.5s infinite;
}

/* Definir a animação */
@keyframes piscar {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* ---------------------------------------------------------------------- */
/*	global
/* ---------------------------------------------------------------------- */
body {
  font-family: "Montserrat", sans-serif;
  color: var(--blackColor);
  font-size: 15px;
  font-weight: 400;
}

.btn,
button {
  font-size: 14px !important;
}

.btn-padrao,
.btn-padrao:hover {
  background: var(--blueColor) !important;
  color: var(--whiteColor) !important;
}

ul,
li,
h1,
a {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
}

a {
  color: var(--blackColor);
}

.no-registers {
  display: block !important;
  padding: 30px;
  text-align: center;
}

.span-carregando {
  display: block;
  margin: 0 auto;
  margin: 20px;
  text-align: center;
}

img {
  max-width: 100%;
}

/* ---------------------------------------------------------------------- */
/*	preloader
/* ---------------------------------------------------------------------- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bgColor, #f0f0f0);
  /* fallback */
  color: var(--fontColor, #000);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
}

#preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 6px solid #ccc;
  border-top: 6px solid #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 10px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---------------------------------------------------------------------- */
/*	pagination
/* ---------------------------------------------------------------------- */
.pagination {
  padding-top: 50px !important;
  padding-bottom: 20px;
  width: 100% !important;
  text-align: center !important;
}

.pagination .page-link {
  padding: 5px 10px;
  cursor: pointer;
  color: var(--fontColor) !important;
}

.pagination .page-link:hover,
.pagination .page-link.active {
  background-color: var(--fontColor) !important;
  color: var(--whiteColor) !important;
  border-color: var(--fontColor) !important;
}

.pagination .active > .page-link,
.pagination .page-link.active {
  background-color: var(--fontColor) !important;
  color: var(--whiteColor) !important;
  border-color: var(--fontColor) !important;
}

/* ---------------------------------------------------------------------- */
/*	fancybox
/* ---------------------------------------------------------------------- */
.fancybox__container {
  z-index: 99999 !important;
}

.fancybox__overlay {
  z-index: 99998 !important;
}

/* ---------------------------------------------------------------------- */
/*	desktop
/* ---------------------------------------------------------------------- */
@media (min-width: 991px) {
  /* ---------------------------------------------------------------------- */
  /*	global
    /* ---------------------------------------------------------------------- */
  .mobile {
    display: none !important;
  }

  /* ---------------------------------------------------------------------- */
  /*	header
    /* ---------------------------------------------------------------------- */
  header {
    padding: 20px 0;
  }

  header .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  header .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 40px;
    width: 32%;
  }

  header .logo img {
    height: 60px;
  }

  header .social-medias {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 18%;
  }

  header .social-medias a {
    color: var(--redColor);
    font-size: 20px;
    font-weight: 600;
  }

  header .opening-hours {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 600;
    color: var(--blueColor);
    width: 15%;
    display: none;
  }

  header .whatsApp {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: calc(20% - 10px);
  }

  header .whatsApp a,
  header .whatsApp span {
    font-weight: 600;
    color: var(--blueColor);
    text-decoration: none;
  }

  header .whatsApp a img {
    height: 25px;
  }

  header .google {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 15%;
  }

  header .google a {
    display: inline-block;
    padding: 5px 10px;
    background: var(--redColor);
    color: var(--whiteColor);
    font-size: 12px !important;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border-radius: var(--borderRadius);
  }

  /* ---------------------------------------------------------------------- */
  /*	top-banner
  /* ---------------------------------------------------------------------- */
  .top-banner .blue {
    margin: 5px 0;
    height: 10px;
    background: var(--blueColor);
  }
  .top-banner .black {
    height: 15px;
    background: var(--blackColor);
  }

  /* ---------------------------------------------------------------------- */
  /*	left-banner
 /* ---------------------------------------------------------------------- */
  .left-banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .left-banner .whatsApp {
    text-align: center;
  }

  .left-banner .whatsApp a {
    display: inline-block;
    margin: 20px 0;
    padding: 10px 25px;
    font-weight: 600;
    background: var(--greenColor);
    color: var(--whiteColor);
    text-decoration: none;
    font-size: 25px;
    border-radius: var(--borderRadius);
  }

  .left-banner .whatsApp a img {
    height: 30px;
    filter: brightness(0) invert(1);
  }

  /* ---------------------------------------------------------------------- */
  /*	controls
    /* ---------------------------------------------------------------------- */
  .controls {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
  }

  .controls .top {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .controls .top {
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    border-bottom: 2px solid var(--borderInputColor);
  }

  .controls .top a {
    color: var(--blueColor);
    cursor: pointer;
  }

  .controls .form {
    width: 100%;
  }

  .controls .form input {
    margin-bottom: 20px;
    padding-right: 35px;
    width: 100%;
    height: 50px;
    font-size: 16px;

    background: #efefef
      url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85zm-5.442.656a5 5 0 1 1 0-10 5 5 0 0 1 0 10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px 16px;
    border-radius: 0;
  }

  .controls .form select {
    margin-bottom: 20px;
    padding-right: 35px;
    width: 100%;
    height: 50px;
    font-size: 16px;

    background-color: #efefef;
    border-radius: 0;
  }

  .offers .list-estoque {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
  }

  .offers .list-estoque li {
    width: calc((100% - 45px) / 4);
  }

  .offers .list-estoque li .fence-data {
    border: 1px solid var(--grayColor);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background: var(--whiteColor);
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
  }

  .offers .list-estoque li .fence-data:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .offers .list-estoque li .fence-img {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 180px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px 8px 0 0;
  }

  .offers .list-estoque li .fence-img .mask {
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(transparent),
      to(rgba(0, 0, 0, 0.6))
    );
    background: -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    background: -o-linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    opacity: 1;
    border-radius: 8px 8px 0 0;
  }

  .offers .list-estoque li h2 {
    display: flex;
    align-items: center;
    margin-top: 10px;
    padding: 10px;
    font-size: 20px;
    min-height: 90px;
  }

  .offers .list-estoque li .a {
    display: block;
    padding: 10px;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    background: var(--greenColor);
    color: var(--whiteColor);
    border-radius: 0 0 8px 8px;
  }

  .offers .modal-content {
    padding: 20px;
  }

  .offers .modal-content .data-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 10px;
    background: var(--blueColor);
    color: var(--whiteColor);
  }

  .offers .modal-content .data-title h5 {
    flex: 1;
    margin: 0 !important;
    padding: 0 !important;
  }

  .offers .modal-content .data-title h4 {
    margin: 0 !important;
    padding: 0 !important;
    white-space: nowrap;
    font-weight: 600;
  }

  .offers .modal-content .text {
    font-size: 15px;
  }

  .offers .modal-content .text p {
    margin: 0;
    padding: 0;
  }

  .offers .modal-content .list-images {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }

  .offers .modal-content .list-images li {
    position: relative;
    padding: 10px;
    width: calc((100% - 15px) / 2);
    box-sizing: border-box;
    background: var(--whiteColor);
    border: 1px solid var(--borderInputColor);
    border-radius: var(--borderRadius);
  }

  .offers .modal-content .list-images li .image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--borderRadius);
  }

  .offers .modal-content .list-images li .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: var(--borderRadius);
  }

  .modal-content .btn-footer {
    margin-top: 20px;
    padding-top: 20px;
    text-align: right;
    border-top: 1px solid var(--blackColor);
  }

  /* ---------------------------------------------------------------------- */
  /*	info
  /* ---------------------------------------------------------------------- */
  .info {
    position: relative;
    padding-bottom: 50px;
  }

  .info .buy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }

  .info .buy div {
    padding: 20px;
    background: var(--blackColor);
    color: var(--whiteColor);
    width: calc(50% - 10px);
    min-height: 300px;
    border-radius: var(--borderRadius);
  }

  .info .buy div h1 {
    margin-bottom: 10px;
    font-size: 25px;
    font-weight: 600 !important;
  }

  .info .buy div h2 {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .info .buy div p {
  }

  .info .buy div a {
    font-size: 30px;
    font-weight: 600 !important;
    background: var(--blueColor);
    color: var(--whiteColor);
  }

  .w .whatsApp a {
    display: inline-block;
    margin: 50px 0 0 160px;
    padding: 10px 25px;
    font-weight: 600;
    background: var(--greenColor);
    color: var(--whiteColor);
    text-decoration: none;
    font-size: 25px;
    border-radius: var(--borderRadius);
  }

  .w .whatsApp a img {
    height: 30px;
    filter: brightness(0) invert(1);
  }

  /* ---------------------------------------------------------------------- */
  /*	about
    /* ---------------------------------------------------------------------- */
  .about {
    position: relative;
    margin-top: 120px;
    padding-left: 20px;
    border-left: 20px solid var(--redColor);
  }

  .about h1 {
    margin-bottom: 20px;
    font-size: 35px;
  }

  .fence-text-image {
    display: flex;
    gap: 20px;
  }

  .about .text {
    width: 60%;
  }

  .about .image {
    width: 35%;
  }

  .about .fence-image {
    position: relative;
    padding: 30px;
  }

  .about .fence-image::before {
    content: "";
    position: absolute;
    inset: 0;
    transform: rotate(-3deg);
    z-index: 0;
    border: 10px solid var(--blueColor);
    border-radius: var(--borderRadius);
  }

  .about .whatsApp {
    padding-right: 5%;
    text-align: right;
  }

  .about .whatsApp a {
    display: inline-block;
    margin: 20px 0 0 100px;
    padding: 10px 25px;
    font-weight: 600;
    background: var(--greenColor);
    color: var(--whiteColor);
    text-decoration: none;
    font-size: 15px;
    border-radius: var(--borderRadius);
  }

  .about .whatsApp a img {
    height: 30px;
    filter: brightness(0) invert(1);
  }

  /* ---------------------------------------------------------------------- */
  /*	footer
    /* ---------------------------------------------------------------------- */
  footer {
    margin-top: 50px;
    border-top: 10px solid var(--blueColor);
    background: var(--blackColor);
    color: var(--whiteColor);
  }

  footer .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
  }

  footer .logo {
    width: 50%;
  }

  footer .logo a {
    display: inline-block;
    margin: 20px 0 0 100px;
    padding: 10px 25px;
    font-weight: 600;
    background: var(--greenColor);
    color: var(--whiteColor);
    text-decoration: none;
    font-size: 15px;
    border-radius: var(--borderRadius);
  }

  footer .logo a img {
    height: 30px;
    filter: brightness(0) invert(1);
  }

  footer .footer .whatsApp {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 20%;
  }

  footer .footer .whatsApp a,
  footer .footer .whatsApp span {
    font-weight: 600;
    color: var(--whiteColor);
    text-decoration: none;
  }

  footer .footer .whatsApp a img {
    height: 25px;
    filter: brightness(0) invert(1);
  }

  footer .footer .whatsApp span {
    font-size: 12px;
  }

  footer .footer .social-medias {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 20%;
  }

  footer .footer .social-medias a {
    color: var(--whiteColor);
    font-size: 20px;
    font-weight: 600;
  }

  /* ---------------------------------------------------------------------- */
  /*	accessibility
    /* ---------------------------------------------------------------------- */
  .accessibility {
    display: none;
    z-index: 1000;
    position: fixed;
    right: 5px;
    top: 30%;
    padding: 10px 0;
    background: #444444;
    border-radius: 40px;
  }

  .accessibility a {
    z-index: 1 !important;
    display: block;
    margin-bottom: 10px;
    cursor: pointer;
  }

  /* ---------------------------------------------------------------------- */
  /*	libras
    /* ---------------------------------------------------------------------- */
  div[vw] {
    top: 34% !important;
    right: -4px !important;
  }

  [vw] [vw-plugin-wrapper].active {
    margin-top: 250px !important;
  }

  [vw] [vw-access-button] {
    opacity: 0;
    pointer-events: auto;
    position: absolute;
    z-index: 9999;
  }

  /* ---------------------------------------------------------------------- */
  /*	cookie consent
    /* ---------------------------------------------------------------------- */
  .cookie-banner {
    position: fixed;
    padding: 20px;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--redColor);
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
    z-index: 9999;
  }

  .cookie-banner p {
    margin: 0;
    padding-top: 10px;
    color: var(--whiteColor);
  }

  .cookie-banner p a {
    color: var(--whiteColor);
  }

  .cookie-banner div {
    text-align: right;
  }

  .cookie-banner div .btn {
    margin-left: 5px;
  }

  .cookie-settings {
    padding: 20px;
    position: fixed;
    bottom: 100px;
    left: 20px;
    z-index: 9999;
    background: var(--redColor);
    color: var(--whiteColor);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .cookie-settings h3 {
    font-size: 20px;
  }

  .cookie-settings .btn {
    margin-top: 20px;
  }

  .hide-cookie {
    display: none;
  }
}

/* ---------------------------------------------------------------------- */
/*	tablet
/* ---------------------------------------------------------------------- */
@media (min-width: 768px) and (max-width: 990px) {
  /* ---------------------------------------------------------------------- */
  /*	global
    /* ---------------------------------------------------------------------- */
  .desktop,
  .wpp {
    display: none !important;
  }

  /* ---------------------------------------------------------------------- */
  /*	header
    /* ---------------------------------------------------------------------- */
  header {
    padding: 20px 0;
  }

  header .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }

  header .logo img {
    height: 60px;
  }

  header .social-medias {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
  }

  header .social-medias a {
    color: var(--redColor);
    font-size: 20px;
    font-weight: 600;
  }

  header .opening-hours {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 600;
    color: var(--blueColor);
    display: none;
  }

  header .whatsApp {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }

  header .whatsApp a,
  header .whatsApp span {
    font-weight: 600;
    color: var(--blueColor);
    text-decoration: none;
  }

  header .whatsApp a img {
    height: 25px;
  }

  header .google {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  header .google a {
    display: inline-block;
    padding: 5px 10px;
    background: var(--redColor);
    color: var(--whiteColor);
    font-size: 12px !important;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border-radius: var(--borderRadius);
  }

  /* ---------------------------------------------------------------------- */
  /*	top-banner
  /* ---------------------------------------------------------------------- */
  .top-banner .blue {
    margin: 5px 0;
    height: 10px;
    background: var(--blueColor);
  }
  .top-banner .black {
    height: 15px;
    background: var(--blackColor);
  }

  /* ---------------------------------------------------------------------- */
  /*	left-banner
 /* ---------------------------------------------------------------------- */
  .left-banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .left-banner .whatsApp {
    text-align: center;
  }

  .left-banner .whatsApp a {
    display: inline-block;
    margin: 20px 0;
    padding: 10px 25px;
    font-weight: 600;
    background: var(--greenColor);
    color: var(--whiteColor);
    text-decoration: none;
    font-size: 25px;
    border-radius: var(--borderRadius);
  }

  .left-banner .whatsApp a img {
    height: 30px;
    filter: brightness(0) invert(1);
  }

  /* ---------------------------------------------------------------------- */
  /*	controls
    /* ---------------------------------------------------------------------- */
  .controls {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
  }

  .controls .top {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .controls .top {
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    border-bottom: 2px solid var(--borderInputColor);
  }

  .controls .top a {
    color: var(--blueColor);
    cursor: pointer;
  }

  .controls .form {
    width: 100%;
  }

  .controls .form input {
    margin-bottom: 20px;
    padding-right: 35px;
    width: 100%;
    height: 50px;
    font-size: 16px;

    background: #efefef
      url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85zm-5.442.656a5 5 0 1 1 0-10 5 5 0 0 1 0 10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px 16px;
    border-radius: 0;
  }

  .controls .form select {
    margin-bottom: 20px;
    padding-right: 35px;
    width: 100%;
    height: 50px;
    font-size: 16px;

    background-color: #efefef;
    border-radius: 0;
  }

  .offers .list-estoque {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
  }

  .offers .list-estoque li {
    margin-bottom: 20px;
    width: 100%;
  }

  .offers .list-estoque li .fence-data {
    border: 1px solid var(--grayColor);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background: var(--whiteColor);
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
  }

  .offers .list-estoque li .fence-data:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .offers .list-estoque li .fence-img {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 180px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px 8px 0 0;
  }

  .offers .list-estoque li .fence-img .mask {
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(transparent),
      to(rgba(0, 0, 0, 0.6))
    );
    background: -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    background: -o-linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    opacity: 1;
    border-radius: 8px 8px 0 0;
  }

  .offers .list-estoque li h2 {
    display: flex;
    align-items: center;
    margin-top: 10px;
    font-size: 20px;
    min-height: 90px;
  }

  .offers .list-estoque li .a {
    display: block;
    padding: 10px;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    background: var(--greenColor);
    color: var(--whiteColor);
    border-radius: 0 0 8px 8px;
  }

  .offers .modal-content {
    padding: 20px;
  }

  .offers .modal-content .data-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--blueColor);
    color: var(--whiteColor);
  }

  .offers .modal-content .data-title h5 {
    flex: 1;
    margin: 0 !important;
    padding: 0 !important;
  }

  .offers .modal-content .data-title h4 {
    margin: 0 !important;
    padding: 0 !important;
    white-space: nowrap;
    font-weight: 600;
  }

  .offers .modal-content .text {
    font-size: 15px;
  }

  .offers .modal-content .list-images {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }

  .offers .modal-content .list-images li {
    position: relative;
    padding: 10px;
    width: calc((100% - 15px) / 2);
    box-sizing: border-box;
    background: var(--whiteColor);
    border: 1px solid var(--borderInputColor);
    border-radius: var(--borderRadius);
  }

  .offers .modal-content .list-images li .image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--borderRadius);
  }

  .offers .modal-content .list-images li .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: var(--borderRadius);
  }

  .modal-content .btn-footer {
    margin-top: 20px;
    padding-top: 20px;
    text-align: right;
    border-top: 1px solid var(--blackColor);
  }

  /* ---------------------------------------------------------------------- */
  /*	info
  /* ---------------------------------------------------------------------- */
  .info {
    position: relative;
    padding-bottom: 50px;
  }

  .info .buy {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .info .buy div {
    margin-bottom: 20px;
    padding: 20px;
    background: var(--blackColor);
    color: var(--whiteColor);
    width: 100%;
    border-radius: var(--borderRadius);
  }

  .info .buy div h1 {
    margin-bottom: 10px;
    font-size: 25px;
    font-weight: 600 !important;
  }

  .info .buy div h2 {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .info .buy div a {
    font-size: 30px;
    font-weight: 600 !important;
    background: var(--blueColor);
    color: var(--whiteColor);
  }

  .w {
    text-align: center;
  }

  .w .whatsApp a {
    display: inline-block;
    margin: 20px 0;
    padding: 10px 25px;
    font-weight: 600;
    background: var(--greenColor);
    color: var(--whiteColor);
    text-decoration: none;
    font-size: 25px;
    border-radius: var(--borderRadius);
  }

  .w .whatsApp a img {
    height: 30px;
    filter: brightness(0) invert(1);
  }

  /* ---------------------------------------------------------------------- */
  /*	about
    /* ---------------------------------------------------------------------- */
  .about {
    position: relative;
    padding-left: 20px;
    border-left: 20px solid var(--redColor);
  }

  .about h1 {
    margin-bottom: 20px;
    font-size: 35px;
  }

  .fence-text-image {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .about .text {
    margin-bottom: 20px;
    width: 100%;
  }

  .about .image {
    width: 100%;
  }

  .about .fence-image {
    position: relative;
    padding: 30px;
  }

  .about .fence-image::before {
    content: "";
    position: absolute;
    inset: 0;
    transform: rotate(-3deg);
    z-index: 0;
    border: 10px solid var(--blueColor);
    border-radius: var(--borderRadius);
  }

  .about .whatsApp {
    text-align: center;
  }

  .about .whatsApp a {
    display: inline-block;
    margin: 50px 0 20px 0;
    padding: 10px 25px;
    font-weight: 600;
    background: var(--greenColor);
    color: var(--whiteColor);
    text-decoration: none;
    font-size: 15px;
    border-radius: var(--borderRadius);
  }

  .about .whatsApp a img {
    height: 30px;
    filter: brightness(0) invert(1);
  }

  /* ---------------------------------------------------------------------- */
  /*	footer
    /* ---------------------------------------------------------------------- */
  footer {
    margin-top: 50px;
    border-top: 10px solid var(--blueColor);
    background: var(--blackColor);
    color: var(--whiteColor);
  }

  footer .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
  }

  footer .logo {
    margin-bottom: 20px;
    width: 100%;
  }

  footer .logo a {
    display: inline-block;
    margin: 20px 0 0 100px;
    padding: 10px 25px;
    font-weight: 600;
    background: var(--greenColor);
    color: var(--whiteColor);
    text-decoration: none;
    font-size: 15px;
    border-radius: var(--borderRadius);
  }

  footer .logo a img {
    height: 30px;
    filter: brightness(0) invert(1);
  }

  footer .footer .whatsApp {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
  }

  footer .footer .whatsApp a,
  footer .footer .whatsApp span {
    font-weight: 600;
    color: var(--whiteColor);
    text-decoration: none;
  }

  footer .footer .whatsApp a img {
    height: 25px;
    filter: brightness(0) invert(1);
  }

  footer .footer .whatsApp span {
    font-size: 12px;
  }

  footer .footer .social-medias {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
  }

  footer .footer .social-medias a {
    color: var(--whiteColor);
    font-size: 20px;
    font-weight: 600;
  }

  /* ---------------------------------------------------------------------- */
  /*	accessibility
    /* ---------------------------------------------------------------------- */
  .accessibility {
    display: none;
    z-index: 1000;
    position: fixed;
    right: 5px;
    top: 30%;
    padding: 10px 0;
    background: #444444;
    border-radius: 40px;
  }

  .accessibility a {
    z-index: 1 !important;
    display: block;
    margin-bottom: 10px;
    cursor: pointer;
  }

  /* ---------------------------------------------------------------------- */
  /*	libras
    /* ---------------------------------------------------------------------- */
  div[vw] {
    top: 34% !important;
    right: -4px !important;
  }

  [vw] [vw-plugin-wrapper].active {
    margin-top: 250px !important;
  }

  [vw] [vw-access-button] {
    opacity: 0;
    pointer-events: auto;
    position: absolute;
    z-index: 9999;
  }

  /* ---------------------------------------------------------------------- */
  /*	cookie consent
    /* ---------------------------------------------------------------------- */
  .cookie-banner {
    position: fixed;
    padding: 20px;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--redColor);
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
    z-index: 9999;
  }

  .cookie-banner p {
    margin: 0;
    padding-top: 10px;
    color: var(--whiteColor);
  }

  .cookie-banner p a {
    color: var(--whiteColor);
  }

  .cookie-banner div {
    text-align: right;
  }

  .cookie-banner div .btn {
    margin-left: 5px;
  }

  .cookie-settings {
    padding: 20px;
    position: fixed;
    bottom: 100px;
    left: 20px;
    z-index: 9999;
    background: var(--redColor);
    color: var(--whiteColor);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .cookie-settings h3 {
    font-size: 20px;
  }

  .cookie-settings .btn {
    margin-top: 20px;
  }

  .hide-cookie {
    display: none;
  }
}

/* ---------------------------------------------------------------------- */
/*	mobile
/* ---------------------------------------------------------------------- */
@media (max-width: 767px) {
  /* ---------------------------------------------------------------------- */
  /*	global
    /* ---------------------------------------------------------------------- */
  .desktop,
  .wpp {
    display: none !important;
  }

  /* ---------------------------------------------------------------------- */
  /*	header
    /* ---------------------------------------------------------------------- */
  header {
    padding: 20px 0;
  }

  header .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }

  header .logo img {
    height: 60px;
  }

  header .social-medias {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
  }

  header .social-medias a {
    color: var(--redColor);
    font-size: 20px;
    font-weight: 600;
  }

  header .opening-hours {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 600;
    color: var(--blueColor);
    display: none;
  }

  header .whatsApp {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }

  header .whatsApp a,
  header .whatsApp span {
    font-weight: 600;
    color: var(--blueColor);
    text-decoration: none;
  }

  header .whatsApp a img {
    height: 25px;
  }

  header .google {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  header .google a {
    display: inline-block;
    padding: 5px 10px;
    background: var(--redColor);
    color: var(--whiteColor);
    font-size: 12px !important;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border-radius: var(--borderRadius);
  }

  /* ---------------------------------------------------------------------- */
  /*	top-banner
  /* ---------------------------------------------------------------------- */
  .top-banner .blue {
    margin: 5px 0;
    height: 10px;
    background: var(--blueColor);
  }
  .top-banner .black {
    height: 15px;
    background: var(--blackColor);
  }

  /* ---------------------------------------------------------------------- */
  /*	left-banner
 /* ---------------------------------------------------------------------- */
  .left-banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .left-banner .whatsApp {
    text-align: center;
  }

  .left-banner .whatsApp a {
    display: inline-block;
    margin: 20px 0;
    padding: 10px 25px;
    font-weight: 600;
    background: var(--greenColor);
    color: var(--whiteColor);
    text-decoration: none;
    font-size: 25px;
    border-radius: var(--borderRadius);
  }

  .left-banner .whatsApp a img {
    height: 30px;
    filter: brightness(0) invert(1);
  }

  /* ---------------------------------------------------------------------- */
  /*	controls
    /* ---------------------------------------------------------------------- */
  .controls {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
  }

  .controls .top {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .controls .top {
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    border-bottom: 2px solid var(--borderInputColor);
  }

  .controls .top a {
    color: var(--blueColor);
    cursor: pointer;
  }

  .controls .form {
    width: 100%;
  }

  .controls .form input {
    margin-bottom: 20px;
    padding-right: 35px;
    width: 100%;
    height: 50px;
    font-size: 16px;

    background: #efefef
      url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85zm-5.442.656a5 5 0 1 1 0-10 5 5 0 0 1 0 10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px 16px;
    border-radius: 0;
  }

  .controls .form select {
    margin-bottom: 20px;
    padding-right: 35px;
    width: 100%;
    height: 50px;
    font-size: 16px;

    background-color: #efefef;
    border-radius: 0;
  }

  .offers .list-estoque {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
  }

  .offers .list-estoque li {
    margin-bottom: 20px;
    width: 100%;
  }

  .offers .list-estoque li .fence-data {
    border: 1px solid var(--grayColor);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background: var(--whiteColor);
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
  }

  .offers .list-estoque li .fence-data:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .offers .list-estoque li .fence-img {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 180px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px 8px 0 0;
  }

  .offers .list-estoque li .fence-img .mask {
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(transparent),
      to(rgba(0, 0, 0, 0.6))
    );
    background: -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    background: -o-linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    opacity: 1;
    border-radius: 8px 8px 0 0;
  }

  .offers .list-estoque li h2 {
    display: flex;
    align-items: center;
    margin-top: 10px;
    font-size: 20px;
    min-height: 90px;
  }

  .offers .list-estoque li .a {
    display: block;
    padding: 10px;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    background: var(--greenColor);
    color: var(--whiteColor);
    border-radius: 0 0 8px 8px;
  }

  .offers .modal-content {
    padding: 20px;
  }

  .offers .modal-content .data-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--blueColor);
    color: var(--whiteColor);
  }

  .offers .modal-content .data-title h5 {
    flex: 1;
    margin: 0 !important;
    padding: 0 !important;
  }

  .offers .modal-content .data-title h4 {
    margin: 0 !important;
    padding: 0 !important;
    white-space: nowrap;
    font-weight: 600;
  }

  .offers .modal-content .text {
    font-size: 15px;
  }

  .offers .modal-content .list-images {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }

  .offers .modal-content .list-images li {
    position: relative;
    padding: 10px;
    width: calc((100% - 15px) / 2);
    box-sizing: border-box;
    background: var(--whiteColor);
    border: 1px solid var(--borderInputColor);
    border-radius: var(--borderRadius);
  }

  .offers .modal-content .list-images li .image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--borderRadius);
  }

  .offers .modal-content .list-images li .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: var(--borderRadius);
  }

  .modal-content .btn-footer {
    margin-top: 20px;
    padding-top: 20px;
    text-align: right;
    border-top: 1px solid var(--blackColor);
  }

  /* ---------------------------------------------------------------------- */
  /*	info
  /* ---------------------------------------------------------------------- */
  .info {
    position: relative;
    padding-bottom: 50px;
  }

  .info .buy {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .info .buy div {
    margin-bottom: 20px;
    padding: 20px;
    background: var(--blackColor);
    color: var(--whiteColor);
    width: 100%;
    border-radius: var(--borderRadius);
  }

  .info .buy div h1 {
    margin-bottom: 10px;
    font-size: 25px;
    font-weight: 600 !important;
  }

  .info .buy div h2 {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .info .buy div a {
    font-size: 30px;
    font-weight: 600 !important;
    background: var(--blueColor);
    color: var(--whiteColor);
  }

  .w {
    text-align: center;
  }

  .w .whatsApp a {
    display: inline-block;
    margin: 20px 0;
    padding: 10px 25px;
    font-weight: 600;
    background: var(--greenColor);
    color: var(--whiteColor);
    text-decoration: none;
    font-size: 25px;
    border-radius: var(--borderRadius);
  }

  .w .whatsApp a img {
    height: 30px;
    filter: brightness(0) invert(1);
  }

  /* ---------------------------------------------------------------------- */
  /*	about
    /* ---------------------------------------------------------------------- */
  .about {
    position: relative;
    padding-left: 20px;
    border-left: 20px solid var(--redColor);
  }

  .about h1 {
    margin-bottom: 20px;
    font-size: 35px;
  }

  .fence-text-image {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .about .text {
    margin-bottom: 20px;
    width: 100%;
  }

  .about .image {
    width: 100%;
  }

  .about .fence-image {
    position: relative;
    padding: 30px;
  }

  .about .fence-image::before {
    content: "";
    position: absolute;
    inset: 0;
    transform: rotate(-3deg);
    z-index: 0;
    border: 10px solid var(--blueColor);
    border-radius: var(--borderRadius);
  }

  .about .whatsApp {
    text-align: center;
  }

  .about .whatsApp a {
    display: inline-block;
    margin: 50px 0 20px 0;
    padding: 10px 25px;
    font-weight: 600;
    background: var(--greenColor);
    color: var(--whiteColor);
    text-decoration: none;
    font-size: 15px;
    border-radius: var(--borderRadius);
  }

  .about .whatsApp a img {
    height: 30px;
    filter: brightness(0) invert(1);
  }

  /* ---------------------------------------------------------------------- */
  /*	footer
    /* ---------------------------------------------------------------------- */
  footer {
    margin-top: 50px;
    border-top: 10px solid var(--blueColor);
    background: var(--blackColor);
    color: var(--whiteColor);
  }

  footer .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
  }

  footer .logo {
    margin-bottom: 20px;
    width: 100%;
  }

  footer .logo a {
    display: inline-block;
    margin: 20px 0 0 100px;
    padding: 10px 25px;
    font-weight: 600;
    background: var(--greenColor);
    color: var(--whiteColor);
    text-decoration: none;
    font-size: 15px;
    border-radius: var(--borderRadius);
  }

  footer .logo a img {
    height: 30px;
    filter: brightness(0) invert(1);
  }

  footer .footer .whatsApp {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
  }

  footer .footer .whatsApp a,
  footer .footer .whatsApp span {
    font-weight: 600;
    color: var(--whiteColor);
    text-decoration: none;
  }

  footer .footer .whatsApp a img {
    height: 25px;
    filter: brightness(0) invert(1);
  }

  footer .footer .whatsApp span {
    font-size: 12px;
  }

  footer .footer .social-medias {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
  }

  footer .footer .social-medias a {
    color: var(--whiteColor);
    font-size: 20px;
    font-weight: 600;
  }

  /* ---------------------------------------------------------------------- */
  /*	accessibility
    /* ---------------------------------------------------------------------- */
  .accessibility {
    display: none;
    z-index: 1000;
    position: fixed;
    right: 5px;
    top: 30%;
    padding: 10px 0;
    background: #444444;
    border-radius: 40px;
  }

  .accessibility a {
    z-index: 1 !important;
    display: block;
    margin-bottom: 10px;
    cursor: pointer;
  }

  /* ---------------------------------------------------------------------- */
  /*	libras
    /* ---------------------------------------------------------------------- */
  div[vw] {
    top: 34% !important;
    right: -4px !important;
  }

  [vw] [vw-plugin-wrapper].active {
    margin-top: 250px !important;
  }

  [vw] [vw-access-button] {
    opacity: 0;
    pointer-events: auto;
    position: absolute;
    z-index: 9999;
  }

  /* ---------------------------------------------------------------------- */
  /*	cookie consent
    /* ---------------------------------------------------------------------- */
  .cookie-banner {
    position: fixed;
    padding: 20px;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--redColor);
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
    z-index: 9999;
  }

  .cookie-banner p {
    margin: 0;
    padding-top: 10px;
    color: var(--whiteColor);
  }

  .cookie-banner p a {
    color: var(--whiteColor);
  }

  .cookie-banner div {
    text-align: right;
  }

  .cookie-banner div .btn {
    margin-left: 5px;
  }

  .cookie-settings {
    padding: 20px;
    position: fixed;
    bottom: 100px;
    left: 20px;
    z-index: 9999;
    background: var(--redColor);
    color: var(--whiteColor);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .cookie-settings h3 {
    font-size: 20px;
  }

  .cookie-settings .btn {
    margin-top: 20px;
  }

  .hide-cookie {
    display: none;
  }
}
