/* ==========================================================================
   Act Tema 2026 - Global Styles
   ========================================================================== */

/* 1. Reset & Variables
   ========================================================================== */
:root {
  --header-height: 166px;
  --spacing-sm: 10px;
  --spacing-md: 20px;
  --spacing-lg: 40px;
  --spacing-xl: 100px;
  --border-radius: 8px;

  --container-width: 1200px;
  --container-width-xxl: calc(1536px + var(--spacing-md));

  /*  
        --color-primary: #ea7c90;
        --color-secondary: #f1ceda;
        --color-accent: #d94140;
        --color-text: #41332f;
        --color-bg: #ffffff;
        --color-custom-01: #000000;
        --color-custom-02: #ffffff;
        --color-custom-03: #7e7e7e;

        --font-main: "Poppins", sans-serif;
        --font-heading: "Send+Flowers", sans-serif;
    */

  /* --font-main: system-ui, -apple-system, sans-serif; */
}

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

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.1;
  font-size: var(--fs-6);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-secondary);
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  margin-bottom: var(--spacing-md);
  font-weight: 500;
  line-height: 1.2;
}

h1 *,
h2 *,
h3 *,
h4 *,
h5 *,
h6 * {
  font-family: var(--font-heading);
}

h1 {
  font-size: var(--fs-1);
  color: var(--color-primary);
}

h2 {
  font-size: var(--fs-2);
  color: var(--color-secondary);
}

h3 {
  font-size: var(--fs-3);
  color: var(--color-accent);
}

h4 {
  font-size: var(--fs-4);
  color: var(--color-text);
}

h5 {
  font-size: var(--fs-5);
  color: var(--color-bg);
}

h6 {
  font-size: var(--fs-6);
  color: var(--color-primary);
}

/* 2. Layout Utilities
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container-xxl {
  width: 100%;
  max-width: var(--container-width-xxl);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.d-none {
  display: none;
}

.pl-md {
  padding-left: var(--spacing-md);
}

.pr-md {
  padding-right: var(--spacing-md);
}

.px-md {
  padding-left: var(--spacing-md);
  padding-right: var(--spacing-md);
}

.pl-lg {
  padding-left: var(--spacing-lg);
}

.pr-lg {
  padding-right: var(--spacing-lg);
}

.px-lg {
  padding-left: var(--spacing-lg);
  padding-right: var(--spacing-lg);
}

.my-2 {
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.my-md {
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.my-lg {
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.my-xl {
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

/* 4. Main Content
   ========================================================================== */
#site-content {
  min-height: 60vh;
}

/* 5. Accessibility & Print
   ========================================================================== */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

a.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--color-primary);
  color: #fff;
  padding: 10px;
  z-index: 9999;
}

a.skip-link:focus {
  top: 0;
}

#backToTop {
  display: none;
  position: fixed;
  bottom: 160px;
  right: 51px;
  color: #fff;
  border: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  cursor: pointer;
  opacity: 1;
  font-size: var(--fs-5);
  background-color: var(--color-primary);
  z-index: 99;
  transition: all 0.4s;
}

#backToTop.show {
  display: flex;
}

#backToTop:hover {
  background-color: var(--color-primary);
  opacity: 1;
  color: #fff;
}

