@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Gilda+Display&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Quicksand:wght@300..700&display=swap");
/* Tokens */
:root {
  --black: #0b0b0b;
  --white: #fff;
  --copper: #c8903a;
  --copper-2: #a66f2e;
  --rad: 18px;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1320px;
  }
}
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

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

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html.contrast {
  filter: grayscale(100%);
}

#wpadminbar {
  position: fixed !important;
}

body {
  position: relative;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #e8e8e6;
}

body,
input,
textarea,
button {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #666;
  font-size: 16px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  line-height: 130%;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #666;
  font-size: 18px !important;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  line-height: 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Gilda Display", serif;
  color: #57575a;
  margin-top: 0;
  margin-bottom: 1rem;
}
h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
  color: #5a2a57;
}

h1 {
  font-size: 48px !important;
  font-weight: 700;
  line-height: 130%;
}
@media (max-width: 767px) {
  h1 {
    font-size: 32px !important;
  }
}
h1 strong {
  color: #5a2a57;
}

h2 {
  font-size: 32px !important;
  font-weight: 700;
  line-height: 130%;
}
@media (max-width: 767px) {
  h2 {
    font-size: 24px !important;
  }
}
h2 strong {
  color: #5a2a57;
}

h3 {
  font-size: 28px !important;
  font-weight: 700;
  line-height: 130%;
}
@media (max-width: 767px) {
  h3 {
    font-size: 22px !important;
  }
}

h4 {
  font-size: 24px !important;
  font-weight: 700;
  line-height: 130%;
}
@media (max-width: 767px) {
  h4 {
    font-size: 20px !important;
  }
}

h5 {
  font-size: 20px !important;
  font-weight: 700;
  line-height: 130%;
}

h6 {
  font-size: 18px;
  font-weight: 700;
  line-height: 130%;
}

a {
  text-decoration: none;
  transition: 0.3s all;
  color: #666;
}
a:hover {
  opacity: 0.7;
}

.btn {
  background: linear-gradient(135deg, #c7a14a 0%, #c7a14a 100%);
  border-radius: 8px;
  padding: 16px;
  color: white;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 18px !important;
}

.btn:hover {
  color: white;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px); /* leve elevação */
  opacity: 1;
}

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

.overflow {
  width: 100%;
  overflow: auto;
}

*::-webkit-scrollbar {
  width: 9px !important;
  height: 9px !important;
}

*::-moz-scrollbar {
  width: 9px !important;
  height: 9px !important;
}

*::-webkit-scrollbar-track {
  background-color: rgba(102, 102, 102, 0.15) !important;
}

*::-moz-scrollbar-track {
  background-color: rgba(102, 102, 102, 0.15) !important;
}

*::-webkit-scrollbar-thumb:hover {
  background: rgba(90, 42, 87, 0.75) !important;
}

*::-moz-scrollbar-thumb:hover {
  background: rgba(90, 42, 87, 0.75) !important;
}

*::-webkit-scrollbar-thumb:active {
  background: #5a2a57 !important;
}

*::-moz-scrollbar-thumb:active {
  background: #5a2a57 !important;
}

*::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #57575a !important;
}

*::-moz-scrollbar-thumb {
  border-radius: 5px;
  background: #57575a !important;
}

@media (max-width: 1199px) {
  .banner {
    padding-top: 78px;
  }
}
.banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 70px;
}
@media (max-width: 1199px) {
  .banner__content {
    flex-direction: column;
    padding-top: 16px;
  }
}
.banner__content .left {
  max-width: 621px;
}
.banner__content .left p {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 109%; /* 28.34px */
  letter-spacing: -0.52px;
  margin-bottom: 16px;
}
.banner__content .right .btns {
  display: flex;
  align-items: center;
  gap: 16px;
}
.banner__content .right .btns .btnBanner {
  border-radius: 28px;
  background: #c7a14a;
  color: #fff;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.5px;
  padding: 8px 32px;
}
@media (max-width: 1199px) {
  .banner__content .right .btns .btnBanner {
    font-size: 16px;
  }
}
.banner__content .right .btns .btnBanner:last-child {
  background: white;
  color: #c7a14a;
}
.banner__links {
  padding-top: 65px;
}
@media (max-width: 1199px) {
  .banner__links {
    padding-top: 32px;
  }
}
.banner__links .listBanner {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 1199px) {
  .banner__links .listBanner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}
.banner__links .listBanner li {
  position: relative;
  padding-left: 16px;
  color: #f5f5f5;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.4px;
}
.banner__links .listBanner li::before {
  content: "";
  position: absolute;
  background: #c7a14a;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  top: calc(50% - 6px);
  left: -6px;
}
.banner__links .listBanner li a {
  color: #f5f5f5;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.4px;
}

.intro {
  padding: 100px 0;
}
@media (max-width: 1199px) {
  .intro {
    padding: 80px 0;
  }
}
.intro > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 1199px) {
  .intro > .container {
    flex-direction: column;
  }
}
.intro__txt {
  max-width: 621px;
}
@media (max-width: 1199px) {
  .intro__txt {
    max-width: 100%;
  }
}
.intro__txt h2 {
  color: #000;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 95%; /* 57px */
  letter-spacing: -1.2px;
  margin-bottom: 50px;
}
.intro__txt p {
  color: #221f1f;
  font-size: 30px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%; /* 39px */
  letter-spacing: -0.6px;
  margin-bottom: 32px;
}
.intro__img {
  background-repeat: no-repeat;
  background-size: cover;
  width: 604px;
  height: 676px;
}
@media (max-width: 1199px) {
  .intro__img {
    width: 100%;
    height: 400px;
  }
}

