@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Work+Sans:wght@400;500;600&display=swap");

:root {
  --cor-base: #000;
  --cor-texto: #000;
  --cor-texto-secundario: #878787;
  --cor-bordas: #e5e5e5;
  --secondary-50: #f6f7f8;
  --secondary-100: #e8eaed;
  --secondary-200: #dfe2e6;
  --secondary-400: #a0abb5;
  --secondary-500: #718191;
  --secondary-700: #3d4a57;
  --secondary-800: #2c3640;
  --secondary-1000: #111;
  --pix: #2dbdaf;
  --whats: #009688;
  --star: #f2c832;
  --container: 1240px;
  --header-pad-x: 60px;
  --buy: #5e9941;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  color: #000;
  background: #fff;
  line-height: 1.4;
  min-height: 100vh;
}

img,
video,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font-family: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.container {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: -1px;
  z-index: 999;
  background: #fff;
  font-family: "Work Sans", sans-serif;
  padding: 15px 60px;
  box-shadow: none;
  transition: padding 0.25s linear, box-shadow 0.25s linear;
}

.site-header.scroll {
  padding: 10px 60px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.header-inner {
  max-width: 1700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 84px;
}

.logo-link {
  display: flex;
  max-width: 250px;
}

.logo-link img {
  width: 250px;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  transition: max-height 0.25s linear;
}

.site-header.scroll .logo-link img {
  max-height: 56px;
}

.nav-root {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.nav-root a {
  color: #000 !important;
  font-size: 16px;
  padding: 15px 8px;
  margin: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.nav-root a:hover {
  background: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  color: #111;
  position: relative;
}

.icon-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.menu-toggle {
  display: none;
}

.cart-badge {
  position: absolute;
  right: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.cart-badge.pulse {
  animation: mf-badge-pulse 0.7s ease;
}

@keyframes mf-badge-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.35);
  }
}

/* Search overlay */
.search-overlay {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 30;
  width: 100%;
  height: 160px;
  background: #fff;
  display: flex;
  align-items: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}

.search-overlay.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.search-overlay-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.search-overlay-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
  color: #718191;
}

.search-form {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #e8eaed;
  padding-bottom: 8px;
}

.search-form input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 18px;
  padding: 8px 0;
}

.search-form input::placeholder {
  color: #555;
}

.search-form button,
.search-form .mic {
  background: none;
  border: 0;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3d4a57;
}

.search-form svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Login dropdown */
.login-wrap {
  position: relative;
}

.login-dropdown {
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: 230px;
  background: #fff;
  border-top: 2px solid #000;
  border-radius: 2px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 20px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 20;
}

.login-wrap:hover .login-dropdown,
.login-dropdown.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.login-dropdown p {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.btn-entrar {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background: #000;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 8px;
}

.login-dropdown .small-link {
  display: block;
  font-size: 13px;
  padding: 5px;
  color: #000;
}

.login-dropdown .small-link strong {
  font-weight: 700;
}

.login-dropdown .small-link strong:hover {
  text-decoration: underline;
}

/* Cart drawer */
.cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: 430px;
  max-width: 100%;
  background: #fff;
  z-index: 2000;
  transform: translateX(110%);
  transition: transform 0.45s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-top {
  background: #000;
  color: #fff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  text-transform: uppercase;
}

.cart-top button {
  background: none;
  border: 0;
  color: #fff;
  cursor: pointer;
}

.cart-top svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #718191;
}

.overlay-bg {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.15s;
}

.overlay-bg.open {
  opacity: 1;
  visibility: visible;
}

/* ========== MAIN ========== */
.breadcrumb {
  text-align: center;
  padding: 10px 0;
  font-size: 0.75em;
  color: var(--cor-texto-secundario);
  line-height: 14px;
}

