* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Cormorant Infant;
  list-style: none;
  text-decoration: none;
}

a,
button {
  cursor: pointer;
}

:root {
  --title: #9b7b34;
  --text: #707070;
  --white: #ffffff;
  --lightgray: #939393;
  --lightgray2: #b5b5b5;
  --lightgray3: #dbdbdb;
  --lightgray4: #9e9e9e;
  --lightgray5: #f5f5f7;
  --black: #000000;
  --darkgray: #484848;
  --darkgray2: #828282;
  --gray: #666666;
  --error: #110202;
}

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

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0;
  padding: 0;
}

button,
input,
input:hover,
a:hover,
a {
  transition: all 0.1s ease;
}

input[type="password"]::-ms-reveal,
input[type="password"]::-webkit-credentials-auto-fill-button,
input[type="password"]::-webkit-visible-password {
  display: none !important;
}

[type="text"],
[type="password"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="month"],
[type="week"],
[type="email"],
[type="number"],
[type="search"],
[type="tel"],
[type="time"],
[type="url"],
[type="color"],
textarea,
[type="text"]:focus,
[type="password"]:focus,
[type="date"]:focus,
[type="datetime"]:focus,
[type="datetime-local"]:focus,
[type="month"]:focus,
[type="week"]:focus,
[type="email"]:focus,
[type="number"]:focus,
[type="search"]:focus,
[type="tel"]:focus,
[type="time"]:focus,
[type="url"]:focus,
[type="color"]:focus,
textarea:focus {
  background-color: transparent;
  border: 0;
  box-shadow: none;
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--gray);
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--gray);
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--gray);
}

.form-error {
  display: block;
  min-height: 20px;
  font-size: 0.75rem;
  font-weight: bold;
  color: var(--error);
  clear: both;
}

.success-message {
  color: green;
  display: none;
  font-size: 17px;
}

.success-message.small {
  font-size: 12px;
}

.form-error-message {
  display: none;
  color: var(--error);
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.left {
  float: left;
}

.right {
  float: right;
}

.clear {
  clear: both;
}

.border {
  border: 1px solid red;
}

.center {
  text-align: center;
  display: flex;
  justify-content: center;
}

.pointer {
  cursor: pointer;
}

.none,
.order-billing-wrapper {
  display: none;
}

.newsletter-sbm-message {
  color: green;
  display: none;
  margin-top: 5px;
}

.display-flex {
  display: flex;
}

.display-flex-between {
  display: flex;
  justify-content: space-between;
}

label.error {
  color: red;
  font-weight: initial !important;
  font-size: 16px !important;
  margin-bottom: 0 !important;
  display: block;
}

.form-userreg-success-message {
  display: none;
  color: green;
}

.cart-error,
.form-error-message {
  display: none;
  color: red;
}

.cart-pini-wrapper {
  position: relative;
}

.cart-pini-itens {
  display: none;
  position: fixed;
  background: var(--white);
  padding: 20px;
  box-shadow: 0px 5px 6px 0px rgba(0, 38, 3, 0.08);
  right: 60px;
  width: 100%;
  max-width: 240px;
  top: 125px;
  z-index: 999;
}

.cart_pini_product {
  padding: 20px;
  position: relative;
}

.cart_pini_product button {
  position: absolute;
  right: 25px;
  top: 0;
}

.plk-cart-overflow {
  overflow-y: scroll;
  height: 40vh;
  scrollbar-width: none;
}

.plk-cart-overflow::-webkit-scrollbar {
  display: none;
  /* para Chrome, Safari, etc. */
}

.cart_pini_product_box {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.cart_pini_product_box img {
  max-width: 100% !important;
  margin: auto;
  width: auto !important;
}

.plk-cart-pini-inner-wrapper .contact-btn {
  height: auto;
  padding: 5px 10px;
  font-size: 18px;
  color: white !important;
  margin-top: 5px;
}

.offline-test {
  background: red;
  color: var(--white);
  height: 20px;
  text-align: center;
  display: block;
}

.page-popup {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
  z-index: 1001;
}

.page-popup.open {
  visibility: visible;
  opacity: 1;
  display: block;
}

.page-popup.open .page-popup-content {
  margin: 10% auto;
  padding: 5px;
  background: var(--white);
  border-radius: 5px;
  position: relative;
  transition: all 5s ease-in-out;
  max-width: 80%;
  width: fit-content;
}

.page-popup .close {
  position: absolute;
  top: -42px;
  right: -8px;
  transition: all 200ms;
  font-size: 38px;
  font-weight: bold;
  color: var(--lightgray);
  background: transparent;
  border: none;
}

a {
  color: none;
}

button,
input {
  background-color: inherit;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  outline: inherit;
}

input:focus {
  outline: none;
}

legend,
fieldset,
select,
textarea,
input,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

/* clears the ‘X’ from Internet Explorer */
input[type="search"]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type="search"]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

/* clears the ‘X’ from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

select {
  appearance: none;
  background-color: transparent;
  border: none;
  padding: 0 1em 0 0;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
  outline: none;
}

.body {
  margin-top: 125px;
}

.main-nav {
  width: 100%;
  height: 125px;
  display: flex;
  padding: 16px 62px;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  background: white;
  z-index: 9999;
}

.navbar_extra {
  display: flex;
  justify-content: center;
  flex-grow: 2;
}

.grow_div {
  display: flex;
  flex-grow: 2;
}

.navbar {
  display: flex;
  gap: 60px;
  list-style-type: none;
  padding: 0 30px 0 60px;
  flex: 1;
  align-items: center;
}

.navbar li a {
  color: var(--text);
  font-size: 23px;
  font-weight: 400;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.navbar li .active {
  font-weight: 600;
  color: var(--title);
}

.navbar li a:hover {
  color: var(--title);
}

.navbar_hr {
  display: none;
  margin: 0 15px 10px 15px;
  opacity: 25%;
}

.shop_img {
  position: relative;
}

.shop_circle {
  position: absolute;
  top: 0px;
  right: -9px;
  background-color: var(--title);
  color: var(--white);
  font-size: 0.8rem;
  min-width: 20.382px;
  min-height: 20.382px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-family: "Lato";
  padding: 2px;
  font-size: 13px;
}

.shop_circle a,
.shop_circle a:hover {
  color: var(--white);
  font-weight: 600;
  font-size: 13px;
  font-family: "Lato";
}

.login {
  color: var(--text);
  font-family: Cormorant Infant;
  font-size: 18px;
  font-weight: 400;
  white-space: nowrap;
}

.areacliente {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}

.areacliente img {
  max-width: 28px;
}

/*.searchdiv {
  display: flex;
  position: relative;
  margin-right: 15px;
  align-items: center;
  max-width: 232px;
  justify-content: end;
}*/

.searchdiv img,
.shop_img img {
  cursor: pointer;
}

.search {
  display: none;
  width: 100%;
  position: fixed;
  z-index: 9999;
  top: 125px;
}

.search .absolute {
  width: 100%;
  z-index: 9;
}

.search input {
  border-radius: 2px;
  border: 1px solid var(--lightgray2);
  border-width: 1px 0;
  background: rgba(109, 110, 113, 0.5);
  text-align: center;
  color: var(--white);
  font-family: Lato;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  min-width: 232px;
  width: 100%;
  height: 50px;
  padding: 0 5px;
  position: relative;
}

.search input::placeholder {
  display: flex;
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
  width: 100%;
  font-family: Lato;
}

.search input:focus {
  border: 1px solid var(--lightgray2);
  background: var(--lightgray4);
}

.search {
  transition: all 0.3s ease;
}

#searchIcon {
  transition: all 0.3s ease;
}

.search.active {
  display: block;
}

#searchIcon.active {
  display: none;
}

/* Banner */
.banner_section {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}

.banner1 {
  margin-left: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 3%;
  gap: 15px;
}

.banner_slider {
  display: flex;
  width: 60%;

  margin-right: -10px;
}

.banner_section .text1 {
  color: var(--title);
  font-size: 45px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
}

.banner_section .text2 {
  color: var(--text);
  font-size: 25px;
  font-weight: 700;
}

.banner-img {
  display: flex;
  margin-left: 1%;
}

.banner-img img {
  max-width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
}

/* end Banner */
.grid-container {
  /*max-width: 1505px;*/
  max-width: 1565px;
  width: 100%;
  margin: auto;
  padding: 0 30px;
}

.section_product {
  display: flex;
  flex-direction: column;
  margin-top: 80px;
  margin-bottom: 80px;
  max-width: 1635px;
}

.section_product .text {
  display: flex;
  justify-content: end;
  padding-right: 50px;
}

.section_product .text p {
  color: var(--text);
  font-size: 34px;
  font-weight: 700;
}