#backToTop:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Dashicons Helpers */
.dashicons {
  width: 20px;
  height: 20px;
  font-size: var(--fs-5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

.social-icon .dashicons,
.email-icon .dashicons,
.phone-item .dashicons {
  color: inherit;
}

span.social-icon,
span.email-icon,
span.phones-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FORMULARIO */
.wpcf7-form {
  max-width: 800px;
  margin: auto;
}

.formulario.row {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1rem;
  row-gap: 0.3125rem;
}

.formulario .col-12 {
  width: 100%;
  max-width: 100%;
}

.formulario .col-12.col-lg-6 {
  width: 100%;
  max-width: calc(50% - 0.5rem);
}

.formulario .select_form p > span {
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

.formulario .select_form p > span:after {
  content: "\f107";
  font-size: var(--fs-6);
  font-family: "FontAwesome";
  display: flex;
  position: absolute;
  right: 0;
  color: var(--color-text);
  z-index: 0;
  transition: all 0.4s;
}

.formulario .select_form p > span.ativo:after {
  transform: rotate(180deg);
}

.formulario .select_form select {
  font-size: var(--fs-6);
  color: var(--color-text);
  background-color: transparent;
  border-radius: 0;
  border: none;
  border-bottom: 2px solid var(--color-text);
  padding: 0.75rem 0;
  width: 100%;
  min-height: 50px;
  position: relative;
  z-index: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}

.formulario .select_form select option {
  color: var(--color-text);
}

.formulario > div {
  margin-bottom: 1.5rem;
}

.formulario > div:last-child {
  margin-bottom: 0;
}

.formulario p {
  margin-bottom: 0;
  position: relative;
}

.formulario p span {
  display: block;
  margin: 0;
}

.formulario p span.wpcf7-spinner {
  position: absolute;
  right: -24px;
  top: calc(50% - 12px);
}

span.wpcf7-not-valid-tip {
  position: absolute;
  bottom: -14px;
  font-size: 0.75rem;
}

.formulario textarea,
.formulario input {
  background-color: transparent;
  border-radius: 5px;
  border: none;
  padding: 1rem 1.5rem;
  width: 100%;
  min-height: 60px;
  color: var(--color-text);
  font-size: var(--fs-6);
  border: 1px solid var(--color-secondary);
  background-color: transparent;
  font-family: var(--font-main);
}

textarea[aria-invalid="true"] {
  border-color: rgb(255, 44, 0) !important;
}

.formulario textarea::placeholder,
.formulario input::placeholder {
  color: var(--color-text);
  font-size: var(--fs-6);
}

.formulario .btn-form {
  border: none;
  color: var(--color-custom-02);
  font-size: var(--fs-5);
  font-weight: bold;
  border-radius: 5px;
  padding: 0.625rem 0.625rem;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  gap: 1.5rem;
  text-align: center;
  width: 100%;
  min-height: 70px;
  background: linear-gradient(
    to right,
    var(--color-secondary) 50%,
    var(--color-secondary) 50%
  );
  background-size: 205% 100%;
  background-position: right bottom;
  opacity: 1;
  transition: all 0.5s ease-out;
}

.formulario .btn-form:not(:disabled):hover {
  color: var(--color-custom-02);
  opacity: 1;
  background-position: left bottom;
  border-color: var(--color-primary);
}

.formulario .form_politica span.wpcf7-list-item > label {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.formulario .form_politica span.wpcf7-list-item > label input {
  width: auto;
}

/* FIM FORMULARIO */

/* Components */

.custom-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(375px, 1fr));
  gap: 1rem;
}

.custom-cards .custom-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  max-width: 615px;
  margin: 0 auto;
}

.custom-cards .custom-card,
.custom-cards .custom-card * {
  transition: all 0.4s;
}

.custom-cards .custom-card:hover {
  transform: scale(1.05);
}

.custom-cards .custom-card .custom-card__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.custom-cards .custom-card .custom-card__bg img {
  border-radius: 5px;
}

.custom-cards .custom-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  padding: 6px;
  color: var(--color-custom-02);
  text-decoration: none;
  min-height: 50px;
  background-color: var(--color-accent);
  width: 100%;
  max-width: 180px;
  border-radius: 5px;
}

.custom-cards .custom-card:hover a {
  color: var(--color-text);
  background-color: var(--color-custom-02);
}

.custom-cards .custom-card-conteudo {
  padding-left: 3rem;
  min-width: 240px;
}

.custom-cards .custom-card__image img {
  max-width: 100%;
  display: block;
}

.custom-cards .custom-card__title {
  font-weight: bold;
  color: var(--color-custom-02);
  margin-top: 16px;
  font-family: var(--font-main);
}