.breadcrumb a {
  color: var(--cor-texto-secundario);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb .sep {
  display: inline-block;
  padding: 0 5px;
}

.breadcrumb .sep::before {
  content: ">";
}

.promo {
  margin-top: 20px;
  padding: 25px;
  background: #000;
  color: #fff;
  text-align: center;
}

.promo h1 {
  font-size: 2em;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
}

.promo .desc {
  text-transform: uppercase;
  font-size: 0.875em;
  position: relative;
  display: flex;
  justify-content: center;
  margin: 8px 0 0;
}

.promo .desc::before {
  content: "";
  position: absolute;
  bottom: -13px;
  background: #fff;
  padding: 3px 35px;
  width: 80px;
}

.promo .obs {
  margin-top: 25px;
  font-size: 0.875em;
  line-height: 19px;
}

.box-pesquisa {
  padding: 15px;
  margin-bottom: 30px;
}

.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.toolbar .count {
  color: var(--cor-texto-secundario);
  font-size: 0.9375em;
}

.toolbar select {
  width: 190px;
  height: 35px;
  border: 1px solid var(--cor-bordas);
  font-size: 0.8125em;
  color: var(--cor-texto-secundario);
  background: #fff;
  padding-left: 5px;
}

/* ========== PRODUCT GRID ========== */
.product-list {
  display: flex;
  flex-wrap: wrap;
}

.product-card {
  position: relative;
  width: 31.81%;
  margin-right: 2.27%;
  margin-top: 10px;
  border: 1px solid #e8eaed;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  animation: mf-card-in 0.45s ease both;
}

.product-card:nth-child(3n) {
  margin-right: 0;
  animation-delay: 0.12s;
}

.product-card:nth-child(3n + 2) {
  animation-delay: 0.06s;
}

@keyframes mf-card-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.product-card > a {
  display: block;
  width: 100%;
  color: inherit;
}

.product-card figure {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0;
  background: #fff;
}

.product-card figure img,
.product-card figure video {
  width: 100%;
  height: auto;
  aspect-ratio: 420 / 633;
  object-fit: contain;
  display: block;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.product-card figure .img-hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.05);
}

.product-card:hover .img-main,
.product-card.is-hover .img-main {
  transform: scale(1.05);
}

.product-card.has-hover:hover .img-main,
.product-card.has-hover.is-hover .img-main {
  opacity: 0;
}

.product-card:hover .img-hover,
.product-card.is-hover .img-hover {
  opacity: 1;
}

.tag-on-image {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
}

.tag {
  display: inline-block;
  background: #000;
  color: #fff;
  font-size: 12px;
  line-height: 18px;
  padding: 1px 8px;
  border-radius: 5px;
  text-transform: uppercase;
  margin: 0 4px 5px 0;
}

.sizes-hover {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding-top: 8px;
  overflow: hidden;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  pointer-events: none;
}

.product-card:hover .sizes-hover,
.product-card.is-hover .sizes-hover {
  transform: translateY(0);
}

.size-chip {
  display: inline-block;
  background: #fff;
  border: 1px solid #a0abb5;
  border-radius: 3px;
  color: #000;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 23px;
  height: 25px;
  padding: 0 10px;
  margin: 0 8px 8px 0;
}

.product-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  font-family: Montserrat, sans-serif;
}

.product-name {
  color: #000;
  font-weight: 600;
  font-size: 0.938em;
  letter-spacing: -0.4px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2em;
  min-height: 30px;
}

.tags-below {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 12px;
  width: 100%;
}

.rating {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
  gap: 4px;
}

.average-rating {
  display: inline-block;
  position: relative;
  color: transparent;
  font-size: var(--size, 23px);
  line-height: var(--size, 23px);
}