.section_product .text span {
  color: var(--title);
  font-size: 24px;
  font-weight: 500;
  border-bottom: 1px solid var(--title);
  display: inline-block;
  cursor: pointer;
  text-wrap: nowrap;
}

.section_product .text span a {
  color: var(--title);
}

.text-content {
  text-align: end;
  position: relative;
  margin-bottom: 50px;
}

.product_box {
  width: 100%;
  border: 1px solid var(--lightgray3);
  padding: 10px 0;
}

.product-text-container {
  display: flex;
  flex-direction: column;
  margin-top: 5px;
}

.product_box img {
  margin: auto;
  max-width: 100%;
  height: auto;
}

/*.product_box img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
}*/

.product h1 {
  color: var(--title);
  font-size: 19px !important;
  font-weight: 700;
  line-height: 30px;
}

.product p {
  color: var(--text);
  font-family: Lato;
  font-size: 15px;
  font-weight: 600;
}

.product .price {
  margin-top: 5px;
}

.product .price * {
  color: var(--darkgray);
  font-family: Lato;
  font-size: 20px;
  font-weight: 600;
}

.product {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  cursor: pointer;
}

#search_cross {
  position: absolute;
  right: 0;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.mobile-hamburger,
#leftarrow-menu {
  display: none;
}

.hide-web {
  display: none;
}

.hr1 {
  background-color: var(--lightgray3);
  opacity: 15%;
}

.section_product .custom-prev-arrow,
.section_product .custom-next-arrow {
  cursor: pointer;
  position: absolute;
  top: 38%;
  text-align: center;
  line-height: 50px;
  font-size: 18px;
  color: var(--white);
}

.section_product .custom-prev-arrow {
  left: -80px;
}

.section_product .custom-next-arrow {
  right: -80px;
}

.section_product .slick-container {
  position: relative !important;
}

.section_product .search.relative {
  transition: all 0.8s ease;
}

* .active {
  display: block;
}

.section_product .slick-prev:before {
  content: url(/i/arrowleft-prod.svg);
}

.section_product .slick-next:before {
  content: url(/i/arrowright-prod.svg);
}

.section_product .slick-initialized .slick-slide {
  margin: 0px 10px;
}

.section_product .product_list {
  padding: 0 40px;
}

.section_product .product_list .slick-dots {
  margin-left: -40px;
}

.section_product .product_list .slick-next {
  right: 20px;
}

.section_product .product_list .slick-prev {
  left: 0;
}

.section_rotulo {
  width: 100%;
  height: 500px;
  background-color: var(--gray);
  margin-top: 60px;
  position: relative;
}

.img-overlay-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.section_rotulo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
}