.produtos {
  padding-bottom: 70px;
}
.produtos__txt h2 {
  color: #000;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 95%; /* 57px */
  letter-spacing: -1.2px;
}
.produtos__txt p {
  color: #252121;
  font-size: 26px;
  font-style: normal;
  font-weight: 300;
  line-height: 109%; /* 28.34px */
  letter-spacing: -0.52px;
}
.produtos .produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 50px 0;
}
@media (max-width: 1199px) {
  .produtos .produtos-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
  }
}
.produtos .produto-card {
  background: #fff;
  border: 1px solid #ece8e2;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  display: flex;
  flex-direction: column;
}
.produtos .produto-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
  border-color: #ded9d2;
}
.produtos .produto-imagem {
  position: relative;
}
.produtos .produto-imagem a {
  display: block;
}
.produtos .produto-imagem .produto-img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.produtos .produto-sale {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  background: linear-gradient(145deg, #c8903a, #a66f2e);
  color: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.6rem;
  font-weight: 800;
  font-size: 0.75rem;
  box-shadow: 0 6px 16px rgba(200, 144, 58, 0.35);
}
.produtos .produto-info {
  padding: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.produtos .produto-titulo {
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.25;
  margin: 12px 14px 0;
}
.produtos .produto-titulo a {
  color: #0b0b0b;
  text-decoration: none;
}
.produtos .produto-titulo a:hover {
  color: #c7a14a;
}
.produtos .produto-preco {
  margin: 8px 14px 10px;
  font-weight: 700;
  color: #0b0b0b;
  font-size: 18px;
}
.produtos .produto-preco del {
  opacity: 0.55;
  font-weight: 600;
  margin-right: 8px;
}
.produtos .produto-preco ins {
  text-decoration: none;
  color: #c7a14a;
}
.produtos .produto-botao {
  margin-top: auto;
}
.produtos .produto-botao .button {
  margin: 0;
  display: block;
  text-align: center;
  color: #fff;
  border: none;
  border-radius: 0 0 25px 25px;
  padding: 1rem;
  box-shadow: 0 10px 22px rgba(200, 144, 58, 0.35);
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  background: #c7a14a;
  text-decoration: none;
}
.produtos .produto-botao .button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(200, 144, 58, 0.4);
  filter: brightness(1.03);
  color: #fff;
}
.produtos .boxBtn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.produtos .boxBtn .btnProdutos {
  border-radius: 28px;
  background: #c7a14a;
  padding: 8px 32px;
  color: white;
  font-size: 18px;
}

.cabazes {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.cabazes::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.76);
}
.cabazes > .container {
  position: relative;
}
.cabazes__content .txt h2 {
  color: #fff;
  text-align: center;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 95%; /* 57px */
  letter-spacing: -1.2px;
}
.cabazes__content .txt p {
  color: #fff;
  text-align: center;
  font-size: 26px;
  font-style: normal;
  font-weight: 300;
  line-height: 109%; /* 28.34px */
  letter-spacing: -0.52px;
  margin-bottom: 8px;
}
.cabazes__content .btnBox {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 32px;
}
.cabazes__content .btnBox .btnCabaz {
  border-radius: 28px;
  background: #c7a14a;
  padding: 8px 32px;
  color: white;
  font-size: 18px;
}

.sabores {
  padding: 80px 0;
}
.sabores__txt h2 {
  color: #000;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 95%; /* 57px */
  letter-spacing: -1.2px;
}
.sabores__txt p {
  color: #252121;
  font-size: 26px;
  font-style: normal;
  font-weight: 300;
  line-height: 109%; /* 28.34px */
  letter-spacing: -0.52px;
  margin-bottom: 8px;
}
.sabores .categorias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin: 60px 0;
}
@media (max-width: 768px) {
  .sabores .categorias-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 40px 0;
  }
}
.sabores .categoria-card {
  background: #fff;
  border: 1px solid #ece8e2;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  display: flex;
  flex-direction: column;
}
.sabores .categoria-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
  border-color: #ded9d2;
}
.sabores .categoria-imagem {
  position: relative;
}
.sabores .categoria-imagem a {
  display: block;
}
.sabores .categoria-imagem .categoria-img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.sabores .categoria-count {
  position: absolute;
  z-index: 2;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border-radius: 12px;
  padding: 0.25rem 0.5rem;
  font-weight: 600;
  font-size: 0.75rem;
  backdrop-filter: blur(4px);
}
.sabores .categoria-info {
  padding: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.sabores .categoria-titulo {
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.25;
  margin: 16px;
}
.sabores .categoria-titulo a {
  color: #0b0b0b;
  text-decoration: none;
}
.sabores .categoria-titulo a:hover {
  color: #c7a14a;
}
.sabores .categoria-descricao {
  margin: 8px 14px 10px;
  color: #666;
  font-size: 14px;
  line-height: 1.4;
  flex-grow: 1;
}
.sabores .categoria-botao {
  margin-top: auto;
}
.sabores .categoria-botao .button {
  margin: 0;
  display: block;
  text-align: center;
  color: #fff;
  border: none;
  border-radius: 0 0 25px 25px;
  padding: 1rem;
  box-shadow: 0 10px 22px rgba(200, 144, 58, 0.35);
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  background: #c7a14a;
  text-decoration: none;
}
.sabores .categoria-botao .button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(200, 144, 58, 0.4);
  filter: brightness(1.03);
  color: #fff;
}
.sabores__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 16px;
}
.sabores__btn .btnSabores {
  border-radius: 28px;
  background: #c7a14a;
  padding: 8px 32px;
  color: white;
  font-size: 20px;
  text-decoration: none;
}
.sabores__btn .btnSabores:hover {
  background: #a66f2e;
  color: white;
}