.mala-modal-layout *:not(.mala-title) {
  font-family: var(--font-family-base);
}

/* ============================================================================
   WOOCOMMERCE
   ============================================================================ */
ul.wc-block-components-product-details:last-child {
  background: red;
}

.woo-archive {
  padding: 60px 0;
}

.woo-archive .woo-archive-header {
  margin-bottom: 40px;
}

.woo-archive .woo-archive-header .wpc-filter-header,
.woo-archive-controls p.woocommerce-result-count,
.woo-archive-title-wrapper {
  display: none;
}

.woo-archive .woo-archive-header .wpc-filters-section,
.woo-archive .woo-archive-header .wpc-filter-content select,
.woo-archive .woo-archive-header .woocommerce-ordering {
  margin-bottom: 0 !important;
}

.woo-archive .woo-archive-header,
.wpc-filters-widget-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.wpc-filters-widget-wrapper {
  width: 100%;
  max-width: 550px;
}

.woo-archive .woo-archive-header {
  justify-content: space-between;
  border: 1px solid #eeeeee;
  padding-right: 1.5rem;
}

.woo-archive .woo-archive-header .woo-archive-filter {
  width: 100%;
  max-width: 166px;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  color: var(--color-custom-02);
  background: var(--color-accent);
  border: none;
}

.woo-archive .woo-archive-header select {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--color-text);
}

.woo-archive-title {
  font-size: var(--fs-3);
  font-weight: 700;
  margin: 0 0 16px;
}

.woo-archive-description {
  color: #666;
  margin-bottom: 20px;
}

/* Grid de Produtos */
.slider_product .swiper-button-prev {
  left: 0;
}

.slider_product .swiper-button-next {
  right: 0;
}

.slider_product .swiper-button-prev.swiper-button-lock,
.slider_product .swiper-button-next.swiper-button-lock {
  display: none;
}

.slider_product .swiper-button-prev,
.slider_product .swiper-button-next {
  background: var(--color-primary);
  color: var(--color-custom-02);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  width: 35px;
  height: 65px;
}

.products.columns-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.slider_product {
  overflow: hidden;
  padding: 1rem;
  max-width: 1782px;
  margin-left: auto;
  margin-right: auto;
}

.slider_product .products {
  display: flex;
  gap: 0;
}

.slider_product .products {
  margin: 0 !important;
  padding: 0 !important;
}

.slider_product .product-card {
  flex-shrink: 0;
}