.rotulo_div {
  display: flex;
  height: 100%;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.rotulo-text {
  color: var(--white);
  width: 50%;
  font-size: 22px;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.rotulo_button {
  height: 40px;
  border: 1px solid var(--white);
  padding: 0 16px;
  font-size: 22px;
  font-weight: 700;
  margin-right: auto;
  color: white;
}

.rotulo_button:hover {
  background-color: var(--white);
  color: var(--black);
}

.rotulo_div h2 {
  font-family: Lato;
  font-size: 40px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: white;
  margin-bottom: 40px;
}

.rotulo_div .grid-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section_categories {
  margin-top: 80px;
  margin-bottom: 80px;
}

.title-home {
  color: var(--text);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: right;
}

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

.lista_category > div:last-child {
  display: none;
}

.lista_category p {
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  padding-top: 20px;
}

.lista_category .category {
  margin: auto;
}

.text_box {
  font-size: 22px;
  color: var(--text);
  font-weight: 500;
  margin-top: 100px;
  text-align: justify;
}

.category .text_box {
  width: 100%;
  color: var(--text);
  font-size: 25px;
  margin-bottom: 72px;
}

.servicos_div {
  width: 100%;
  display: flex;
  margin-top: 72px;
  align-items: center;
}

.servicos_list {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 50px;
}

.servico {
  display: flex;
  align-items: center;
  gap: 25px;
}

.servico img {
  max-width: 69.3px;
  width: 100%;
}

.servico .text {
  display: flex;
  flex-direction: column;
  color: var(--text);
  width: 100%;
  height: 100%;
}

.servico .text p {
  font-size: 22px;
  font-weight: 700;
}

.servico .text span {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0;
  text-align: initial;
}

.servico_img {
  width: 100%;
  display: flex;
  justify-content: end;
}

.servicos_div .servico_img img {
  width: 100%;
  object-fit: cover;
  height: auto;
  max-width: 600px;
}

.news_section {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  margin-bottom: 40px;
}

.news_section .text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}

.news_section .text p {
  color: var(--text);
  font-size: 34px;
  font-weight: 700;
}

.news_section .text span {
  color: var(--title);
  font-size: 24px;
  font-weight: 500;
  border-bottom: 1px solid var(--title);
  display: inline-block;
  cursor: pointer;
  text-wrap: nowrap;
}

.news_section .news_img img {
  /*width: 100%;*/
  height: auto;
  /*max-width: 486px;*/
  max-width: 100%;
}

.news_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.news_text_container span {
  color: var(--title);
  font-weight: 500;
  font-size: 16px;
  text-transform: capitalize;
}

.news_text_container h1 {
  font-family: Lato;
  color: var(--text) !important;
  font-size: 24px !important;
  font-weight: 600 !important;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news_section .news_text_container h1:hover {
  color: var(--title) !important;
}

.news_text_container .text_container {
  color: var(--text);
  font-size: 17px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 25px;
}

.news_text_container button {
  border: 1px solid var(--lightgray2);
  padding: 0 1rem;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  margin-top: 15px;
  align-self: flex-start;
  min-height: 32px;
}

.news_text_container button:hover {
  background-color: var(--lightgray4);
  color: var(--white);
}

.news_text_container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

/* Efeito hover na imagem */

.news_record {
  position: relative;
  overflow: hidden;
}

.news_page .news_record {
  margin-bottom: 60px;
}

.news_img {
  position: relative;
  cursor: pointer;
}

.news_page_div1 .news_img img {
  /*width: 100%;*/
  height: auto;
  max-width: 100%;
  /*max-width: 1060px;*/
}

/*
.news_list .news_img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #9B7B34; 
  filter: brightness(0.5); 
  opacity: 0;
  transition: opacity 0.3s, filter 0.3s;
  z-index: 1; 
}

.news_list .news_img:hover::before {
  opacity: 0.5;
  filter: brightness(1); 
}
*/

.news_list .news_img img {
  transition: filter 0.3s;
}

.news_text_container {
  position: relative;
  z-index: 2;
  /* Colocado acima do pseudo-elemento ::before */
}

/*end effect*/

.newsletter_div {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 120px;
  margin-bottom: 40px;
}

.newsletter_form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.newsletter_rgpd .rgpd span,
.newsletter_rgpd .rgpd span * {
  color: var(--text);
}

.newsletter_rgpd .rgpd span {
  font-size: 16px;
}

.newsletter_rgpd .plk-rgpd-checkbox {
  display: none;
}

.newsletter_div .text_container h1 {
  color: var(--text);
  font-size: 42px;
  font-weight: 700;
}

.newsletter_div .text_container p {
  color: var(--title);
  font-size: 20px;
  font-weight: 400;
}

.newsletter_div .text_container {
  margin-bottom: 10px;
  text-align: center;
}

.subscription_email {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 10px auto;
  height: 64px;
}

.subscription_email input {
  border: 1px solid var(--lightgray3);
  height: 64px;
  padding-left: 1rem;
  font-size: 22px;
  color: var(--text);
  font-weight: 400;
  width: 100%;
  padding-right: 188px;
}

.subscription_email input::placeholder {
  color: var(--lightgray2);
}

.subscription_email input:focus {
  border: 1px solid var(--lightgray3);
}

.subscription {
  position: absolute;
  right: 0;
  top: 0;
  color: var(--title);
  font-size: 22px;
  font-weight: 400;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.5rem 2.5rem;
  border-left: 1px solid var(--lightgray3);
}

.footer {
  display: flex;
  padding: 50px 30px !important;
  justify-content: space-between;
}

.footer .info {
  display: flex;
  flex-direction: column;
  color: var(--text);
  font-size: 20px;
  font-weight: 500;
  gap: 25px;
  max-width: 450px;
}

.footer > div {
  justify-self: center;
}

.footer .info_m {
  display: flex;
  gap: 15px;
  align-items: baseline;
}

.footer .info_m li:not(:last-child)::after {
  content: " - ";
  font-weight: 600;
  font-family: "Lato";
  margin-left: 10px;
}

.footer .info_m a {
  font-weight: 600;
  text-transform: uppercase;
}

.footer .icons {
  display: flex;
  gap: 15px;
}

.footer .icons img {
  cursor: pointer;
}

.footer_menu {
  display: flex;
  flex-direction: column;
  color: var(--text);
  font-size: 20px;
  font-weight: 500;
  gap: 30px;
}

.footer_menu span {
  text-transform: uppercase;
}

.footer_menu_ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info_2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.box_header {
  display: flex;
  gap: 5px;
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.info_2 .box span {
  color: var(--text);
  font-size: 20px;
  font-weight: 500;
}

.info_2 .box a {
  color: var(--text);
  font-size: 20px;
  font-weight: 500;
}

.copyright p {
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.contactos-page h1 {
  color: var(--title);
  font-size: 40px;
  font-weight: 700;
}

.contactos-page {
  padding-top: 70px;
  max-width: 1920px;
  width: 80%;
  margin: auto;
}

.contactos-flex {
  display: flex;
  gap: 8rem;
  padding: 70px 0;
}

.location-section {
  max-width: 350px;
}

.contact_div img {
  max-width: 22px;
  height: auto;
}

.contact_div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
}

.contact_div span {
  padding-left: 35px;
}

.contact_div_header {
  display: flex;
  gap: 15px;
  font-size: 22px;
  font-weight: 600;
}

.contact-section {
  display: flex;
  flex: 1;
}

.contact-section .form_contact {
  width: 100%;
}

.form_contact_div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-bottom: 20px;
}

.form_contact_div label {
  font-size: 22px;
  font-weight: 600;
}

.form_contact_div input {
  height: 50px;
  padding-left: 1rem;
  display: flex;
  align-items: center;
  font-size: 18px;
  padding-right: 1rem;
  color: black;
  border: 1px solid var(--lightgray3);
  width: 100%;
  border-radius: 2px;
}

.form_contact_div input:focus {
  border: 1px solid var(--lightgray3);
}

.form_contact_div input::placeholder {
  color: var(--lightgray);
}

.form_contact_div textarea {
  border: 1px solid var(--lightgray3);
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  font-size: 18px;
  height: 120px;
  border-radius: 2px;
  overflow: auto;
  resize: none;
  width: 100%;
}

.form_contact_div textarea::placeholder {
  color: var(--lightgray);
}

.contact-btn {
  background: black;
  color: var(--white);
  height: 50px;
  font-size: 20px;
  font-weight: 700;
  max-width: 325px;
  text-align: center;
  justify-content: center;
  width: 100%;
  margin-left: auto;
  display: flex;
  align-items: center;
  border-radius: 2px;
  padding: 0 10px;
}

.product_page .contact-btn:hover {
  background: rgb(0, 0, 0, 0.8);
}

.rgpd {
  border: none;
  padding: 0;
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.rgpd .checkbox-simple {
  padding: 0;
}

.rgpd label {
  display: flex;
  align-items: center;
  gap: 5px;
}

.rgpd span a {
  font-weight: 600;
  color: black;
}

.rgpd span {
  font-size: 18px;
}

.product_list .slick-prev,
.product_list .slick-next {
  top: 40%;
}

a:hover,
.copyright a {
  color: var(--title);
}

.login_div {
  width: 100%;
  max-width: 450px;
  margin-bottom: 40px;
}

.tablinks {
  text-transform: uppercase;
  margin: 0 20px;
  color: var(--darkgray);
  border-bottom: 2px solid transparent;
}

.tab {
  font-size: 40px;
  font-weight: 400;
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
  color: var(--title);
}

.tablinks.actived {
  border-bottom: 2px solid var(--title);
  color: var(--title);
}

.form_div {
  position: relative;
}

.error-container {
  min-height: 25px;
}

.pass_recovery_div {
  justify-content: center;
  display: flex;
  font-size: 20px;
  text-align: center;
}

.form_div img {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}

.form_div .eye-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  left: auto;
  transform: translateY(-50%);
  cursor: pointer;
}

.form_div input {
  background-color: var(--lightgray5);
  border: 1px solid var(--lightgray3);
  font-size: 16px;
  padding: 0.5rem 2.5rem;
  width: 100%;
  height: 36px;
  border-radius: 3px;
}

.form_div input:focus {
  color: var(--black);
  background-color: var(--lightgray5);
  border: 1px solid var(--lightgray3);
}

.login_form {
  width: 100%;
}

.login_form .contact-btn {
  max-width: 100%;
  font-weight: 600;
}

.checkbox-simple2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
}

.label-simple-wp {
  display: flex;
  align-items: center;
  gap: 10px;
}

.label-simple-wp span {
  color: black;
  font-size: 18px;
}

.checkbox-simple2 {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 1px solid black;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  min-width: 18px;
  min-height: 18px;
}

/* Estilo quando o checkbox está marcado */
.checkbox-simple2 input[type="checkbox"]:checked {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 5px;
  height: 10px;
  border: solid black;
  border-width: 0 2px 2px 0;
}

/* Ocultar a checkbox padrão */

.form-link {
  color: var(--black);
  font-size: 18px;
}

.contact-btn.btn2 {
  color: black;
  background-color: white;
  border: 1px solid black;
  max-width: 100%;
}

.contact-btn.btn3 {
  border: 1px solid var(--lightgray4);
  background-color: white;
  color: var(--darkgray2);
  max-width: 100%;
}

.google_icon {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  cursor: pointer;
}

.newsletter-checkbox {
  appearance: auto;
  height: 20px;
  width: 20px;
}

.reg_newsletter_checkbox {
  display: flex;
  gap: 10px;
  color: var(--darkgray2);
  font-size: 18px;
  align-items: center;
}

.reg_newsletter_checkbox span {
  color: black;
  font-size: 18px;
}

.info_div .text h2,
.info_values h2 {
  text-align: center;
  color: var(--title);
  margin-bottom: 20px;
  width: 100%;
}

.info_div {
  display: flex;
  align-items: center;
  gap: 5%;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.info_page {
  margin-top: 20px;
}

.info_div .text {
  font-size: 25px;
  flex: 1;

  box-sizing: border-box;
}

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

.info_values {
  margin-top: 120px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.text_div span {
  font-size: 25px;
  font-weight: 500;
  text-transform: uppercase;
}

.text_div p {
  font-size: 18px;
}

.info_values .text {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.text_div {
  width: 100%;
  margin-bottom: 20px;
  box-sizing: border-box;
  text-align: center;
}

.text_div:nth-child(n + 5) {
  grid-column: span 4;
}

.news_page_div1 {
  width: 74%;
}

.news_page_div2 {
  width: 26%;
}

.news_page {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
}

.news_page_div1-50 {
  margin-right: 50px;
}

.news_page_div1 .slick-dotted.slick-slider {
  margin-bottom: 50px;
}

.news_page_div1 .slick-dots {
  bottom: -35px;
}

.news_page_div1 .div_image img {
  width: 100%;
  height: auto;
  max-width: 1060px;
}

.news_search {
  position: relative;
  margin-top: 20px;
}

.news_search input {
  border-radius: 2px;
  border: 1px solid #9f9f9f;
  height: 58px;
  width: 100%;
  padding-left: 1rem;
  font-size: 18px;
  padding-right: 2rem;
}

.news_search input:focus {
  border: 1px solid #9f9f9f;
}

.news_page_div2 h2 {
  font-size: 25px;
  font-weight: 500;
}

.news_cat {
  display: flex;
  flex-direction: column;
  padding-top: 30px;
  gap: 30px;
  padding-bottom: 60px;
}

.news_cat li a {
  color: #9f9f9f;
  display: flex;
  justify-content: space-between;
  font-family: "Lato";
  font-weight: 500;
  font-size: 19px;
}

.news_posts {
  display: flex;
  flex-direction: column;
  padding-top: 30px;
  gap: 30px;
}

.div_post {
  display: flex;
  gap: 20px;
  align-items: center;
}

.div_post .div_image {
  max-width: 140px;
  max-height: 80px;
  width: 100%;
}

.div_post .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 5px 0;
  gap: 5px;
}

.div_post .text p {
  font-size: 18px;
  font-weight: 600;
  color: black;
}

.div_post .text span {
  color: #9f9f9f;
  font-family: Lato;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
}

.div_post .news_img img {
  max-width: 100%;
  height: auto;
}

.search_img #closeimg {
  display: none;
}

.search_img {
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.products_page {
  padding: 40px 0;
  display: flex;
  gap: 30px;
}

/*Carrinho Page */

.cart_page2 {
  font-size: 18px;
}

.carrinho_page {
  display: flex;
  flex-direction: column;
}

.cart_page {
  padding-top: 40px;
  display: flex;
  gap: 8%;
  margin-bottom: 80px;
}

.box_c_product {
  position: relative;
}

.c_product {
  gap: 40px;
  display: grid;
  grid-template-columns: 3fr 1fr 1fr;
}

.c_product_box {
  display: flex;
  gap: 10px;
}

.image-container {
  max-height: 100px;
  overflow: hidden;
  position: relative;
  max-width: 100px;
  margin: auto;
  flex-shrink: 0;
}

.image-container img {
  width: 100%;
  height: auto;
}

.price {
  font-size: 19px;
  font-weight: 700;
  min-width: 80px;
}

.cart_list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 60%;
}

.cart_page h4,
.cart_page h4 a {
  color: var(--darkgray);
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 5px;
}

.counter {
  display: flex;
  align-items: center;
  background-color: #f0f0f0;
  padding: 12px 0px;
  justify-content: center;
  max-width: 120px;
  width: 100%;
  cursor: pointer;
  gap: 10px;
  justify-content: space-around;
  height: 50px;
}

.order_summary .counter {
  height: 40px;
  width: 40px;
  margin: auto;
}

.order_summary .cart_page .price {
  justify-content: center;
}

.counter button {
  font-family: "Lato";
  font-size: 24px;
}

.cart_page .price {
  flex-direction: column;
  display: flex;
  align-items: end;
  justify-content: end;
  margin-left: auto;
  height: 100%;
}

.cart_page .price strike {
  text-decoration: line-through;
  font-size: 14px;
}

.cart_page .counter {
  max-height: 42px;
  margin-top: 45px;
}

.counter input {
  border: none;
  background-color: transparent;
  display: flex;
  font-family: "Lato";
  font-size: 18px;
  color: black;
  text-align: center;
  width: 32px;
  align-items: center;
  min-width: 10px;
  font-weight: 600;
  cursor: pointer;
}

.counter_div {
  display: flex;
  width: 100px;
  max-width: 100px;
  padding: 0 5px;
  justify-content: space-between;
}

.counter input[type="number"]::-webkit-inner-spin-button,
.counter input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Para o Mozilla Firefox */
.counter input[type="number"] {
  -moz-appearance: textfield;
}

.c_product_detail {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  color: #707070;

  font-style: normal;
  min-width: 150px;
}

.c_product_detail * {
  font-size: 18px;
  font-weight: 500;
}

.c_product_detail p span {
  color: rgba(0, 0, 0, 0.6);
  font-family: inherit;
}

.detail_extra .details span {
  color: var(--darkgray);
  font-size: 16px;
  font-weight: 700;
}

.detail_extra {
  display: flex;
  gap: 5px;
  margin-top: 10px;
  flex-direction: column;
  margin-left: 100px;
}

.detail_extra .details {
  display: flex;
  align-items: center;
  gap: 5px;
}

.details img {
  transition: transform 0.3s ease;
}

.details-active img {
  transform: rotate(180deg);
}

.cart_end {
  width: 40%;
}

.cart_end h5 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 20px;
}

.cart_values_box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: rgba(0, 0, 0, 0.6);
  font-family: Lato;
  font-size: 20px;
  font-weight: 400;
}