.average-rating::before {
  content: "★★★★★";
  display: flex;
  color: rgba(121, 121, 121, 0.2);
  background: linear-gradient(90deg, #f2c832 var(--percent, 100%), rgba(0, 0, 0, 0.15) var(--percent, 100%));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.qtd-aval {
  font-size: 0.8125em;
  color: #666;
}

.price-pix {
  font-size: 1.125em;
  font-weight: 600;
  color: var(--pix);
}

.price-pix-row {
  text-align: center;
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}

.price-from {
  text-decoration: line-through;
  color: #9a9a9a;
  font-size: 0.85em;
  font-weight: 500;
}

.off-badge {
  display: inline-block;
  background: #e40055;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 2px 6px;
  border-radius: 2px;
  line-height: 1.3;
}

.price-pix-block .price-from,
.price-card-block .price-from {
  font-size: 13px;
  margin-bottom: 2px;
}

.price-text {
  font-size: 0.875em;
  color: #000;
}

.price-card {
  text-align: center;
  font-size: 0.875em;
  color: #000;
  line-height: 0.875em;
  margin-top: 2px;
}

.btn-comprar-vitrine {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 20px);
  margin: 8px 10px 12px;
  height: 40px;
  background: var(--buy, #5e9941);
  color: #fff !important;
  font-size: 0.875em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-comprar-vitrine:hover {
  background: #4e8536;
  transform: scale(1.02);
}

.btn-comprar-vitrine:active {
  transform: scale(0.97);
}

/* Pagination */
.paginacao {
  height: 53px;
  background: #fff;
  text-align: center;
  margin-top: 26px;
}

.paginator {
  position: relative;
  top: 15%;
  display: inline-flex;
  padding: 0;
  margin: 0;
}

.paginator li {
  display: inline-block;
  width: 35px;
  height: 35px;
  font-size: 0.75em;
  border: 1px solid #e5e5e5;
  background: #fff;
  line-height: 35px;
  margin: 0 2px;
  text-align: center;
  border-radius: 2px;
}

.paginator li a {
  display: block;
  color: #1a2026;
  cursor: pointer;
}

.paginator li.selected,
.paginator li:hover {
  border: 2px solid #000;
  line-height: 33px;
}

.paginator li.selected a,
.paginator li:hover a {
  font-weight: 700;
}

.paginator li.nav {
  position: relative;
}

.paginator li.nav a {
  text-indent: -50000px;
  font-size: 0;
}

.paginator li.nav a::after {
  position: absolute;
  top: 12px;
  right: 14px;
  display: block;
  width: 5px;
  height: 11px;
  content: " ";
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #878787;
}

/* ========== SEO CONTENT ========== */
.conteudo-adicional {
  margin: 20px auto 20px;
  padding: 10px;
  color: #252525;
}

.mf-secao {
  --altura-imagem: 640px;
  display: flex;
  align-items: stretch;
  gap: 32px;
  padding: 40px 20px;
}

.mf-secao__imagem {
  flex: 0 0 33.333%;
  width: 33.333%;
  height: var(--altura-imagem);
}

.mf-secao__imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.mf-secao__conteudo {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mf-secao__conteudo h2 {
  font-size: 1.675em;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.mf-secao__conteudo p {
  font-size: 1em;
  color: #666;
  line-height: 1.55;
  margin-bottom: 20px;
}

.mf-secao__conteudo p:last-of-type {
  margin-bottom: 0;
}

.mf-diferenciais {
  padding: 8px 20px 0;
}

.mf-diferenciais__viewport {
  overflow: hidden;
}

.mf-diferenciais__track {
  display: flex;
  width: 266.6667%;
  margin: 0 -12px;
  animation: mf-avanca 20s ease-in-out infinite;
}

.mf-diferencial {
  flex: 0 0 12.5%;
  box-sizing: border-box;
  padding: 0 12px;
  text-align: left;
}

.mf-diferencial__imagem {
  width: 100%;
  aspect-ratio: 5 / 3;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
  background: #f2ede6;
}

.mf-diferencial__imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mf-diferencial h3 {
  font-size: 0.875em;
  font-weight: 700;
  margin-bottom: 8px;
}

.mf-diferencial p {
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  color: #666;
}

@keyframes mf-avanca {
  0%,
  22% {
    transform: translateX(0);
  }
  25%,
  47% {
    transform: translateX(-12.5%);
  }
  50%,
  72% {
    transform: translateX(-25%);
  }
  75%,
  97% {
    transform: translateX(-37.5%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ========== FOOTER ========== */
.site-footer {
  background: #fff;
}

.footer-middle {
  background: #f6f7f8;
}

.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr 1.1fr 280px;
  gap: 32px 48px;
  padding: 32px 8px;
  align-items: start;
}

.footer-logo img {
  width: 200px;
  height: auto;
  max-width: 200px;
}

.footer-col h3 {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-col a {
  font-size: 14px;
}

.footer-col a:hover {
  text-decoration: underline;
}

.selos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.selos img {
  height: auto;
}

.pay-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}

.pay-icons img {
  width: 38px;
  height: 38px;
}

.contato-list li a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}

.contato-list img,
.contato-list svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.social-row {
  max-width: 920px;
  margin: 0 auto;
  border-top: 1px solid var(--secondary-200);
  padding: 32px 0;
  display: flex;
  justify-content: center;
}

.app-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0 24px;
}

.app-row h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.app-banners {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.app-banners img {
  height: 43px;
  width: 148px;
  object-fit: contain;
}

.legal {
  border-top: 1px solid var(--secondary-100);
  padding: 20px;
  text-align: center;
  font-size: 12px;
  color: #2c3640;
  line-height: 1.6;
}

.partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 16px 24px;
  border-top: 1px solid var(--secondary-100);
  background: #f6f7f8;
}

.partners img {
  height: 34px;
  width: auto;
}

/* Floats */
.whats-float {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 1200;
  width: 55px;
  height: 55px;
  border-radius: 50px;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: default;
  pointer-events: auto;
}

.whats-float svg {
  width: 32px;
  height: 32px;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 80px;
  z-index: 1100;
  width: 40px;
  height: 40px;
  background: #e8eaed;
  border: 0;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.back-to-top.opened {
  display: flex;
}

.back-to-top::before {
  content: "";
  width: 10px;
  height: 10px;
  border-left: 2px solid #333;
  border-top: 2px solid #333;
  transform: rotate(45deg);
  margin-top: 4px;
}

.mobile-nav {
  display: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .site-header {
    padding: 8px 16px;
  }

  .nav-root {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-actions {
    gap: 8px;
  }

  .logo-link img {
    width: 180px;
  }

  .product-card {
    width: 48.5%;
    margin-right: 3%;
  }

  .product-card:nth-child(3n) {
    margin-right: 3%;
  }

  .product-card:nth-child(2n) {
    margin-right: 0;
  }

  .mobile-nav.open {
    display: flex;
    position: fixed;
    inset: 0 30% 0 0;
    background: #fff;
    z-index: 1800;
    flex-direction: column;
    padding: 24px 16px;
    box-shadow: 8px 0 30px rgba(0, 0, 0, 0.15);
    gap: 4px;
  }

  .mobile-nav a {
    padding: 14px 8px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
  }
}

@media (max-width: 900px) {
  .mf-secao {
    flex-direction: column;
  }

  .mf-secao__conteudo {
    order: 1;
  }

  .mf-secao__imagem {
    order: 2;
    width: 100%;
    flex: none;
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .mf-diferenciais__track {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: auto;
    margin: 0;
    animation: none;
    transform: none;
  }

  .mf-diferencial {
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  .mf-diferencial h3 {
    order: 1;
  }

  .mf-diferencial__imagem {
    order: 2;
    margin-top: 8px;
  }

  .mf-diferencial p {
    order: 3;
  }

  .mf-clone {
    display: none;
  }

  .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .footer-logo {
    margin: 0 auto;
    padding: 20px;
  }

  .footer-col {
    border-top: 1px solid #dfe2e6;
  }

  .footer-col h3 {
    background: #e40055;
    color: #fff;
    padding: 10px 12px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  .footer-col h3::after {
    content: "+";
    font-size: 18px;
    font-weight: 400;
  }
  .footer-col.open h3::after {
    content: "–";
  }

  .partners {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 520px) {
  .promo h1 {
    font-size: 1.35em;
  }

  .toolbar {
    flex-direction: column;
    gap: 10px;
    background: #f6f7f8;
    padding: 15px 0;
  }

  .toolbar select {
    width: 93%;
  }

  .product-card,
  .product-card:nth-child(2n),
  .product-card:nth-child(3n) {
    width: 100%;
    margin-right: 0;
  }

  .mf-diferenciais__track {
    grid-template-columns: 1fr;
  }

  .cart-drawer {
    width: 100%;
  }

  .product-name {
    font-size: 0.8125em;
  }
}

/* ========== TOAST / DRAWER ITEMS ========== */
.mf-toast {
  position: fixed;
  left: 50%;
  bottom: 90px;
  transform: translateX(-50%) translateY(20px);
  background: #111;
  color: #fff;
  padding: 12px 18px;
  font-size: 13px;
  z-index: 4000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  border-radius: 2px;
}
.mf-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.cart-drawer .cart-top a { color: #fff; }
#cartDrawerItems { flex: 1; overflow: auto; display: flex; flex-direction: column; }
.drawer-item {
  display: grid;
  grid-template-columns: 72px 1fr 24px;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  font-size: 12px;
}
.drawer-item img { width: 72px; height: 90px; object-fit: cover; background: #f6f6f6; }
.drawer-item strong { display: block; font-size: 12px; line-height: 1.3; margin-bottom: 4px; }
.drawer-item span { display: block; color: #666; }
.drawer-remove { border: 0; background: none; font-size: 20px; cursor: pointer; }
.drawer-total { padding: 16px; border-top: 1px solid #eee; }
.drawer-total .promo-line { color: #5e9941; font-weight: 700; margin-bottom: 8px; }
.drawer-total .promo-hint { color: #888; font-size: 12px; margin-bottom: 8px; }
.btn-checkout, .btn-green {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  background: var(--buy, #5e9941);
  color: #fff !important;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 12px;
  border: 0;
  cursor: pointer;
  width: 100%;
}

/* ========== PRODUCT PAGE ========== */
.pdp { max-width: 1420px; margin: 0 auto; padding: 0 16px 40px; }
.banner-promocao {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #f6f7f8;
  border: 1px solid #e8eaed;
  border-radius: 2px;
  color: #555;
  gap: 16px;
}
.banner-promocao .title { font-size: 18px; }
.banner-promocao .instrucoes { font-size: 14px; white-space: pre-line; }
.btn-promo {
  border: 1px solid #555;
  padding: 4px 12px;
  font-size: 12px;
  white-space: nowrap;
}
.topo-produto { display: flex; gap: 20px; margin-top: 20px; align-items: flex-start; }
.gallery { display: flex; gap: 12px; flex: 1; min-width: 0; }
.thumbs { width: 96px; display: flex; flex-direction: column; gap: 12px; }
.thumbs button {
  border: 1px solid #e8eaed;
  background: #fff;
  padding: 0;
  height: 94px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
}
.thumbs button.active { border-color: #000; }
.thumbs img { width: 100%; height: 100%; object-fit: contain; }
.gallery-main {
  flex: 1;
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
  background: #fff;
  overflow: hidden;
}
.gallery-main img, .gallery-main video {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  cursor: zoom-in;
  transition: transform 0.35s ease;
}
.gallery-tags {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  pointer-events: none;
}
.buy-col { width: 450px; min-width: 320px; }
.buy-col h1 { font-size: 18px; font-weight: 400; margin: 10px 0 16px; }
.price-row { display: flex; gap: 24px; flex-wrap: wrap; }
.price-pix-block { color: #32bcad; }
.price-pix-block .big { font-size: 22px; font-weight: 700; }
.price-card-block { color: #000; }
.price-card-block .big { font-size: 18px; }
.price-card-block .sub { font-size: 12px; line-height: 13px; }
.more-pay {
  display: inline-block;
  margin-top: 16px;
  border: 1px solid #e5e5e5;
  padding: 4px 10px;
  font-size: 12px;
  color: #718191;
  cursor: pointer;
}
.var-title { font-size: 14px; font-weight: 700; margin: 16px 0 8px; }
.size-list { display: flex; gap: 8px; flex-wrap: wrap; }
.size-btn {
  min-width: 30px;
  min-height: 30px;
  border: 1px solid #dfe2e6;
  background: #fff;
  padding: 4px 8px;
  font-size: 13px;
  cursor: pointer;
  border-radius: 2px;
}
.size-btn.selected, .size-btn:hover { box-shadow: 0 0 0 2px #252525; }
.measure-btns { display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.measure-btns button {
  background: #111;
  color: #fff;
  border: 0;
  padding: 8px 12px;
  font-size: 12px;
  cursor: pointer;
}
.qty-buy { display: flex; gap: 15px; margin-top: 16px; }
.qty-box {
  display: flex;
  width: 35%;
  max-width: 150px;
  height: 50px;
  border: 1px solid #e8eaed;
}
.qty-box button { flex: 0 0 40px; border: 0; background: #fff; cursor: pointer; font-size: 18px; }
.qty-box input { width: 100%; border: 0; text-align: center; font-size: 14px; }
.btn-buy {
  flex: 1;
  height: 50px;
  background: var(--buy, #5e9941);
  border: 1px solid var(--buy, #5e9941);
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
}
.frete-box { margin-top: 16px; padding: 10px 0; }
.frete-box label { font-size: 14px; font-weight: 700; }
.frete-row { display: flex; align-items: center; gap: 10px; }
.cep-field { display: flex; flex: 1; border: 1px solid #e8eaed; overflow: hidden; }
.cep-field input { flex: 1; border: 0; padding: 10px; font-size: 14px; outline: 0; }
.cep-field button { border: 0; border-left: 1px solid #e8eaed; background: #fff; font-weight: 700; padding: 0 16px; cursor: pointer; }
.frete-result { margin-top: 8px; font-size: 13px; color: #333; }
.desc-link { display: flex; align-items: center; gap: 10px; margin-top: 10px; font-size: 13px; }
.pdp-desc { max-width: 1240px; margin: 40px auto; padding: 0 16px; }
.pdp-desc h2 { font-size: 20px; margin-bottom: 20px; }
.pdp-desc img { max-width: 100%; height: auto; display: block; margin: 0 auto 16px; }
.modal {
  position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 3000;
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal.open { display: flex; }
.modal-box { background: #fff; max-width: 560px; width: 100%; padding: 24px; position: relative; }
.modal-box h3 { margin-bottom: 12px; }
.modal-box table { width: 100%; border-collapse: collapse; font-size: 13px; }
.modal-box th, .modal-box td { border: 1px solid #e5e5e5; padding: 8px; text-align: center; }
.modal-close { position: absolute; right: 10px; top: 8px; border: 0; background: none; font-size: 22px; cursor: pointer; }

/* ========== CART PAGE ========== */
.cart-page { max-width: 1240px; margin: 30px auto 60px; padding: 0 16px; }
.cart-page h1 { font-size: 28px; margin-bottom: 20px; }
.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 28px; }
.cart-line {
  display: grid;
  grid-template-columns: 90px 1fr 120px 120px 32px;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}
.cart-line img { width: 90px; height: 120px; object-fit: cover; background: #f6f6f6; }
.cart-summary { background: #f6f7f8; padding: 20px; }
.cart-summary h2 { font-size: 16px; margin-bottom: 12px; }
.cart-summary p { display: flex; justify-content: space-between; margin: 8px 0; font-size: 14px; }
.cart-summary .total { font-size: 18px; font-weight: 700; border-top: 1px solid #ddd; padding-top: 12px; margin-top: 12px; }
.cart-empty-page { text-align: center; padding: 80px 20px; }
.cart-empty-page h2 { margin-bottom: 8px; }

/* ========== CHECKOUT ========== */
.checkout { max-width: 1100px; margin: 30px auto 70px; padding: 0 16px; }
.steps { display: flex; gap: 8px; margin-bottom: 24px; font-size: 13px; text-transform: uppercase; }
.steps span { padding: 8px 14px; background: #f6f7f8; color: #888; }
.steps span.active { background: #000; color: #fff; }
.checkout-grid { display: grid; grid-template-columns: 1fr 340px; gap: 28px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.field label { font-size: 12px; font-weight: 700; }
.field input, .field select {
  height: 42px; border: 1px solid #dfe2e6; padding: 0 10px; font-size: 14px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pay-option {
  border: 1px solid #dfe2e6;
  padding: 14px;
  margin-bottom: 10px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  width: 100%;
  text-align: left;
  background: #fff;
  font: inherit;
  color: inherit;
}
.pay-option.selected { border-color: #000; box-shadow: 0 0 0 1px #000; }
.pay-option.disabled { opacity: 0.55; cursor: not-allowed; position: relative; background: #fafafa; }
.pay-disabled-msg {
  display: block;
  font-size: 12px;
  color: #b42318;
  font-weight: 700;
  margin-top: 4px;
}
.pix-box { border: 1px dashed #32bcad; padding: 16px; margin-top: 12px; text-align: center; }
.pix-box img { width: 180px; height: 180px; margin: 8px auto; display: block; }
.pix-code { font-size: 11px; word-break: break-all; background: #f6f7f8; padding: 10px; margin: 10px 0; }
.pix-wait, .pix-status { color: #32bcad; font-weight: 700; margin: 8px 0; }
.pix-status.ok { color: #5e9941; }
.pix-expira { font-size: 12px; color: #666; }
.pix-error { border-color: #b42318; }
.pix-error p { margin: 8px 0; color: #333; }
.order-ok { text-align: center; padding: 50px 16px; }
.order-ok h1 { font-size: 28px; margin-bottom: 8px; }

.inst-page { max-width: 860px; margin: 30px auto 70px; padding: 0 16px; }
.inst-page h1 { font-size: 28px; margin-bottom: 12px; }
.inst-lead { color: #666; margin-bottom: 20px; }
.inst-page h2 { font-size: 18px; margin: 24px 0 8px; }
.inst-page p, .inst-page li { font-size: 14px; line-height: 1.6; color: #333; }
.inst-page ul { margin: 8px 0 16px 18px; list-style: disc; }
.auth-box { max-width: 420px; margin: 40px auto 80px; padding: 0 16px; }
.auth-box h1 { font-size: 26px; margin-bottom: 8px; }
.auth-switch { font-size: 13px; color: #666; margin: 12px 0 20px; }
.auth-switch a { text-decoration: underline; }
.track-card, .aval-card {
  display: flex; gap: 12px; align-items: center; justify-content: space-between;
  border: 1px solid #e8eaed; padding: 12px; margin-top: 10px; flex-wrap: wrap;
}
.aval-card img { width: 56px; height: 72px; object-fit: cover; background: #f6f6f6; }
.aval-card { justify-content: flex-start; }
.aval-list { display: flex; flex-direction: column; gap: 0; }

@media (max-width: 900px) {
  .topo-produto, .cart-layout, .checkout-grid { grid-template-columns: 1fr; display: flex; flex-direction: column; }
  .buy-col { width: 100%; min-width: 0; }
  .gallery { flex-direction: column-reverse; }
  .thumbs { flex-direction: row; width: 100%; overflow: auto; }
  .thumbs button { width: 72px; height: 72px; flex: 0 0 72px; }
  .cart-line { grid-template-columns: 70px 1fr; }
  .gallery-main { cursor: default; min-height: 0; grid-template-columns: 1fr; }
}

.full-banner {
  width: 100%;
  overflow: hidden;
  background: #f6f4f1;
  animation: mf-banner-in 0.7s ease both;
}

.full-banner img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes mf-banner-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #e40055;
  color: #fff;
}

.footer-top .item {
  padding: 18px 16px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-top .item:last-child {
  border-right: 0;
}

.footer-top strong {
  display: block;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-top span {
  display: block;
  font-size: 12px;
  opacity: 0.9;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top .item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
}