.quemSomos {
  padding: 100px 0 0;
}
@media (max-width: 1199px) {
  .quemSomos {
    padding: 80px 0 0;
  }
}
.quemSomos__content .contentBox {
  padding-bottom: 100px;
}
@media (max-width: 1199px) {
  .quemSomos__content .contentBox {
    padding-bottom: 80px;
  }
}
.quemSomos__content .contentBox .contentHeader {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 1199px) {
  .quemSomos__content .contentBox .contentHeader {
    align-items: flex-start;
    flex-direction: column;
  }
}
.quemSomos__content .contentBox .contentHeader .title {
  padding-right: 18px;
}
.quemSomos__content .contentBox .contentHeader .title h2 {
  color: #000;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 95%; /* 57px */
  letter-spacing: -1.2px;
}
@media (max-width: 1199px) {
  .quemSomos__content .contentBox .contentHeader .title h2 {
    font-size: 40px;
  }
}
.quemSomos__content .contentBox .contentHeader .title .line {
  background: #000;
  width: 561px;
  height: 10px;
}
@media (max-width: 1199px) {
  .quemSomos__content .contentBox .contentHeader .title .line {
    width: 100%;
  }
}
.quemSomos__content .contentBox .contentHeader h4 {
  color: #252121;
  font-size: 35px;
  font-style: normal;
  font-weight: 500;
  line-height: 109%; /* 38.15px */
  letter-spacing: -0.7px;
  position: relative;
  top: 10px;
  margin: 0;
}
@media (max-width: 1199px) {
  .quemSomos__content .contentBox .contentHeader h4 {
    font-size: 28px;
  }
}
.quemSomos__content .contentBox .contentTxt {
  display: flex;
  align-items: center;
  gap: 70px;
  padding-top: 70px;
}
@media (max-width: 1199px) {
  .quemSomos__content .contentBox .contentTxt {
    flex-direction: column-reverse;
  }
}
.quemSomos__content .contentBox .contentTxt .imgBox {
  background-repeat: no-repeat;
  background-size: cover;
  width: 360px;
  height: 540px;
}
.quemSomos__content .contentBox .contentTxt .txt {
  max-width: 708px;
}
.quemSomos__content .contentBox .contentTxt .txt p {
  color: #221f1f;
  font-size: 30px;
  font-style: normal;
  font-weight: 300;
  line-height: 148%; /* 44.4px */
  letter-spacing: -0.6px;
  margin-bottom: 32px;
}
@media (max-width: 1199px) {
  .quemSomos__content .contentBox .contentTxt .txt p {
    font-size: 24px;
  }
}
.quemSomos__content .contentBox .contentTxt .txt ul li {
  color: #221f1f;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 148%; /* 44.4px */
  letter-spacing: -0.6px;
  margin-bottom: 32px;
  position: relative;
  padding-left: 32px;
}
@media (max-width: 1199px) {
  .quemSomos__content .contentBox .contentTxt .txt ul li {
    font-size: 24px;
  }
}
.quemSomos__content .contentBox .contentTxt .txt ul li::before {
  content: "";
  position: absolute;
  background: #c7a14a;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  top: calc(50% - 11px);
  left: -16px;
}
@media (max-width: 1199px) {
  .quemSomos__content .contentBox .contentTxt .txt ul li::before {
    width: 12px;
    height: 12px;
    left: 0;
  }
}
@media (min-width: 1200px) {
  .quemSomos__content .contentBox:last-child .contentTxt {
    flex-direction: row-reverse;
  }
}
.quemSomos__imgs {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 1100px;
}
@media (max-width: 1199px) {
  .quemSomos__imgs {
    height: 300px;
  }
}

.page-template-contato .header {
  position: relative;
}

.contactos {
  padding: 80px 0;
}

.contato-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  padding: 20px 16px;
  border-top: 1px solid #e5e5e5;
}
.contato-wrapper .form-contato {
  flex: 1;
  min-width: 300px;
}
.contato-wrapper .form-contato form.wpcf7-form {
  max-width: 560px;
  /* Nome + Email + Telefone + Assunto lado a lado */
  /* Mensagem ocupa linha inteira */
  /* Botão enviar ocupa linha inteira */
}
.contato-wrapper .form-contato form.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.contato-wrapper .form-contato form.wpcf7-form .wpcf7-form-control-wrap input,
.contato-wrapper .form-contato form.wpcf7-form .wpcf7-form-control-wrap textarea {
  width: 100%;
  border: none;
  border: 1px solid #ccc;
  padding: 16px;
  font-size: 14px;
  outline: none;
  background: transparent;
  transition: border-color 0.3s;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  outline: none;
}
.contato-wrapper .form-contato form.wpcf7-form .wpcf7-form-control-wrap input::placeholder,
.contato-wrapper .form-contato form.wpcf7-form .wpcf7-form-control-wrap textarea::placeholder {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.9px;
}
.contato-wrapper .form-contato form.wpcf7-form .wpcf7-form-control-wrap input:focus,
.contato-wrapper .form-contato form.wpcf7-form .wpcf7-form-control-wrap textarea:focus {
  border-color: #000;
}
.contato-wrapper .form-contato form.wpcf7-form .wpcf7-form-control-wrap textarea {
  min-height: 120px;
  resize: vertical;
}
.contato-wrapper .form-contato form.wpcf7-form .wpcf7-form-control-wrap[data-name=your-name],
.contato-wrapper .form-contato form.wpcf7-form .wpcf7-form-control-wrap[data-name=your-email],
.contato-wrapper .form-contato form.wpcf7-form .wpcf7-form-control-wrap[data-name=your-phone],
.contato-wrapper .form-contato form.wpcf7-form .wpcf7-form-control-wrap[data-name=your-subject] {
  grid-column: span 1;
}
.contato-wrapper .form-contato form.wpcf7-form .wpcf7-form-control-wrap[data-name=your-message] {
  grid-column: span 2;
}
.contato-wrapper .form-contato form.wpcf7-form input[type=submit] {
  grid-column: span 2;
  border-radius: 10px;
  background: #c7a14a;
  color: white;
  font-weight: bold;
  padding: 12px;
  cursor: pointer;
  border: none;
  transition: background 0.3s;
  width: 100%;
}
.contato-wrapper .info-contato {
  flex: 1;
  max-width: 460px;
}
.contato-wrapper .info-contato h2 {
  color: #000;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 95%; /* 57px */
  letter-spacing: -1.2px;
}
.contato-wrapper .info-contato p,
.contato-wrapper .info-contato a {
  color: #221f1f;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%; /* 39px */
  letter-spacing: -0.6px;
  margin-bottom: 32px;
  display: block;
}
.contato-wrapper .info-contato h4 {
  color: #221f1f;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 39px */
  letter-spacing: -0.6px;
}
.contato-wrapper .info-contato .listaHorarios {
  padding-left: 32px;
}
.contato-wrapper .info-contato .listaHorarios li {
  list-style-type: disc;
  color: #221f1f;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  letter-spacing: -0.6px;
}