.cartline {
  display: flex;
  justify-content: space-between;
}

.cartline span:last-of-type {
  color: black;
}

.cart_values_total {
  font-weight: 400;
  font-family: Lato;
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.cart_values_total span:first-of-type {
  font-size: 20px;
}

.cart_values_total span:last-of-type {
  font-size: 22px;
}

.code_promo {
  display: flex;
  gap: 10px;
  position: relative;
}

.code_promo input {
  border: 1px solid #d9d9d9;
  background: rgba(217, 217, 217, 0.5);
  text-align: center;
  width: 100%;
  padding: 0 1rem;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  padding: 0 2rem;
  cursor: pointer;
}

.code_promo input::placeholder {
  color: #9f9f9f;
}

.code_promo input:focus {
  border: 1px solid #d9d9d9;
  background: rgba(217, 217, 217, 0.5);
}

.code_promoicon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.priceandclear {
  display: flex;
  margin-top: 44px;
  max-height: 44px;
  align-items: center;
}

.priceandclear .clearicon {
  position: absolute;
  top: 5px;
  right: 5px;
}

/* operação finalizada div */

.cart_operationend {
  width: 100%;
  max-width: 600px;
  margin: auto;
  padding-top: 60px;
  text-align: center;
}

.cart_operationend h1 {
  font-size: 40px;
  color: black;
  font-weight: 700;
  margin-bottom: 10px;
}

.cart_operationend img {
  width: 100%;
  margin-bottom: 20px;
}

.cart_operationend p {
  margin-bottom: 20px;
}

.order_end_cart {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  margin-bottom: 60px;
}

.order_end_cart .btnoperation {
  border-radius: 2px;
  border: 1px solid #6c5c38;
  color: #6c5c38;
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
  padding: 5px 20px;
}

/* Carrinho de Compras página - Barra de Progresso - Encomenda */

.form-steps {
  justify-content: center;
  display: flex;
  width: 100%;
  position: relative;
  margin: 60px 0;
}

.form-steps:after {
  content: "";
  display: table;
  clear: both;
}

.form-steps__item {
  padding: 0;
  position: relative;
  display: block;
  float: left;
  width: 100%;
  text-align: center;
}

.form-steps__item-content {
  display: inline-block;
}

/* Step Icon */
.form-steps__item-icon {
  background: white;
  color: #7a6b48;
  display: flex;
  border-radius: 100%;
  text-align: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 15px auto;
  position: relative;
  font-weight: 700;
  z-index: 2;
  border: 1px dashed #9b7b34;
  justify-content: center;
  align-items: center;
  font-family: Lato;
  font-size: 14px;
}

/* Step text */
.form-steps__item-text {
  font-family: Lato;
  font-size: 16px;
  color: black;
  font-weight: 500;
}

.form-steps__item-line {
  display: inline-block;
  height: 10px;
  width: 100%;
  background: rgba(217, 217, 217, 0.5);
  float: left;
  position: absolute;
  left: -50%;
  top: 15px;
  z-index: 1;
}

/* Active Step */
.form-steps__item--active .form-steps__item-icon {
  background-color: #9b7b34;
  color: #ffffff;
}

.form-steps__item--active .form-steps__item-text {
  /*color: #4f5e77; */
}

.form-steps__item--active .form-steps__item-line {
  background: #9b7b34;
}

/* Completed Step */
.form-steps__item--completed .form-steps__item-text {
  color: black;
}

.form-steps__item--completed .form-steps__item-icon {
  background: #9b7b34;
  background-image: url(data:image/svg+xml;base64,PHN2ZyBkYXRhLW5hbWU9IkxheWVyIDEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDkuMTIgNyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTkuMTIgMS4wNkw4LjA2IDAgMy4xOCA0Ljg4IDEuMDYgMi43NiAwIDMuODIgMy4xOCA3bDUuOTQtNS45NHoiLz48L3N2Zz4=);
  color: transparent;
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 40px;
  height: 40px;
  line-height: 25px;
}

.form-steps__item--completed .form-steps__item-line {
  background-color: #9b7b34;
}

/*métodos de pagamento -carrinho */

.order_summary {
  display: flex;
  gap: 8%;
  margin-top: 40px;
  margin-bottom: 80px;
}

.carrinho_page .login_div .tab {
  margin-top: 40px;
}

.form_order {
  width: 60%;
}

.order_summary .cart_page {
  flex-direction: column;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  width: 40%;
  position: sticky;
  top: 100px;
  height: 100%;
}

.order_summary .cart_list,
.order_summary .cart_end {
  width: 100%;
}

.order_summary .cart_list {
  gap: 10px;
  margin-bottom: 80px;
}

/* Carrinho - Dados */

.form_order h4 {
  font-size: 21px;
  font-weight: 500;
  text-transform: uppercase;
}

.order_dados_header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  justify-content: space-between;
  width: 100%;
}

.order_dados {
  margin-bottom: 20px;
}

.form_order_div {
  font-size: 16px;
  margin-bottom: 20px;
}

.form_order span {
  font-size: 16px;
  font-weight: 400;
}

.form_order_div label {
  margin-bottom: 5px;
}

.form_order_div input {
  border-radius: 2px;
  border: 1px solid var(--lightgray2);
  width: 100%;
  padding: 10px;
  font-size: 18px;
  cursor: pointer;
}

.form_order_div select {
  border-radius: 2px;
  border: 1px solid var(--lightgray2);
  width: 100%;
  padding: 10px;
  font-size: 18px;
  cursor: pointer;
}

.form_order_div input:focus {
  border: 1px solid #000;
}

.form_order_div input:hover {
  border: 1px solid black;
}