/* Card do Produto */
.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.product-card article {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Imagem */
.product-card__image-link {
  display: block;
  text-decoration: none;
}

.product-card__image {
  position: relative;
  width: 100%;
  /* padding-bottom: 100%; */
  overflow: hidden;
}

.product-card__image img {
  /* position: absolute;
    top: 0;
    left: 0; */
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

/* Conteúdo */
.product-card__content {
  padding: 1.25rem;
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 0.625rem;
  text-align: center;
  flex: 1;
}

/* Título */
.product-card__title {
  margin-bottom: 0;
}

.product-card__title a,
.product-card__title {
  font-size: var(--fs-6);
  font-family: var(--font-main);
  display: block;
  color: var(--color-text);
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.product-card__title a:hover {
  color: var(--color-primary, #ef7912);
}

/* Preços */
.product-card__price-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

.product-card__price {
  /* pix desativado */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: var(--fs-4);
  max-width: 100%;
  /* pix desativado */

  font-weight: bold;
  color: var(--color-primary, #ef7912);
}

.product-card__price span.screen-reader-text {
  position: unset !important;
}

/* pix desativado */
article.has-price-range .product-card__price > span.woocommerce-Price-amount {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

article.has-price-range
  .product-card__price
  > span.woocommerce-Price-amount:first-child::before {
  content: "A partir de: ";
  font-size: var(--fs-6);
  color: var(--color-text);
  font-weight: 400;
}

.pswp,
article.has-price-range .product-card__price > span:nth-child(2),
article.has-price-range
  .product-card__price
  > span.woocommerce-Price-amount:nth-last-of-type(2) {
  display: none;
}

.product-card__price del {
  font-size: var(--fs-6);
  color: var(--color-custom-03);
}

.product-card__price ins {
  text-decoration: none;
}

/* pix desativado */

/* Desconto PIX */
.product-card__pix-discount {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-card__original-price {
  text-decoration: line-through;
}

.product-card__discounted-price {
  font-size: var(--fs-5);
  font-weight: bold;
  color: var(--color-primary, #ef7912);
  display: flex;
  justify-content: center;
  gap: 0.3125rem;
}

/* Parcelamento */
.product-card__installments {
  font-size: 0.875rem;
}

dl {
  display: grid;
  grid-template-columns: 150px 1fr;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0;
}

/* ============================================================================
   WOOCOMMERCE MESSAGES & ALERTS
   ============================================================================ */
.woocommerce-notices-wrapper {
  max-width: var(--container-width);
  margin: 0 auto;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding: 16px 20px 16px 50px;
  margin: 30px auto;
  border-radius: 5px;
  position: relative;
  background-color: #fff;
  box-shadow: 4px 10px 20px rgba(0, 0, 0, 0.09);
  border-left: 5px solid;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: var(--fs-6);
  max-width: 100%;
  /* position: fixed; */
  z-index: 99;
  /* right: 30px; */
  /* top: 30px; */
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
}

/* Success (.woocommerce-message) */
.woocommerce-message {
  border-left-color: #4caf50;
  color: #2e7d32;
}

.woocommerce-message::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234CAF50'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
}

/* Info (.woocommerce-info) */
.woocommerce-info {
  border-left-color: var(--color-primary);
  color: #d2691e;
}

.woocommerce-info::before {
  /* Usando a cor primária #EF7912 codificada para URL (substituir # por %23) */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23EF7912'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z'/%3E%3C/svg%3E");
}

/* Error (.woocommerce-error) */
ul.woocommerce-error {
  list-style: none !important;
}

.woocommerce-error {
  border-left-color: #f44336;
  color: #d32f2f;
}

.woocommerce-error::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f44336'%3E%3Cpath d='M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z'/%3E%3C/svg%3E");
}

/* Buttons inside notices */
.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button {
  margin: 0;
  float: none;
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
  padding: 6px 16px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.2s;
  font-size: 0.9em;
}

.woocommerce-message .button:hover,
.woocommerce-info .button:hover,
.woocommerce-error .button:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

dl {
  display: grid;
  grid-template-columns: 150px 1fr;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0;
}

dl {
  font-size: 0.875rem;
}

/* Botão Adicionar ao Carrinho */
.product-card__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  opacity: 1;
  overflow: hidden;
  height: 0;
  transition: all 0.4s;
}

.btn_card_product {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background: var(--color-primary, #ef7912);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: var(--fs-6);
  max-width: 155px;
  cursor: pointer;
  text-decoration: none;
  margin-top: auto;
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.btn_card_product:hover {
  opacity: 0.9;
}

.product-card .product-card__image-link {
  padding-top: 42px;
  transition: padding-top 0.4s ease;
}

.product-card:hover .product-card__image-link {
  padding-top: 0;
}

.product-card:hover .product-card__actions {
  height: 42px;
}

.product-card:hover .product-card__actions .btn_card_product {
  opacity: 1;
  transform: translateY(0);
}

.product-card__add-to-cart.loading {
  opacity: 0.6;
  pointer-events: none;
}

.product-card__add-to-cart svg {
  width: 20px;
  height: 20px;
}

.btn_card_product:not(.product-card__customize),
.product-card__view-options {
  background: #699360;
  color: var(--color-custom-02, #333);
}

/* Ordenação e Resultados */
.woocommerce-result-count,
.woocommerce-ordering {
  margin-bottom: 20px;
}

.woocommerce-ordering select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.875rem;
}

/* Paginação */
.woocommerce-pagination {
  margin-top: 40px;
  text-align: center;
}

.woocommerce-pagination ul {
  display: inline-flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce-pagination li {
  display: inline-block;
}

.woocommerce-pagination a,
.woocommerce-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: var(--color-text, #333);
  transition: all 0.2s ease;
}

.woocommerce-pagination a:hover {
  background: var(--color-primary, #ef7912);
  color: #fff;
  border-color: var(--color-primary, #ef7912);
}

.woocommerce-pagination span.current {
  background: var(--color-primary, #ef7912);
  color: #fff;
  border-color: var(--color-primary, #ef7912);
}

@media (max-width: 1536px) {
  :root {
    --fs-1: 3rem;
    --fs-2: 2rem;
    --fs-3: 1.625rem;
    --fs-4: 1.25rem;
    --fs-5: 1.125rem;
  }

  .fs-1 {
    font-size: var(--fs-1) !important;
  }

  .fs-2 {
    font-size: var(--fs-2) !important;
  }

  .fs-3 {
    font-size: var(--fs-3) !important;
  }

  .fs-4 {
    font-size: var(--fs-4) !important;
  }

  .fs-5 {
    font-size: var(--fs-5) !important;
  }

  .fs-6 {
    font-size: var(--fs-6) !important;
  }

  .custom-cards .custom-card-conteudo {
    padding-left: 1rem;
    min-width: 175px;
  }
}

@media (max-width: 1399px) {
  :root {
    --header-height: 136px;
  }
}

@media (max-width: 1199px) {
  :not(.slider_product) > .products.columns-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  :root {
    --header-height: 102px;
  }

  .product-card__content {
    padding: 0.75rem;
  }

  :not(.slider_product) > .products.columns-4 {
    gap: 1rem;
  }

  .woo-archive .woo-archive-header {
    border: none;
    background-color: var(--color-accent);
    max-width: max-content;
    margin: 0 auto 2rem;
    padding: 1rem;
  }

  .woo-archive .woo-archive-header .woo-archive-filter {
    background-color: var(--color-custom-02);
    color: var(--color-text);
    min-width: 300px;
    max-width: 100%;
    min-height: 50px;
  }

  .woo-archive .woo-archive-header,
  .wpc-filters-widget-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 767px) {
  :root {
    --fs-1: 2.5rem;
    --fs-2: 1.625rem;
    --fs-3: 1.5rem;
    --fs-4: 1.125rem;
    --fs-5: 1rem;

    --container-width: 1200px;
    --header-height: 166px;
    --spacing-sm: 5px;
    --spacing-md: 10px;
    --spacing-lg: 20px;
  }

  .custom-cards {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }

  .custom-cards .custom-card-conteudo {
    position: absolute;
  }

  .custom-cards .custom-card__image {
    max-width: 60%;
    margin-left: auto;
  }

  #backToTop {
    bottom: 100px;
    right: 30px;
  }

  :not(.slider_product) > .products.columns-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .woo-archive {
    padding: 40px 0;
  }

  .woo-archive-title {
    font-size: var(--fs-4);
  }
}

@media (max-width: 575px) {
  .product-card__content {
    padding: 16px;
  }

  :not(.slider_product) > .products.columns-4 {
    grid-template-columns: 1fr;
  }

  .product-card article {
    flex-direction: row;
    align-items: center;
  }

  .product-card__content {
    text-align: start;
  }

  .product-card__discounted-price,
  .product-card__title a,
  .product-card__title {
    justify-content: start;
  }

  .product-card .product-card__image-link {
    width: 100%;
    min-width: 120px;
    max-width: 120px;
  }

  .product-card__discounted-price {
    flex-wrap: wrap;
  }
}

.btn-custom-menu-item a {
  display: none !important;
}
.missao-visao-valores .act-col.col-md-4.col-12 {
	margin: 1.25rem 0;
}