/* ====== LISTA DE PRODUTOS (Loja / Categorias) ====== */
/* Reset do layout antigo (floats) e pseudo-elementos */
.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 18px 0 40px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
  display: none !important;
  content: none !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
}

/* Card */
.woocommerce ul.products li.product {
  background: #fff;
  border: 1px solid #ece8e2;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  display: flex;
  flex-direction: column;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
  border-color: #ded9d2;
}

/* Imagem com proporção fixa */
.woocommerce ul.products li.product a img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Selo de promoção */
.woocommerce span.onsale {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  background: linear-gradient(145deg, #c8903a, #a66f2e);
  color: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.6rem;
  font-weight: 800;
  font-size: 0.75rem;
  box-shadow: 0 6px 16px rgba(200, 144, 58, 0.35);
}

/* Título e preço */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.25;
  margin: 12px 14px 0;
}

.woocommerce ul.products li.product .price {
  margin: 0 14px 10px;
  font-weight: 700;
  color: #0b0b0b;
  font-size: 18px;
}

.woocommerce ul.products li.product .price del {
  opacity: 0.55;
  font-weight: 600;
}

/* Botão */
.woocommerce ul.products li.product a.button {
  margin: 0;
  display: block;
  text-align: center;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 10px 22px rgba(200, 144, 58, 0.35);
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  border-radius: 0 0 25px 25px;
  background: #c7a14a;
}

.woocommerce ul.products li.product a.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(200, 144, 58, 0.4);
  filter: brightness(1.03);
}

/* Barra de ordenação / contagem (um pouco mais alinhado) */
.woocommerce .woocommerce-result-count {
  color: #666;
  margin: 6px 0 0;
}

.woocommerce .woocommerce-ordering {
  margin: 0 0 10px 0;
}

.woocommerce .woocommerce-ordering select {
  border: 1px solid #ded9d2;
  border-radius: 10px;
  padding: 0.55rem 0.8rem;
  background: #fff;
}

/* Paginação */
.woocommerce nav.woocommerce-pagination ul {
  border: none;
  gap: 8px;
  display: flex;
  justify-content: center;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: none;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.8rem;
  border: 1px solid #ded9d2;
  border-radius: 10px;
  background: #fff;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  background: linear-gradient(145deg, #c8903a, #a66f2e);
  color: #fff;
  border-color: transparent;
  font-weight: 800;
}

/* ===========================
   Os Vizinhos — Cart / Checkout / Account
   =========================== */
:root {
  --black: #0b0b0b;
  --white: #fff;
  --copper: #c8903a;
  --copper-2: #a66f2e;
  --gray-50: #fbf9f7;
  --gray-100: #f5f2ee;
  --gray-200: #ece8e2;
  --gray-300: #ded9d2;
  --gray-600: #666;
  --shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.08);
}

/* Botões (aplica-se aos CTAs do Woo) */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .checkout-button,
.woocommerce .place-order .button {
  background: linear-gradient(145deg, var(--copper), var(--copper-2));
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  box-shadow: 0 10px 22px rgba(200, 144, 58, 0.35);
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce .checkout-button:hover,
.woocommerce .place-order .button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(200, 144, 58, 0.4);
  filter: brightness(1.03);
}

/* Inputs / selects / textareas */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container .select2-selection--single {
  width: 100%;
  background: #fff;
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  padding: 0.65rem 0.8rem;
  box-shadow: none;
}

.select2-container .select2-selection--single {
  height: auto;
  padding: 0.45rem 0.6rem;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 1.4;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
}

/* Notices */
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-error,
.woocommerce .woocommerce-info {
  border: none;
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: var(--shadow-soft);
}

.woocommerce .woocommerce-message {
  background: #eef9f1;
}

.woocommerce .woocommerce-info {
  background: #eef3fb;
}

.woocommerce .woocommerce-error {
  background: #fdeeee;
}

/* ================= CART ================= */
.woocommerce-cart .woocommerce {
  gap: 24px;
}

.woocommerce table.shop_table {
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.woocommerce table.shop_table th {
  background: var(--gray-100);
  padding: 12px 14px;
  font-weight: 800;
}

.woocommerce table.shop_table td {
  padding: 14px;
  vertical-align: middle;
}

/* Miniatura e produto */
.woocommerce-cart table.shop_table .product-thumbnail img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
}

.woocommerce a.remove {
  color: #c33 !important;
  font-weight: 800;
  border: none;
}

.woocommerce-cart table.shop_table .product-name a {
  color: var(--black);
  font-weight: 800;
  text-decoration: none;
}

/* Qty */
.woocommerce .quantity .qty {
  width: 92px;
  padding: 0.6rem 0.7rem;
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  background: #fff;
}

/* Linha de ações (cupão + actualizar) */
.woocommerce-cart table.cart td.actions {
  padding: 12px 14px;
  background: var(--gray-50);
}