.radio_input {
  display: flex;
  flex-direction: column;
}

.radio_input input[type="radio"] {
  /* Ocultando o botão de rádio padrão */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  /* Definindo as dimensões do novo botão de rádio */
  width: 16px;
  height: 16px;
  /* Estilizando a aparência do novo botão de rádio */
  border: 1px solid black;
  border-radius: 50%;
  outline: none;
  /* Posicionando o rótulo do botão de rádio ao lado do círculo */
  margin-right: 5px;
  position: relative;
  margin-top: 4px;
}

/* Estilizando o círculo no meio do input de rádio */
.radio_input input[type="radio"]:checked::before {
  content: "";
  display: block;
  width: 10px;
  /* Largura do círculo */
  height: 10px;
  /* Altura do círculo */
  background-color: black;
  /* Cor do círculo quando selecionado */
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.language_list div {
  margin-right: 3px;
}

.radio_input label {
  color: var(--gray-scale-gray-700, #4d4d4d);
  font-size: 18px;
  display: flex;
  gap: 5px;
  cursor: pointer;
  line-height: 22px;
  margin-bottom: 10px;
}

.payment_img_title {
  display: flex;
  align-items: center;
  gap: 5px;
  flex: 2;
  flex-wrap: wrap;
}

/*Produtos page */

.products_list2 {
  display: grid;
}

.filter_box {
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px 24px;
  max-width: 280px;
  width: 100%;
}

.thumb-value {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.product_list_text {
  display: flex;
  justify-content: space-between;
  color: rgba(0, 0, 0, 0.6);
  font-family: Lato;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.product_list_text p {
  font-family: Lato;
  font-size: 16px;
  font-weight: 600;
}

.select_prod {
  width: auto;
  position: relative;
  padding: 0;
  padding-right: 1.25rem;
  cursor: pointer;
}

.price_div img {
  position: absolute;
  right: 0;
  pointer-events: none;
  cursor: pointer;
}

.filter_box .header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.line {
  height: 1px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.price_div {
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  align-self: flex-end;
  margin-left: auto;
}

.price_img {
  display: flex;
  align-items: center;
}

.products_cat {
  display: flex;
  flex-direction: column;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 600;
  gap: 20px;
}

.products_cat_filter {
  display: flex;
  flex-direction: column;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 600;
  gap: 10px;
}

/* TIAGO */
.products_cat_filter li {
  position: relative;
}

.products_cat_filter input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  cursor: pointer;
}

.products_cat_filter input[type="radio"]:checked + label,
.products_cat_filter input[type="radio"]:hover + label {
  color: #000;
}

.products_cat_filter input[type="checkbox"]:checked + label,
.products_cat_filter input[type="checkbox"]:hover + label {
  color: #000;
}
/* */

.products_cat li {
  display: flex;
  justify-content: space-between;
}

.products_cat li.active a {
  color: #000000;
}

.products_cat li a:hover {
  color: #000000;
}

.products_cat img {
  /* Rotação inicial para cima */
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

.products_cat img.rotated {
  /* Rotação para baixo quando a classe 'rotated' é adicionada */
  transform: rotate(-90deg);
}

.sub_cat_list {
  display: none;
}

.sub_cat_list li {
  margin-left: 20px;
  margin-top: 10px;
}

.products_page h3 {
  font-size: 22px;
  color: black;
}

.product_listgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 58px;
  margin-bottom: 70px;
  column-gap: 58px;
  row-gap: 70px;
  margin-top: 20px;
}

.price_interval {
  position: relative;
  width: 100%;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  height: 40px;
  margin: auto;
  margin-top: 25px;
}

.price_slider,
.year_slider {
  position: relative;
  z-index: 1;
  height: 8px;
}

.price_slider > .track,
.year_slider > .track {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.1);
}

.price_slider > .range,
.year_slider > .range {
  position: absolute;
  z-index: 2;
  left: 25%;

  top: 0;
  bottom: 0;
  border-radius: 5px;
  background-color: black;
}

.price_slider > .thumb,
.year_slider > .thumb {
  position: absolute;
  z-index: 3;
  width: 20px;
  height: 20px;
  background-color: black;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(98, 0, 238, 0.1);
  transition: box-shadow 0.3s ease-in-out;
}

.price_slider > .thumb.left,
.year_slider > .thumb.left {
  left: 25%;
  transform: translate(-10px, -6px);
}

.price_slider > .thumb.right,
.year_slider > .thumb.right {
  right: 25%;
  transform: translate(-10px, -6px);
}

.price_slider > .thumb.hover,
.year_slider > .thumb.hover {
  box-shadow: 0 0 0 5px rgba(155, 123, 52, 0.5);
}

input[type="range"] {
  position: absolute;
  pointer-events: none;
  -webkit-appearance: none;
  z-index: 2;
  height: 10px;
  width: 100%;
  opacity: 0;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  pointer-events: all;
  width: 30px;
  height: 30px;
  border-radius: 0;
  border: 0 none;
  background-color: red;
  -webkit-appearance: none;
}

.price_values {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  font-size: 14px;
  color: #333;
}

.product_div {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.btn_mostrarmais {
  max-width: 329px;
  width: 100%;
  height: 45px;
  border: 1px solid black;
  font-size: 25px;
  text-align: center;
  font-weight: 600;
  margin: auto auto 0;
}

.btn_mostrarmais:hover {
  color: white;
  background-color: black;
}

.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  z-index: 3000;
  background-color: rgb(0 0 0 / 70%);
}

.close_filter {
  width: 30px;
  height: 30px;
  position: absolute;
  left: 1.75rem;
  top: 2rem;
  display: none;
}

.path {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 20px;
  color: rgba(0, 0, 0, 0.6);
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}

.path span {
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.path span:last-child {
  text-wrap: wrap;
}

.path span:not(:last-child)::after {
  content: url("/i/arrowright.svg");
  width: 14px;
  height: 14px;
  display: inline-block;
  margin-left: 10px;
  margin-right: 4px;
}

.path > span:last-child,
.path > span:last-child * {
  color: var(--title);
}

.path .active {
  color: #6c5c38;
}

#cat_arrowup,
#price_arrowup {
  display: none;
}

.order_dados {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.order_dados:not(:last-of-type) {
  margin-bottom: 10px;
}

.order_dados_edit {
  display: flex;
  align-items: center;
  gap: 10px;
}

.order_dados_edit span {
  font-size: 16px;
  font-weight: 400;
}

/* Área reservada */

.areareservada_section {
  padding: 70px 0 0;
  display: flex;
  gap: 50px;
  font-family: Lato;
}

.areareservada_menu {
  max-width: 300px;
  width: 100%;
}

.areareservada_menu h4,
.areares_dados_div h4,
.areareservada_dados h4 {
  font-size: 20px;
  font-weight: 600;
}

.areares_menu_ul {
  padding-top: 20px;
  gap: 10px;
  display: flex;
  flex-direction: column;
}

.areares_menu_ul li {
  border-radius: 2px;
  font-size: 20px;
  font-weight: 500;
  border: 1px solid black;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: black;
  text-wrap: nowrap;
}

.areares_menu_ul li.active {
  background: #000;
  color: #f2f2f1;
}

.areares_menu_ul li:hover {
  background: #000;
  color: #f2f2f1;
}

.areares_menu_ul li a {
  text-decoration: none;
  color: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.areares_menu_ul li:hover img {
  content: url("/i/ep_arrow-up-whitebold.svg");
}

.areares_menu_ul li.active img {
  content: url("/i/ep_arrow-up-whitebold.svg");
}

.areares_dados_div {
  padding-bottom: 15px;
}

.areareservada_dados {
  padding: 50px 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-size: 18px;
}

.limpar {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  border-bottom: 1px solid black;
  font-family: Lato;
  align-items: end;
  display: flex;
}

.areareservada_dados label {
  padding-top: 10px;
  font-size: 18px;
}

.label_flex {
  display: flex;
}

.title_label {
  max-width: 200px;
  width: 100%;
  font-size: 18px;
  padding-top: 0;
  flex-grow: 1;
}

.areares_dados_div {
  display: flex;
  flex-direction: column;
}

.areares_dados_div input {
  width: 100%;
  border: 1px solid var(--lightgray2);
  border-radius: 2px;
  padding: 0 10px;
  height: 40px;
  font-family: Lato;
  font-size: 18px;
  cursor: pointer;
  appearance: auto;
}

.areares_dados_div input:focus {
  border: 1px solid black;
}

.areareservada_section label.error {
  text-align: end;
  padding-top: 0;
}

.custom-select {
  position: relative;
  display: flex;
  margin-right: 10px;
  flex-shrink: 1;
  width: 120px;
  height: 40px;
  border: 1px solid var(--lightgray2);
}

.w3-select {
  padding-left: 10px;
  color: #000;
  font-family: Lato;
  font-size: 18px;
  -webkit-appearance: none;
  /* Remove a seta padrão do navegador */
  -moz-appearance: none;
  appearance: none;
}

.custom-select .arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  /* Isso permite que o clique passe pelo ícone para o seletor */
}

.custom-select .arrow i {
  font-size: 1em;
  /* Ajuste o tamanho conforme necessário */
}

.areares_savedata {
  width: 100%;
  display: flex;
  justify-content: end;
  gap: 20px;
  flex-wrap: wrap;
}

.areares_savedata p {
  color: #6a6a6a;
  font-family: Lato;
  font-size: 14px;
  margin-bottom: 10px;
  text-wrap: nowrap;
}

.areares_savedata div span {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  border-bottom: 1px solid black;
  font-family: Lato;
}

.areares_title_checkbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap-reverse;
  gap: 5px;
  margin-bottom: 20px;
}

.areares_title_checkbox h4 {
  padding-bottom: 0;
}

.areares_title_checkbox div {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.custom-checkbox-areares label {
  display: flex;
  align-items: center;
}

.custom-checkbox-areares label a {
  color: black;
}

.custom-checkbox-areares input {
  opacity: 0;
  position: absolute;
  width: 1px;
}

.custom-checkbox-areares .checkmark {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 1px solid black;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  min-width: 18px;
  min-height: 18px;
  margin-right: 5px;
}

/* Quando o checkbox está marcado, adiciona um "tick" */
.custom-checkbox-areares input[type="checkbox"]:checked + .checkmark:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 5px;
  /* Largura menor do tick */
  height: 10px;
  /* Altura menor do tick */
  border: solid black;
  border-width: 0 2px 2px 0;
  /* Espessura da borda do tick ajustada */
}

/* Página de Histórico de Encomendas*/

.addfileproof .btn_fileadd,
.addfileproof .custom-upload-label {
  height: 40px;
  justify-content: center;
  padding: 0;
  max-height: 50px;
  text-overflow: ellipsis;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.info-order .addfileproof {
  margin: 0;
  padding: 0;
}

.info-order h3 {
  font-size: 18px;
  padding-bottom: 10px;
}

.info-order {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}

.info-order > div {
  border: 1px solid #ddd;
  padding: 20px;
  width: 48%;
  line-height: 1.5;
}

.display-flex-between {
  display: flex;
  justify-content: space-between;
}

.areareservada_orderhistory {
  width: 100%;
}

.orderhistory_header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.total {
  display: flex;
  justify-content: flex-end;
  flex-direction: row;
  line-height: 2;
}

.info-order.table,
.history-price {
  font-family: Arial;
  color: #313131;
}

.total .history-price {
  width: 150px;
  text-align: right;
  padding-right: 10px;
}

.product-name {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  align-items: center;
}

.line-1,
.line-2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.line-1 {
  border-top: 1px solid #1d1d1d;
  border-bottom: 1px solid #1d1d1d;
  line-height: 3;
  margin-top: 10px;
}

.line-2 {
  border-bottom: 1px dotted #ddd;
  line-height: 2;
  padding: 10px 0;
}

.total-all {
  margin-top: 40px;
}

.line-1 > div,
.line-2 > div {
  width: 33%;
}

.line-1 div:nth-child(2),
.line-2 div:nth-child(2),
.line-1 div:nth-child(3),
.line-2 div:nth-child(3) {
  text-align: center;
}

.line-1 div:nth-child(1),
.line-2 div:nth-child(1) {
  padding-left: 10px;
}

.line-1 div:nth-child(4),
.line-2 div:nth-child(4) {
  text-align: right;
  padding-right: 10px;
}

.total .orderhistory_header label {
  font-family: Lato;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
}

.areareservada_orderhistory {
  width: 100%;
}

.orderhistory_header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.areareservada_orderhistory h4 {
  font-family: Lato;
  font-size: 24px;
  font-weight: 500;
}

.orderhistory_header label {
  font-family: Lato;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
}

.orderhistory_header select {
  border: 1px solid black;
  padding: 5px 10px;
  font-family: Lato;
  font-size: 16px;
  border-radius: 2px;
  appearance: auto;
  max-width: 200px;
  width: 100%;
}

.img_select {
  position: absolute;
  right: 10px;
}

.orderhistory_header span {
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}

.order_history_table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 40px;
}

.order_history_table th,
.order_history_table td {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  border-left: none;
  border-right: none;
  padding: 10px 20px;
  text-align: left;
  white-space: nowrap;
}

.order_history_table th {
  border-top: 1px solid #ddd;
  border-bottom: 2px solid #ddd;
  font-size: 20px;
}

.order_history_table td {
  font-size: 18px;
  font-family: Lato;
}

.order_history_table td:last-child {
  border-right: none;
}

.order_history_table td a {
  color: #7a6b48;
  text-align: center;
  font-family: Lato;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

/* FAQ PAGE*/

.faq_pf {
  margin: 0 20px 10px 20px;
  border-bottom: 1px solid #6a6a6a;
  padding-bottom: 5px;
  border-bottom: 1px solid #6a6a6a;
  padding-bottom: 5px;
}

.faq_header {
  display: flex;
  justify-content: space-between;
  font-weight: 400;
  padding-bottom: 8px;
  cursor: pointer;
  align-items: center;
  gap: 10px;
}

.faqdiv h2 {
  font-size: 32px;
  font-weight: 700;
  padding-bottom: 10px;
}

.faq_pf div span {
  font-size: 16px;
  font-family: Lato;
}

.faq_section {
  padding: 70px 0;
}

.faqdiv {
  margin-bottom: 40px;
}

.faq_pf .faq_text {
  display: none;
}

.faq_pf.opened .faq_text {
  display: block;
}

.faq_header p {
  font-size: 20px;
}

.faq_text {
  font-size: 18px;
  padding: 10px 0 20px 0;
  font-family: "Lato";
  font-weight: 300;
  line-height: 25px;
}

.dec,
.inc {
  width: 20px;
}

.form-steps__icon-container {
  position: relative;
  margin-bottom: 15px;
}

.sobrenos_section {
  width: 100%;
  display: flex;
  flex-direction: column;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  text-align: justify;
}

.sobrenos_div1 {
  display: flex;
  max-width: 900px;
  margin: auto;
  margin-top: 80px;
  gap: 5%;
}

.sobrenos_div1 .text {
  color: #000;
  text-align: center;
  font-size: 36px;
  font-weight: 400;
  line-height: 50px;
}

.sobrenos_div2 {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-top: 140px;
  text-align: justify;
}

.sobrenos_div3 {
  display: flex;
  margin-top: 120px;
  gap: 60px;
  align-items: center;
  text-align: justify;
}

.sobrenos_div3 img {
  max-width: 315px;
  width: 100%;
  height: auto;
}

.sobrenos_div3 .text {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.sobrenos_div4 {
  background: #f2f2f1;
  width: 100%;
  margin-top: 140px;
  margin-bottom: 100px;
}

.sobrenos_div4_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 80px 0;
  gap: 40px;
  overflow-y: hidden;
  max-width: 1920px;
  width: 80%;
  margin: auto;
}

.sobrenos_div4_record {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: nowrap;
}

.sobrenos_div4_record .text-container {
  display: flex;
  flex-direction: column;
  line-height: 30px;
  text-wrap: nowrap;
}

.sobrenos_div4_record .text-container h4 {
  font-family: Lato;
  font-size: 18px;
  font-weight: 600;
}

.sobrenos_div4_record .text-container p {
  font-size: 18px;
  font-weight: 500;
}

.sobrenos_div5 {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-bottom: 80px;
}

.sobrenos_div5 .div {
  display: flex;
  gap: 40px;
  position: relative;
  opacity: 50%;
}

.sobrenos_div5 .div_header {
  display: flex;
  gap: 50px;
  position: relative;
  height: 45px;
}

.sobrenos_div5 .div_header .div_img {
  position: relative;
  width: 15px;
  height: 35px;
  background-repeat: no-repeat;
  opacity: 1;
  transition: opacity 0.5s ease;
  margin-top: auto;
}

.sobrenos_div5 .div.active {
  opacity: 1;
}

.sobrenos_div5 .div.active .div_header .div_img {
  background-image: url("/i/garrafaopen.png");
  opacity: 1;
  height: 45px;
  margin-top: 0;
}

.sobrenos_div5 .div_header:not(.active) .div_img {
  background-image: url("/i/garrafaclosed.png");
  opacity: 0.5;
}

.sobrenos_div5 .div h4 {
  color: #7a6b48;
  font-family: Alata;
  font-size: 22px;
  font-weight: 400;
  text-wrap: nowrap;
  padding-top: 15px;
  min-width: 190px;
}

.sobrenos_div5 .text-box {
  font-family: Cormorant Infant;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  padding-top: 15px;
}

.sobrenos-page .section_product {
  margin-bottom: 140px;
}

/* Produto página, em detalhe*/

/*Produto: Imagens Laterais 
.thumbs-container {     overflow-y: scroll; 
  height: 600px;    flex-shrink: 0;  }

.thumbs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    scrollbar-width: thin;
    scrollbar-color: #d2cfc8 #e8e8e8;
    padding-right: 10px;
}
  
.product_page .thumbs-container::-webkit-scrollbar {
    width: 3px;
    height: 10px;
    margin-left: 10px;
}
  
.thumbs-container::-webkit-scrollbar-track {
    background-color: #e8e8e8; 
}
  
.thumbs-container::-webkit-scrollbar-thumb {
    background-color: var(--lightgray);
}

.thumb-image {
  position: relative;
  width: 150px;
  height: 160px;
  flex-shrink: 0;
  max-width: 100%;
  max-height: 100%;
}

.thumb-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
*/
/*Produto: Imagem principal 

.product-detail .big {
    width: 450px;
    height: 600px;
    max-width: 100%;
    max-height: 100%;
    position: relative;

  }
  
.product-detail .big img {
    width: 100%;
    height: 100%;    
    object-fit: cover;
  }
  
.product-detail {display:flex;gap:10px;flex-shrink: 0; position: sticky; top: 0; left: 0; height: 100%;}


.thumb-image.active { border:1px solid black}

/* Produto em detalhe: titulo, descrição, preço, personalização */

.product-detail {
  display: flex;
}

.thumbs {
  max-height: 590px;
  /* Defina a altura máxima desejada para as thumbnails */
  overflow-y: scroll;
  /* Cria uma barra de rolagem vertical se necessário */
  /* Adicione quaisquer outros estilos necessários para as thumbnails */
  min-width: 160px;
}

/* Estilização personalizada da barra de rolagem (opcional) */
.thumbs::-webkit-scrollbar {
  width: 2px;
}

.thumbs::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.thumbs::-webkit-scrollbar-thumb {
  background: rgba(122, 107, 72, 0.2);
}

.thumbs::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.big img {
  /*max-width: 650px; */
  height: auto;
  max-width: 100%;
  /*width: 100%;*/
}

.big {
  max-width: 650px;
  width: 100%;
  max-height: 650px;
}

.thumbs .thumb-image img {
  max-width: 100%;
  height: auto;
  min-width: 148px !important;
  margin-right: 10px;
}

.thumbs .slick-current.thumb-image img {
  border: 1px solid black;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25);
}

.thumbs .slick-slide {
  margin-bottom: 20px;
  /* Espaçamento na parte inferior de cada slide */
}

.product_page {
  padding: 40px 0;
  display: flex;
  gap: 30px;
  margin-bottom: 140px;
}

.product_page .product-div .info h3 {
  color: #6c5c38;
  font-size: 30px;
  font-weight: 400;
}

.product_page .product-div .info p {
  color: #6c5c38;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 30px;
}

.product_page .product-div .info .text-container {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  text-align: justify;
}

.product_page .product-div .price {
  color: #6c5c38;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  font-family: "Cormorant Infant";
  margin-top: 20px;
  justify-content: end;
  display: flex;
  margin-bottom: 50px;
}

.product_page .personalizeprice .price {
  margin-bottom: 0;
  margin-top: 0;
}

.product_page .product-div {
  max-width: 700px;
  width: 100%;
}

.product_page .product-div .endline {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.product_page .product-div .counter {
  max-width: 160px;
}

.product_page .product-div .contact-btn {
  max-width: 100%;
  text-wrap: nowrap;
}

.product_page .product-div .btnoperation {
  padding: 10px 30px;
  font-size: 22px;
  text-align: center;
  font-weight: 400;
  width: 100%;
  border-radius: 0 2px 2px 0;
  margin-top: 0;
}

.product-detail .big,
.product-detail .thumbs {
  opacity: 0;
}

.product_page .product-div .details h2 {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 400;
}

.product_page .product-div .details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.product_page .product-div .details span {
  font-size: 24px;
  color: var(--lightgray4);
  font-family: Lato;
}

.product_page .product-div .details_open {
  margin-bottom: 30px;
  text-align: justify;
  display: none;
}

.product_page .product-div .details_open * {
  font-family: Lato;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.6);
}

.detail_extra .personalized {
  font-family: Lato;
  font-size: 16px;
}

.detail_extra .personalized * {
  font-family: inherit;
  color: rgba(0, 0, 0, 0.6);
}

/* Produto: personalização */
.product_page .product-div .personalize {
  display: none;
}

.product_page .product-div .personalize .personalize_header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  align-items: center;
}

.product_page .product-div .personalize .personalize_div {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}

.product_page .product-div .personalize label input {
  appearance: auto;
  height: 15px;
  width: 15px;
}

.product_page .product-div .personalize h2 {
  color: #6c5c38;
  font-size: 28px;
  font-weight: 400;
}

.product_page .product-div .personalize label {
  font-size: 20px;
  gap: 15px;
  display: flex;
  align-items: center;
  padding-left: 40px;
}

.product_page .product-div .personalize label:not(:first-of-type) {
  margin-top: 20px;
}

.personalize_div .content {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  display: none;
}

.imagemRadio {
  display: flex;
  margin-top: 20px;
}

.imagemRadio input,
.textRadio input {
  padding: 10px 20px;
  border: 1px solid #b2b3b3;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
}

.textRadio input {
  padding: 15px 20px;
  margin-top: 20px;
}

.textRadio input::placeholder {
  color: black;
}

.imagemRadio input {
  color: #b2b3b3;
  border-radius: 2px 0 0 2px;
}

.imagemRadio input::placeholder {
  color: black;
  font-size: 18px;
  font-weight: 500;
}

.personalize_div .content .btnoperation {
  width: auto;
}

.personalize_div .content p {
  margin-top: 20px;
}

.personalize_div .btnoperation {
  margin-top: 0;
  border: 1px solid #b2b3b3;
  max-width: 200px;
  font-size: 26px;
  font-weight: 700;
}

.personalizeprice {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  margin-top: 30px;
  align-items: center;
}

.personalize_div .personalizeprice p {
  font-size: 20px;
  font-weight: 400;
  margin-top: 0;
}

.personalize_div .content .line {
  width: 75%;
  margin: auto;
  margin-bottom: 20px;
  background-color: rgba(0, 0, 0, 0.1);
}

.price_total .line {
  margin-top: 40px;
  background-color: rgba(0, 0, 0, 0.2);
}

.price_total {
  display: none;
}

.personalize_div .personalizeprice:last-of-type {
  margin-bottom: 0;
}

.file_upload {
  display: none;
}

.custom-upload-label {
  align-items: center;
  display: flex;
  padding: 10px 20px;
  font-size: 18px !important;
  text-align: center;
  font-weight: 400;
  border: 1px solid #b2b3b3;
  width: 100%;
  color: black;
  cursor: pointer;
  padding-left: 20px !important;
  height: 53px;
  border-right: none;
}

.base_section {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  text-align: justify;
  margin: 70px 0;
}

.news_img_slide.slick-initialized .slick-slide {
  margin: 0;
}

.news_page_rec .text_container {
  display: flex;
  flex-direction: column;
}

.news_page_rec .news_page_div1 {
  margin-bottom: 60px;
}

.area_res a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.area_res span {
  font-size: 21px;
}

.slick-dots {
  > li {
    display: inline-block;
  }

  > li:only-child {
    display: none;
  }
}

.forgetfulness-btn {
  margin-left: unset;
  background: white;
  color: black;
  border: 1px solid black;
  max-width: 200px;
  font-size: 18px;
}

.visibilityhidden {
  visibility: hidden !important;
  width: 0 !important;
  padding: 0 !important;
  height: 0 !important;
  border: 0 !important;
}

.rgpd .plk-rgpd-checkbox {
  opacity: 0;
  position: absolute !important;
  z-index: -1;
}

.rgpd .checkbox-simple {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.rgpd .checkbox-simple .checkmark {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 1px solid black;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  min-width: 18px;
  min-height: 18px;
}

/* Adiciona um "tick" quando o checkbox está marcado */
.checkbox-simple input[type="checkbox"]:checked + .checkmark:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 5px;
  /* Largura menor do tick */
  height: 10px;
  /* Altura menor do tick */
  border: solid black;
  border-width: 0 2px 2px 0;
  /* Espessura da borda do tick ajustada */
}

.product-add-cart-success,
.product-add-cart-error {
  display: none;
}

.product-add-cart-error {
  color: red;
}

.product-add-cart-success {
  color: green;
}

.product-add-cart-success,
.product-add-cart-error {
  margin-top: 1rem;
  text-align: end;
}

.hidden {
  display: none !important;
}

.custom-checkbox-areares {
  display: flex;
  align-items: center;
  gap: 5px;
}

#plk-order-billing-address {
  margin-top: 30px !important;
}

.cart_end_finalize .cart_submit {
  margin-top: 30px;
}

.store_terms {
  margin-left: -5px;
}

.label_flex.country select {
  border: 1px solid var(--lightgray2);
  border-radius: 2px;
  padding: 0 10px;
  height: 40px;
}

.filter_box_body input {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto !important;
  outline: none;
}

.history_date_filter {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: end;
}

.product_side {
  display: flex;
  flex-direction: column;
  max-width: 280px;
  width: 100%;
  gap: 40px;
}

.selected {
  color: rgba(0, 0, 0, 1);
}

/*
.products_cat_filter label {cursor:pointer} */

.cat_filter {
  gap: 10px;
  margin-bottom: 20px;
}

/*.history_date_filter input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;

}*/

/* Esconda o ícone do seletor de data no Firefox */
/*.history_date_filter input[type="date"] {
  appearance: none;
  -moz-appearance: textfield;
}*/

.product_history {
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.product_history .price {
  font-family: Lato;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  color: black;
  margin-top: 10px;
}

.product_history .c_product {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product_history .c_product_box {
  gap: 80px;
  align-items: center;
}

.product_history .counter {
  height: 40px;
  width: 40px;
}

.product_history .c_product_detail h4 {
  color: #000;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.product_history .c_product_detail p {
  color: black;
}

.order_history_resume td a {
  text-align: left;
  text-transform: none;
}

.order_history_resume td {
  padding: 0;
}

.btn_fileadd {
  border: 1px solid #b2b3b3;
  max-width: 200px;
  padding: 10px 30px;
  font-size: 22px;
  text-align: center;
  font-weight: 400;
  width: 100%;
  border-radius: 0 2px 2px 0;
  margin-top: 0;
}

.btnoperation.personalized {
  border: 1px solid black;
}

.history_date_filter input[type="date"] {
  border: 1px solid black;
  padding-left: 10px;
}

.legal_age_cookie {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background: rgb(19 13 13 / 0.7);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.legal_age_cookie .container {
  justify-content: center;
  display: flex;
  flex-direction: column;
  color: black;
  align-items: center;
  background: #fff;
  padding: 45px 15px;
  text-align: center;
  border-radius: 5px;
  width: 100%;
  max-width: 500px;
  margin: 0 20px;
}

.buttons_flex {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.warning_legal_age {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.warning_legal_age p {
  font-size: 18px;
  margin-bottom: 10px;
}

.labtn {
  border: 1px solid var(--darkgray);
  padding: 6px 30px 8px 30px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  font-family: Lato;
  cursor: pointer;
}

.labtn:hover {
  background-color: var(--darkgray);
  color: white;
}

.cookies_div {
  background: #efefef;
  box-shadow: 10px 10px 15px 0px rgba(0, 0, 0, 1);
  position: fixed;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to bottom, #fafafa, #efefef);
  z-index: 9999;
}

.cookies_div .buttononsell {
  max-width: 160px;
  min-height: 44px;
  justify-self: center;
}

.cookie-inner-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 40px;
  gap: 40px;
  width: 100%;
  margin: auto;
}

.cookie-inner-wrapper .text {
  font-family: "Lato";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.cookie-inner-wrapper .text strong {
  font-family: "Lato";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}

.cookie-inner-wrapper .text span a {
  color: var(--title);
  font-weight: 600;
  text-decoration: underline;
  font-family: "Lato";
}

.cookies_div .buttons {
  display: flex;
  gap: 20px;
}

.relative {
  position: relative;
}

.cookies_div .close {
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
}

.buttononsell {
  background: var(--title);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 250px;
  border-radius: 8px;
  font-family: Lato;
  font-size: 16px;
  padding: 8px 12px;
  min-height: 50px;
  font-weight: 600;
  text-align: center;
}

.search_list .news_img img {
  /*width: 100%;*/
  height: auto;
  /*max-width: 486px;*/
  max-width: 100%;
}

.newsletter_rgpd .rgpd span {
  text-align: center;
}

.form-success-message {
  color: green;
}

.addfileproof .btn_fileadd,
.addfileproof .custom-upload-label {
  height: 40px;
}

.addfileproof .btn_fileadd {
  padding: 0;
  max-width: 130px;
}

.addfileproof {
  max-width: 450px;
  margin: auto;
}

.map_section {
  height: 450px;
  position: relative;
}

.map_section #map {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

/* ajuste botao do google */

.google-100 {
  border: 1px solid var(--lightgray4);
  background-color: white;
  color: var(--darkgray2);
  width: 100%;
  height: 50px;
  display: flex;
}

.abcRioButton.abcRioButtonLightBlue {
  height: 100% !important;
  width: 100% !important;
}

.abcRioButtonContentWrapper {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
}

.abcRioButtonIcon {
  padding: 0 0 0 8px !important;
}

.abcRioButtonContents {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-left: -12px !important;
  font-size: 20px !important;
}

/* ajuste botao google v2 , já optimizado para a versão mais recente*/

.g_id_signin .haAclf {
  width: 100% !important;
  padding: 0 !important;
}

.g_id_signin .nsm7Bb-HzV7m-LgbsSe {
  max-width: 100% !important;
}

.g_id_signin {
  display: flex;
  justify-content: center;
  margin-top: 5px;
}

/* ajuste botao google v2 , já optimizado para a versão mais recente*/

.plk-product-list {
  position: relative;
  height: 100%;
  padding-bottom: 58px;
}

.btn_mostrarmais {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.cat_list2.products_cat img {
  cursor: pointer;
}

.areareservada_section .success-message {
  text-align: end;
  font-size: 18px;
}

.classor p {
  text-align: center;
  color: var(--lightgray2);
  font-size: 20px;
  font-family: "Lato";
}

.classor {
  padding-bottom: 14px;
}

/* languagem mobile e desktop */
.language_list {
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.only_desktop .language_list::before {
  content: "|";
  margin-right: 10px;
  color: #000;
}

.only_desktop {
  display: flex;
}

.only_mobile_language {
  display: none;
}

.blank_page {
  max-width: 1630px;
  width: 100%;
  margin: auto;
  padding: 0 15px;
  padding-top: 70px;
  min-height: 40vh;
  font-size: 18px;
}

.codext {
  padding-bottom: 20px;
}

.codext,
.codext span {
  font-family: Cormorant Infant !important;
  font-size: 16px !important;
  font-weight: 500 !important;
}

.recovery_div {
  width: 100%;
  max-width: 450px;
  margin: auto;
}

.subnav-list {
  position: absolute;
  list-style: none;
  display: none;
  font-size: 1.125rem;
  line-height: 30px;
  padding-top: 10px;
  padding-left: 0;
  z-index: 3;
  width: 150px;
  padding: 10px 20px;
  background-color: #fcfcfc;
  margin-top: 10px;
}

#menu-background {
  position: relative;
  display: none;
}

/*.menu-background {
  background-color: red;
  position: fixed;
  height: 100px;
  width: 100%;
  z-index: 2;
  top: 125px;
}*/

.subnav-item {
  white-space: nowrap;
}

.nav-item {
  position: relative;
}

.nav-item.show .subnav-list {
  display: block;
}

.nav-item.show .cat_menu_img {
  transform: rotate(180deg);
}

.subnav-list li a {
  font-size: 18px;
  gap: 0px;
}

/*JD - 02-10-2024 */
.payment_img_title img {
  margin-right: 10px;
}

#plk-delivery-address {
  flex-direction: column;
}

/*JD-09-12-2024

.product_box {
  max-height: 250px;
  min-height: 250px;
}
.product_box img {
  max-height: 228px;
}
*/

/*AM-06-02-2025 */
.product_box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  max-height: 250px;
  min-height: 250px;
}

.product_box img {
  max-height: 228px;
  width: auto;
  max-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.product-hover-image img {
  opacity: 0;
}

.product_box:hover .product-hover-image img {
  opacity: 1;
}

.product_box:hover .main_image img {
  opacity: 0;
}

.plk_video{
max-width: 600px;
width: 100%;
object-fit: contain;
max-height: 400px;
}


.plk_video_banner {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block; 
  margin-left: 1%;
}
  