.woocommerce .cart .actions .coupon {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.woocommerce .cart .actions .coupon input.input-text {
  max-width: 240px;
  flex: 1 1 180px;
}

/* Totais do carrinho */
.cart-collaterals {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 24px;
}

@media (max-width: 980px) {
  .cart-collaterals {
    grid-template-columns: 1fr;
  }
}
.cart-collaterals .cart_totals {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 16px;
}

.cart-collaterals .cart_totals h2 {
  margin: 0 0 12px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.woocommerce .cart_totals table {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.woocommerce .cart_totals table th,
.woocommerce .cart_totals table td {
  padding: 10px 8px;
}

.woocommerce .cart_totals .wc-proceed-to-checkout {
  padding-top: 12px;
}

.woocommerce .return-to-shop .button {
  margin-top: 10px;
}

/* Cross-sells como cards */
.woocommerce .cross-sells ul.products {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

/* ================= CHECKOUT ================= */
.woocommerce-checkout .woocommerce {
  gap: 24px;
}

/* Layout 2 colunas */
.woocommerce .col2-set {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.05fr 0.95fr;
}

@media (max-width: 980px) {
  .woocommerce .col2-set {
    grid-template-columns: 1fr;
  }
}
/* Cards do formulário e revisão */
.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields,
.woocommerce-checkout #order_review {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 16px;
}

/* Títulos internos */
.woocommerce form .form-row label {
  font-weight: 700;
  color: #333;
}

/* Tabela do pedido */
.woocommerce #order_review table.shop_table {
  margin: 0;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
}

.woocommerce #order_review table.shop_table th {
  background: var(--gray-100);
}

.woocommerce #order_review .order-total th,
.woocommerce #order_review .order-total td {
  border-top: 2px solid var(--gray-200);
  font-weight: 900;
}

/* Métodos de pagamento */
.woocommerce-checkout #payment {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.woocommerce-checkout #payment ul.payment_methods {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-200);
}

.woocommerce-checkout #payment div.payment_box {
  background: #faf7f2;
  color: #333;
  border-radius: 12px;
  margin: 10px 16px;
  padding: 12px;
}

/* Cupão no checkout */
.woocommerce form.checkout_coupon {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 12px 16px;
  margin-bottom: 16px;
}

.woocommerce form.checkout_coupon .form-row-first,
.woocommerce form.checkout_coupon .form-row-last {
  width: auto;
  float: none;
  display: inline-block;
}

/* Botão finalizar */
.woocommerce .place-order {
  padding: 14px 16px;
}

.woocommerce .place-order .button {
  width: 100%;
}

/* ================= ACCOUNT (Minha Conta) ================= */
.woocommerce-account .woocommerce {
  display: grid;
  gap: 24px;
  grid-template-columns: 260px 1fr;
}

@media (max-width: 980px) {
  .woocommerce-account .woocommerce {
    grid-template-columns: 1fr;
  }
}
/* Navegação lateral */
.woocommerce-account .woocommerce-MyAccount-navigation {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 12px;
  width: 100%;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
  margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: block;
  padding: 10px 12px;
  color: #333;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
}

.woocommerce-account .woocommerce-MyAccount-navigation .is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
  background: linear-gradient(145deg, rgba(200, 144, 58, 0.1), rgba(166, 111, 46, 0.1));
  color: var(--black);
}

/* Conteúdo */
.woocommerce-account .woocommerce-MyAccount-content {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 16px;
}

/* Tabelas (Pedidos/Downloads) */
.woocommerce-account table.shop_table {
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.woocommerce-account table.shop_table th {
  background: var(--gray-100);
}

/* Endereços */
.woocommerce-Address address {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 12px;
  box-shadow: var(--shadow-soft);
}

/* Login/registro */
.woocommerce form.login,
.woocommerce form.register {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 16px;
}

/* ================= Pequenos ajustes ================= */
.woocommerce h2,
.woocommerce h3 {
  letter-spacing: -0.02em;
  font-weight: 900;
}

.woocommerce .form-row {
  margin-bottom: 12px;
}

.woocommerce .woocommerce-form__label-for-checkbox {
  display: flex;
  gap: 8px;
  align-items: center;
}

.sidebarBox {
  gap: 20px;
}
.sidebarBox.active .sidebar-loja {
  opacity: 1;
  height: 100%;
  max-height: 100%;
}

/* Sidebar */
.sidebar-loja {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 6px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  display: flex;
  justify-content: space-between;
  padding: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
  border: 1px solid #e7e6e6;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.sidebar-loja ul li {
  margin-bottom: 16px;
}

/* Quando sidebar aberta */
.sidebarBox.open .sidebar-loja {
  max-height: 2000px; /* garante todo o conteúdo visível */
  opacity: 1;
}

.sidebar-loja .closeSidebar {
  display: none;
}

/* Mobile: sidebar deslizando */
@media (max-width: 991px) {
  .sidebarBox {
    flex-direction: column;
  }
  .sidebar-loja {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    max-height: 100%;
    flex-direction: column;
    transition: transform 0.5s ease;
    z-index: 999;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
    justify-content: flex-start;
    gap: 16px;
    overflow: auto;
  }
  .sidebar-loja .closeSidebar {
    display: block;
    background: black;
    width: 40px;
    height: 40px;
    padding: 12px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 16px;
  }
  .sidebarBox.open .sidebar-loja {
    transform: translateX(0);
  }
}
.sidebarBox {
  display: none;
  margin-bottom: 20px;
}

.sidebarBox.active {
  display: block;
}

.btn-filtros {
  display: block;
  padding: 12px 15px;
  background: #0b0b0b;
  color: #fff;
  font-weight: bold;
  border: none;
  cursor: pointer;
  text-align: left;
  border-radius: 5px;
  margin-bottom: 32px;
}

.btn-filtros .arrow {
  float: right;
  transition: transform 0.3s;
}

.btn-filtros.active .arrow {
  transform: rotate(180deg);
}

.loja-com-sidebar {
  padding: 80px 0 32px;
}

/* ===== Wishlist - Cabazes ===== */
.alg-wc-wl-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: inherit;
}

.alg-wc-wl-wrapper table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.alg-wc-wl-wrapper th,
.alg-wc-wl-wrapper td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
}

.alg-wc-wl-wrapper th {
  background: #f8f8f8;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: #555;
}

.alg-wc-wl-wrapper td img {
  max-width: 60px;
  border-radius: 4px;
}

.alg-wc-wl-wrapper td a {
  color: #333;
  font-weight: 500;
  text-decoration: none;
}

.alg-wc-wl-wrapper td a:hover {
  text-decoration: underline;
}

.alg-wc-wl-wrapper .add_to_cart_button {
  background: #287b3b;
  color: #fff;
  padding: 8px 14px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}

.alg-wc-wl-wrapper .add_to_cart_button:hover {
  background: #1d5e2c;
}

.alg-wc-wl-wrapper .alg-wc-wl-view-state-remove {
  text-align: center;
}

.alg-wc-wl-wrapper .alg-wc-wl-view-state-remove a {
  color: #d9534f;
  font-weight: bold;
  text-decoration: none;
  font-size: 18px;
}

.alg-wc-wl-wrapper .alg-wc-wl-view-state-remove a:hover {
  color: #c9302c;
}

/* Responsivo */
@media (max-width: 768px) {
  .alg-wc-wl-wrapper table,
  .alg-wc-wl-wrapper thead,
  .alg-wc-wl-wrapper tbody,
  .alg-wc-wl-wrapper th,
  .alg-wc-wl-wrapper td,
  .alg-wc-wl-wrapper tr {
    display: block;
  }
  .alg-wc-wl-wrapper thead {
    display: none;
  }
  .alg-wc-wl-wrapper td {
    padding: 10px;
    position: relative;
  }
  .alg-wc-wl-wrapper td:before {
    content: attr(data-title);
    font-weight: bold;
    color: #555;
    display: block;
    margin-bottom: 5px;
  }
  .alg-wc-wl-wrapper tr {
    margin-bottom: 1rem;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }
}
/* Wishlist vazia (mensagem) */
.alg-wc-wl-wrapper .alg-wc-wl-empty {
  text-align: center;
  padding: 3rem 1rem;
  font-size: 18px;
  color: #555;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.alg-wc-wl-wrapper .alg-wc-wl-empty::before {
  content: "\f004"; /* Font Awesome heart */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 36px;
  color: #ccc;
  display: block;
  margin-bottom: 1rem;
}

.alg-wc-wl-wrapper .alg-wc-wl-empty .voltar-loja {
  display: inline-block;
  margin-top: 1rem;
  background: #287b3b;
  color: #fff;
  padding: 10px 18px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
  font-size: 16px;
}

.alg-wc-wl-wrapper .alg-wc-wl-empty .voltar-loja:hover {
  background: #1d5e2c;
}

.alg-wc-wl-btn-wrapper {
  text-align: center;
}

/* Container das abas */
.alg-wc-wl-tab {
  display: flex !important;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

/* Cada aba (botão) */
.alg-wc-wl-tablink {
  all: unset; /* reseta estilos herdados */
  font-weight: 600;
  font-size: 1rem;
  color: #333;
  padding: 8px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Hover */
.alg-wc-wl-tablink:hover {
  background: #f5f5f5;
  color: #c7933c;
}

/* Aba ativa */
.alg-wc-wl-tablink.active {
  background: #c7933c;
  color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

/* Esconde o layout antigo de colunas (as divis col-20per) */
.col-20per {
  border: none !important;
}

/* Bloco de alerta de stock */
.alg-wc-wl-stock_alert,
.alg-wc-wl-stock-alert {
  margin-top: 40px;
  padding: 25px;
  background: #faf7f2;
  border: 1px solid #eee;
  border-radius: 8px;
  text-align: center;
}

.alg-wc-wl-stock_alert label,
.alg-wc-wl-stock-alert label {
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  display: block;
}

.alg-wc-wl-stock_alert input[type=email],
.alg-wc-wl-stock-alert input[type=email] {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin: 0 10px 15px;
  width: 100%;
  max-width: 320px;
}

.alg-wc-wl-stock_alert input[type=submit],
.alg-wc-wl-stock-alert input[type=submit] {
  background: #c7933c;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.alg-wc-wl-stock_alert input[type=submit]:hover,
.alg-wc-wl-stock-alert input[type=submit]:hover {
  background: #a6792f;
}

.button-split {
  padding-top: 16px;
}
.button-split button {
  background: #c7933c;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

#alg_wcwl_user_stock_alert_form input[type=submit] {
  background: #c7933c;
  color: #fff;
  border: none;
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.delete-customized-wishlist {
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 600;
}

/* Container da conta */
.woocommerce-account .container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
}

/* Navegação lateral */
.woocommerce-MyAccount-navigation {
  flex: 0 0 250px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce-MyAccount-navigation li {
  margin-bottom: 12px;
}

.woocommerce-MyAccount-navigation a {
  display: block;
  padding: 10px 15px;
  border-radius: 8px;
  color: #333;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.woocommerce-MyAccount-navigation a:hover,
.woocommerce-MyAccount-navigation .is-active a {
  background: #c9963d; /* cor tema */
  color: #fff;
}

/* Área de conteúdo */
.woocommerce-MyAccount-content {
  flex: 1;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.woocommerce-account .woocommerce::before {
  display: none;
}
.woocommerce-account .woocommerce::after {
  display: none;
}
.woocommerce-account .woocommerce-info::before {
  display: none;
}
.woocommerce-account .woocommerce .col2-set::after,
.woocommerce-account .woocommerce .col2-set::before,
.woocommerce-account .woocommerce-page .col2-set::after,
.woocommerce-account .woocommerce-page .col2-set::before {
  display: none !important;
}

.woocommerce-account .woocommerce-MyAccount-content {
  width: 100%;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
  background: #c9963d;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
  background: grey !important;
}

.woocommerce-ordering {
  display: none;
}

.alg-wc-wl-social {
  display: none !important;
}

.alg-wc-delete-wishlist {
  margin-bottom: 32px;
}

.woocommerce-cart .header,
.woocommerce-checkout .header,
.woocommerce-account .header,
.single-product .header,
.page-template-default .header {
  background-color: rgba(200, 144, 58, 0.7607843137);
}
.woocommerce-cart > .container,
.woocommerce-checkout > .container,
.woocommerce-account > .container,
.single-product > .container,
.page-template-default > .container {
  padding: 220px 0 32px;
}

.tinv-wraper.tinv-wishlist {
  padding-left: 16px;
}

.pageBlog {
  padding: 190px 0 0;
}
.pageBlog__intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 90px;
}
@media (max-width: 1199px) {
  .pageBlog__intro {
    padding-bottom: 45px;
  }
}
.pageBlog__intro .title h2 {
  color: #000;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 95%; /* 57px */
  letter-spacing: -1.2px;
}
@media (max-width: 1199px) {
  .pageBlog__intro .title h2 {
    font-size: 42px;
  }
}
.pageBlog__intro .title p {
  color: #252121;
  font-size: 26px;
  font-style: normal;
  font-weight: 300;
  line-height: 109%; /* 28.34px */
  letter-spacing: -0.52px;
}
.pageBlog__destaque .blogPost {
  display: flex;
  align-items: stretch;
  gap: 32px;
}
@media (max-width: 1199px) {
  .pageBlog__destaque .blogPost {
    flex-direction: column-reverse;
  }
}
.pageBlog__destaque .blogPost .blogImg {
  background-repeat: no-repeat;
  background-size: cover;
  width: 580px;
  height: 432px;
  border-radius: 20px;
}
@media (max-width: 1199px) {
  .pageBlog__destaque .blogPost .blogImg {
    width: 100%;
  }
}
.pageBlog__destaque .blogPost .contentBlog {
  max-width: 586px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px 0;
}
.pageBlog__destaque .blogPost .contentBlog .txt h2 {
  color: #252121;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 83%; /* 41.5px */
  letter-spacing: -1px;
}
@media (max-width: 1199px) {
  .pageBlog__destaque .blogPost .contentBlog .txt h2 {
    font-size: 32px;
    line-height: 130%;
  }
}
.pageBlog__destaque .blogPost .contentBlog .txt p {
  color: #252121;
  font-size: 26px;
  font-style: normal;
  font-weight: 300;
  line-height: 109%; /* 28.34px */
  letter-spacing: -0.52px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pageBlog__destaque .blogPost .contentBlog .btn {
  border-radius: 28px;
  background: #c7a14a;
  padding: 8px 24px;
}
.pageBlog__txt {
  text-align: center;
  padding: 32px 0;
}
.pageBlog__blog .titleBlog {
  text-align: center;
}
.pageBlog__blog__txt {
  text-align: center;
}
.pageBlog__blog__boxes {
  padding-top: 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 48px;
  padding-bottom: 90px;
}
.pageBlog__blog__boxes .slick-dots {
  bottom: -50px;
}
.pageBlog__blog__boxes .slick-dots li button::before {
  width: 20px;
  height: 20px;
  color: #5a2a57;
  font-size: 20px;
}
.pageBlog__blog__boxes .slick-prev {
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='15' viewBox='0 0 11 15' fill='none' xmlns='https://www.w3.org/2000/svg'%3E%3Cpath d='M3.55 7.37501L9.15625 1.76876L8.29374 0.90625L1.82498 7.37501L8.29374 13.8438L9.15625 12.9813L3.55 7.37501Z' fill='%23a07e28'/%3E%3Cpath d='M3.55 7.37501L9.15625 1.76876L8.29374 0.90625L1.82498 7.37501L8.29374 13.8438L9.15625 12.9813L3.55 7.37501Z' stroke='%23a07e28' stroke-width='1.21875'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: cover;
  width: 24px;
  height: 32px;
}
.pageBlog__blog__boxes .slick-prev::before {
  content: "";
}
.pageBlog__blog__boxes .slick-next {
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='15' viewBox='0 0 11 15' fill='none' xmlns='https://www.w3.org/2000/svg'%3E%3Cpath d='M7.45 7.62499L1.84375 13.2312L2.70626 14.0938L9.17502 7.62499L2.70626 1.15623L1.84375 2.01874L7.45 7.62499Z' fill='%2312D0FF'/%3E%3Cpath d='M7.45 7.62499L1.84375 13.2312L2.70626 14.0938L9.17502 7.62499L2.70626 1.15623L1.84375 2.01874L7.45 7.62499Z' stroke='%23a07e28' stroke-width='1.21875'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: cover;
  width: 24px;
  height: 32px;
}
.pageBlog__blog__boxes .slick-next::before {
  content: "";
}
.pageBlog__blog__boxes .blogPost {
  border-radius: 16px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}
.pageBlog__blog__boxes .blogPost:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.pageBlog__blog__boxes .blogPost:hover .cardImg {
  transform: scale(1.05);
}
.pageBlog__blog__boxes .blogPost:hover .cardContent {
  background: #e4ecf4;
}
.pageBlog__blog__boxes .blogPost .blogImg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 287px;
  border-radius: 16px;
}
.pageBlog__blog__boxes .blogPost .contentBlog {
  padding: 16px 16px 32px;
  text-align: center;
}
.pageBlog__blog__boxes .blogPost .contentBlog .txt {
  margin-bottom: 32px;
  text-align: center;
}
.pageBlog__blog__boxes .blogPost .contentBlog .txt h4 {
  color: #252121;
}
.pageBlog__blog__boxes .blogPost .contentBlog .btn {
  border-radius: 28px;
  background: #c7a14a;
  padding: 8px 24px;
}
.pageBlog__blog__boxes .blogPost .contentBlog p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: none;
}
.pageBlog__img {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 1100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 1199px) {
  .pageBlog__img {
    background-position: center center;
  }
}
.pageBlog__img::before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.76);
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.pageBlog__img > .container {
  position: relative;
}
.pageBlog__img__content {
  text-align: center;
}
.pageBlog__img__content h2 {
  color: #fff;
  text-align: center;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 95%; /* 57px */
  letter-spacing: -1.2px;
  max-width: 740px;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .pageBlog__img__content h2 {
    font-size: 32px;
    line-height: 130%;
  }
}

.pageCoffe {
  padding-top: 180px;
}
.pageCoffe__intro .contentBox {
  padding-bottom: 150px;
}
.pageCoffe__intro .contentBox .contentHeader {
  display: flex;
  align-items: flex-end;
}
.pageCoffe__intro .contentBox .contentHeader .title {
  padding-right: 18px;
}
.pageCoffe__intro .contentBox .contentHeader .title h2 {
  color: #000;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 95%; /* 57px */
  letter-spacing: -1.2px;
}
.pageCoffe__intro .contentBox .contentHeader .title .line {
  background: #000;
  width: 561px;
  height: 10px;
}
.pageCoffe__intro .contentBox .contentHeader h4 {
  color: #252121;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 109%; /* 28.34px */
  letter-spacing: -0.52px;
  position: relative;
  top: 10px;
  margin: 0;
}
.pageCoffe__intro .contentBox .contentTxt {
  display: flex;
  align-items: center;
  gap: 70px;
  padding-top: 70px;
}
.pageCoffe__intro .contentBox .contentTxt .imgBox {
  background-repeat: no-repeat;
  background-size: cover;
  width: 360px;
  height: 540px;
}
.pageCoffe__intro .contentBox .contentTxt .txt {
  max-width: 708px;
}
.pageCoffe__intro .contentBox .contentTxt .txt p {
  color: #221f1f;
  font-size: 30px;
  font-style: normal;
  font-weight: 300;
  line-height: 148%; /* 44.4px */
  letter-spacing: -0.6px;
  margin-bottom: 32px;
}

.imgEffect {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
}
@media (max-width: 1199px) {
  .imgEffect {
    width: 100%;
  }
}
.imgEffect:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.cardEffect {
  box-shadow: 0 4px 10px rgba(22, 17, 3, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.cardEffect:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.295);
}

.page-template-page-default .header,
.single-blog .header {
  background: rgba(0, 0, 0, 0.85);
  transition: background 0.3s, position 0.3s;
  position: relative;
}
.page-template-page-default .content-default,
.single-blog .content-default {
  padding: 180px 0 90px;
}
.page-template-page-default main,
.single-blog main {
  padding: 80px 0;
}

.btnContacto {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btnContacto:hover {
  background: #5a2a57;
  color: white !important;
}
.btnContacto img {
  max-width: 24px;
}

.header {
  transition: background 0.3s, position 0.3s;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 24px;
}
.header > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1090px;
  padding: 0 32px;
  border-radius: 50px;
  background: #000;
}
.header .logo {
  max-width: 110px;
}
@media (max-width: 1199px) {
  .header .logo {
    max-width: 110px;
  }
}
@media (min-width: 1200px) {
  .header .openMenu {
    display: none !important;
  }
}
@media (max-width: 1199px) {
  .header nav {
    display: none;
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    background: white;
    padding: 48px 0;
    z-index: 1;
  }
  .header nav.active {
    display: block;
    right: 0;
  }
}
.header nav .closeMenu {
  position: absolute;
  top: 16px;
  right: 16px;
}
@media (min-width: 1200px) {
  .header nav .closeMenu {
    display: none !important;
  }
}
.header .primary-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 1199px) {
  .header .primary-menu {
    flex-direction: column;
  }
}
.header .primary-menu li a {
  color: white;
  padding: 12px;
  border-radius: 4px;
  font-size: 22px;
  line-height: normal;
  letter-spacing: -0.44px;
  font-weight: 400;
}
@media (max-width: 1199px) {
  .header .primary-menu li a {
    color: #666;
  }
}
.header .primary-menu li a:hover {
  background: #0b0b0b;
  color: white;
  opacity: 1;
}
.header .iconsHeader {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header .iconsHeader .cart-count-badge {
  color: white;
  font-weight: bold;
}
.header .iconsHeader__item {
  display: flex;
  align-items: center;
  transition: transform 0.2s ease;
}
.header .iconsHeader__item:hover {
  transform: scale(1.05);
}
.header .iconsHeader__icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.banner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: relative;
}
.banner::before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.68);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.banner-slick .slick-dots {
  bottom: 60px;
  z-index: 1;
}
.banner-slick .slick-dots li button:before {
  font-size: 24px;
  width: 32px;
  height: 32px;
  color: white;
}
.banner > .container {
  position: relative;
}
.banner h1 {
  text-align: center;
  margin: 16px auto;
  color: white;
}
.banner h2,
.banner h3,
.banner h4 {
  color: white;
}
.banner__txt {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}
.banner__txt h2 {
  font-weight: 500;
}
.banner__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
  gap: 24px;
}
@media (max-width: 1199px) {
  .banner__btns {
    flex-direction: column;
  }
}
.banner__btns .btn {
  padding: 16px 24px;
}

.footer__top {
  background: #141414;
}
.footer__top > .container {
  display: flex;
  justify-content: space-between;
  border-bottom: 4px solid #c7a14a;
  padding: 40px 0;
}
@media (max-width: 1199px) {
  .footer__top > .container {
    flex-direction: column;
    padding: 24px 16px;
    gap: 48px;
  }
}
.footer__top .logos {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1199px) {
  .footer__top .logos {
    align-items: center;
    text-align: center;
  }
}
.footer__top .logos p {
  color: white;
}
.footer__top .logos .logo-ppr {
  max-width: 300px;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .footer__top .logos .logo-ppr {
    margin: 0;
  }
}
.footer__top .txt {
  text-align: center;
}
.footer__top .txt .linksSocials {
  padding-bottom: 16px;
}
.footer__top .txt .linksSocials > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.footer__top .txt .linksSocials img {
  filter: brightness(0) invert(1);
}
.footer__top .txt * {
  color: white;
}
.footer__top .txt .btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: center;
}
@media (max-width: 1199px) {
  .footer__top .txt .btns {
    align-items: center;
  }
}
.footer__top .txt .btns .btn {
  background: white;
  color: #666;
  min-width: 207px;
  opacity: 1;
}
.footer__top .txt .btns.contacto {
  flex-direction: row;
}
.footer__top .txt .btns.contacto .btn {
  background: white;
  max-width: 32px;
  max-height: 32px;
  text-align: center;
  min-width: inherit;
}
.footer__bottom {
  text-align: center;
  background: #141414;
  padding: 24px 0;
}
@media (max-width: 1199px) {
  .footer__bottom {
    padding: 24px 16px;
  }
}
.footer__bottom p {
  margin: 0;
  color: white;
}