
html {
  scroll-behavior: smooth;
}

/* BACKGROUND E TIPOGRAFIA GLOBAL */
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background-color: #FAFAFA; /* off white premium */
  color: #1A1A1A; /* grafite elegante */
}

/* HEADER FIXO NO TOPO */
.mz-header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #EDEDED;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* ALINHAMENTO DO CONTEÚDO */
.mz-header-container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO PREMIUM */
.mz-logo span {
  font-size: 1.35rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1A1A1A;
}

/* DIREITA DO HEADER */
.mz-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* BADGE 100% SEGURA */
.mz-secure-badge {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 5px 9px; /* era 6px 10px */
  border-radius: 999px;
  background: #F4EEE3;
  border: 1px solid #D4AF37;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1A1A1A;
  white-space: nowrap;
}

/* MENU HAMBURGUER */
.mz-menu-toggle {
  width: 36px;
 height: 36px;
  border-radius: 999px;
  border: 1px solid #E0E0E0;
  background: #FFFFFF;
  display: flex;
  /* ISSO AQUI É IMPORTANTE PRA FICAR UM EMBAIXO DO OUTRO */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px; /* espaço entre as linhas */
  cursor: pointer;
}

.mz-menu-line {
  display: block;            /* vira bloco, respeita altura */
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #1A1A1A;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mz-menu-line + .mz-menu-line {
  margin-top: 3px;
}

/* NAV MOBILE PADRÃO: FECHADO */
.mz-mobile-nav {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  background: #FFFFFF;
  border-bottom: 1px solid #EDEDED;
}

.mz-mobile-nav a {
  display: block;
  padding: 13px 18px;
  text-decoration: none;
  color: #1A1A1A;
  font-size: 0.95rem;
  border-top: 1px solid #F6F6F6;
}

/* QUANDO ABRE O MENU */
.mz-header.is-menu-open .mz-mobile-nav {
  max-height: 240px;
}

/* ANIMAÇÃO DO HAMBÚRGUER → X */
.mz-header.is-menu-open .mz-menu-line:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.mz-header.is-menu-open .mz-menu-line:nth-child(2) {
  opacity: 0;
}

.mz-header.is-menu-open .mz-menu-line:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

/* ----- MOBILE MUITO PEQUENO (até 480px) ----- */
@media (max-width: 480px) {
  .mz-header-container {
    padding: 10px 12px;
    gap: 8px;
  }
  }

/* DESKTOP */
@media (min-width: 768px) {
  .mz-menu-toggle { display: none; }

  .mz-mobile-nav {
    max-height: none;
    display: flex;
    gap: 26px;
    padding: 0 24px 12px;
    border: none;
  }

  .mz-mobile-nav a {
    border: none;
    padding: 0;
  }
}
/* ===== BARRA DE AVISOS ANIMADA ===== */

.mz-alert-bar {
  background: #F9F1D9;          /* dourado bem clarinho */
  color: #1A1A1A;
  border-bottom: 1px solid #E6D29A;
  font-size: 0.85rem;
}

.mz-alert-inner {
  max-width: 1150px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mz-alert-icon {
  font-size: 0.9rem;
}

/* texto animado */
.mz-alert-text {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* classe que aplicamos sempre que o texto troca */
.mz-alert-text.is-changing {
  animation: mzAlertFade 0.4s ease-out;
}

@keyframes mzAlertFade {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* mobile: fonte um pouco menor */
@media (max-width: 480px) {
  .mz-alert-inner {
    padding: 6px 10px;
  }
  .mz-alert-text {
    font-size: 0.78rem;
  }
}
/* ===== HERO PREMIUM CLEAN ===== */
.mz-hero {
  background: linear-gradient(180deg, #FAFAFA 0%, #F1F1F1 100%);
padding: 22px 16px 24px; /* diminuí só o bottom */
}

.mz-hero-inner {
  max-width: 1120px;
  margin: 0 auto;
}

/* imagem destacada mas clean */
.mz-hero-image {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.mz-hero-img {
  width: 100%;
  max-width: 340px;
  border-radius: 18px; 
  display: block;
  box-shadow: 0 10px 22px rgba(0,0,0,0.14); /* leve, sem exagero */
}

/* textos */
.mz-hero-content {
  text-align: center;
}

.mz-hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #9A9A9A;
  margin-bottom: 8px;
}

.mz-hero-title {
  font-size: 1.45rem;
  font-weight: 500;            /* antes 600 */
  color: #1A1A1A;
  letter-spacing: 0.02em;      /* micro espaçamento = luxo */
  line-height: 1.28;
  margin-bottom: 10px;
  font-family: "Inter", system-ui, sans-serif;
}


.mz-hero-sub {
  font-size: 0.92rem;
  color: #555;
  margin-bottom: 14px;
  line-height: 1.42;
}

/* bullets */
.mz-hero-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  font-size: 0.9rem;
  color: #333;
}

.mz-hero-benefits li {
  margin-bottom: 4px;
}

/* CTA clean premium */
.mz-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mz-cta {
  display: inline-block;
  background: #D4AF37;
  color: #1A1A1A;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.28);
}

.mz-cta:active {
  background: #B8952E;
  color: white;
}

.mz-hero-secure {
  font-size: 0.78rem;
  color: #777;
}

/* Desktop */
@media (min-width: 768px) {
  .mz-hero {
    padding: 50px 24px 70px;
  }

  .mz-hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 40px;
  }

  .mz-hero-content {
    text-align: left;
  }

  .mz-hero-actions {
    align-items: flex-start;
  }

  .mz-hero-title {
    font-size: 1.8rem;
  }
}
.mz-hero-title.fasano {
  font-family: "Butler", serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.25;
  color: #1A1A1A;
}
.mz-hero-title {
  opacity: 0;
  transform: translateY(6px);
  animation: mzHeroFade 1.4s ease-out forwards;
}

@keyframes mzHeroFade {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* CTA premium pulse */
.mz-cta {
  display: inline-block;
  background: #D4AF37;
  color: #1A1A1A;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.28);
  animation: mzCtaPulse 4s ease-in-out infinite;
  transition: background 0.3s ease, transform 0.3s ease;
}

/* micro pulso lento (luxo, não festa) */
@keyframes mzCtaPulse {
  0% {
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 5px 18px rgba(212, 175, 55, 0.35);
    transform: scale(1.01); /* 1% real */
  }
  100% {
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
    transform: scale(1);
  }
}

/* hover only desktop: delicado */
@media (min-width: 768px) {
  .mz-cta:hover {
    transform: scale(1.015);
    background: #E6C65C;
  }
}
.mz-cta:active {
  transform: scale(0.99);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.18);
}
/* ===== DORES PREMIUM ===== */

/* BLOCO DE DORES PREMIUM */

.mz-pain {
  background: #FFFFFF;
 padding: 12px 20px 28px; /* antes 18px */
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}


.mz-pain-inner {
  max-width: 620px;
  margin: 0 auto;
}

.mz-pain-title {
  text-align: center;
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: 0.02em;
   margin-top: 4px; /* em vez do default ~18–24px que o navegador coloca */
  margin-bottom: 18px;
}

/* lista editorial */
.mz-pain-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* cada linha de dor */
.mz-pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  /* animação base: entra da direita */
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.8s ease, transform 0.9s ease;
}

/* pares entram da esquerda */
.mz-pain-list li:nth-child(2n) {
  transform: translateX(-12px);
}

/* quando visível (JS adiciona is-visible) */
.mz-pain-list li.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* número dourado 01, 02, 03… */
.mz-pain-index {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #B8952E;
  margin-top: 3px;
  flex-shrink: 0;
}

/* texto da dor */
.mz-pain-text {
  margin: 0;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.45;
}
.mz-pain-inner {
  max-width: 620px;
  margin: 0 auto;
}

/* título: um pouco mais perto da lista */
.mz-pain-title {
  text-align: center;
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 18px; /* era maior */
  letter-spacing: 0.02em;
}

/* lista mais compacta e editorial */
.mz-pain-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px; /* era maior */
}

/* cada item */
.mz-pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.8s ease, transform 0.9s ease;
}

/* números 01, 02, 03… coluna certinha */
.mz-pain-index {
  min-width: 32px;           /* alinha tudo na mesma coluna */
  text-align: left;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #B8952E;
  margin-top: 3px;
  flex-shrink: 0;
}

/* texto */
.mz-pain-text {
  margin: 0;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.4;
}
/* ===========================
   BENEFÍCIOS - CARROSSEL PREMIUM
   =========================== */

.mz-benefits-carousel {
  background: #F9F6EF; /* champagne premium */
  padding: 28px 0 35px; /* antes 42px 48px */
  border-top: 1px solid rgba(212, 175, 55, 0.14);
  border-bottom: 1px solid rgba(212, 175, 55, 0.14);
  overflow: hidden;
}

.mz-benefits-carousel-title {
  text-align: center;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #1A1A1A;
  margin-bottom: 22px;
}

/* trilho do carrossel */
.mz-carousel {
  display: flex;
  width: 100%;
  transition: transform 0.65s cubic-bezier(.23,.66,.44,.99);
}

/* card 1x por vez */
.mz-slide {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 0 24px 22px;
  text-align: center;
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid rgba(212,175,55,0.32);
  box-shadow: 0 8px 26px rgba(0,0,0,0.09);
}

/* imagem dentro do card */
.mz-slide img {
  width: 92%;
  display: block;
  margin: 18px auto 14px auto;
  border-radius: 16px;
}

/* texto */
.mz-slide p {
  font-size: 0.92rem;
  color: #333;
  line-height: 1.45;
  padding: 0 6px;
}

/* dots → barras elegantes */
.mz-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}

.mz-carousel-dots button {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  border: none;
  background: #D7D2C7;
  transition: background 0.3s ease;
}

.mz-carousel-dots button.active {
  background: #D4AF37; /* dourado elegante */
}
/* ===========================
   BLOCO LUXO FULL IMAGE
   =========================== */

.mz-luxo {
  background: #ffffff; /* champagne elegante */
  padding: 40px 0 52px;
}

.mz-luxo-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 22px;
  text-align: center;
}

/* Título serifado editorial */
.mz-luxo-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

/* Subheadline delicada */
.mz-luxo-sub {
  font-size: 0.92rem;
  color: #4A4A4A;
  margin-bottom: 26px;
  line-height: 1.45;
}

/* Imagem full premium */
.mz-luxo-image-wrap img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(212,175,55,0.28);
  box-shadow: 0 6px 22px rgba(0,0,0,0.08);
}
.mz-luxo {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}

.mz-luxo.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* ===========================
   BLOCO 360° GIRATÓRIO
   =========================== */

.mz-360 {
  background: #F9F6EF; /* champagne suave */
  padding: 42px 0 54px;
  text-align: center;
}

.mz-360-title {
  font-size: 1.35rem;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  color: #1A1A1A;
  margin-bottom: 6px;
}

.mz-360-sub {
  font-size: 0.94rem;
  color: #4A4A4A;
  margin-bottom: 32px;
}

/* container */
.mz-360-rotator {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

/* imagem girando */
.mz-360-img {
  width: 100%;
  animation: slowSpin 14s linear infinite;
  filter: drop-shadow(0 18px 26px rgba(0,0,0,0.22))
          contrast(1.08) brightness(0.98); /* 👈 new */
}




.mz-360-arrow.left { left: -28px; }
.mz-360-arrow.right { right: -28px; }

/* animação */
@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
/* ===== CARDS DO KIT – ESTILO PÍLULA EM CARROSSEL ===== */

.mz-360-cards {
  margin-top: 22px;
  overflow: hidden;          /* só 1 card visível */
}

.mz-360-track {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease;
}

.mz-360-card {
  flex: 0 0 100%;            /* 1 card por “tela” */
  box-sizing: border-box;
  padding: 8px 12px;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid rgba(212,175,55,0.16);  /* dourado suave */
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  margin: 0 auto;
}

/* textos dentro do card */
.mz-360-card-title {
  margin: 0 0 2px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1A1A1A;
}

.mz-360-card-meta {
  margin: 0 0 4px;
  font-size: 0.8rem;
  color: #777;
}

.mz-360-card-text {
  margin: 0;
  font-size: 0.78rem;
  color: #444;
  line-height: 1.4;
}

/* bolinhas/barrinhas de navegação */
.mz-360-dots {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 10px;
}

.mz-360-dots button {
  width: 14px;
  height: 3px;
  border-radius: 999px;
  border: none;
  background: #D8D4C8;
  padding: 0;
}

.mz-360-dots button.active {
  background: #D4AF37;  /* nossa cor de destaque */
}

/* mobile ainda mais compacto */
@media (max-width: 480px) {
  .mz-360-card {
    padding: 9px 14px;
    border-radius: 14px;
  }

  .mz-360-card-title { font-size: 0.86rem; }
  .mz-360-card-meta  { font-size: 0.76rem; }
  .mz-360-card-text  { font-size: 0.76rem; }
}

/* ===========================
   BLOCO DE OFERTA / CTA FINAL
   =========================== */

.mz-offer {
  background: #FAFAFA; /* mesmo clima do resto da LP */
  padding: 40px 16px 48px;
}

.mz-offer-card {
  max-width: 420px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 22px 18px 20px;
  box-shadow: 0 8px 26px rgba(0,0,0,0.08);
  text-align: center;
  border: 1px solid rgba(212,175,55,0.18); /* dourado suave */
}

.mz-offer-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: #1A1A1A;
}

.mz-offer-sub {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 18px;
}

/* preços */
.mz-offer-prices {
  position: relative;
  background: #FFF8E4;
  border-radius: 16px;
  padding: 14px 12px 12px;
  margin-bottom: 18px;
}

/* badge de porcentagem */
.mz-offer-badge {
  position: absolute;
  top: -12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #D4AF37;
  color: #1A1A1A;
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
}

/* preço antigo */
.mz-offer-old {
  margin: 0 0 2px;
  font-size: 0.78rem;
  color: #888;
}

.mz-offer-old span {
  text-decoration: line-through;
}

/* preço principal */
.mz-offer-main {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1A1A1A;
}

.mz-offer-main span {
  color: #B8952E; /* dourado mais escuro */
}

/* parcelado */
.mz-offer-installments {
  margin: 4px 0 0;
  font-size: 0.78rem;
  color: #666;
}

/* lista de benefícios */
.mz-offer-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  text-align: left;
  font-size: 0.8rem;
  color: #444;
}

.mz-offer-benefits li {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.mz-offer-benefits li::before {
  content: "•";
  color: #D4AF37;
  font-size: 1.2rem;
}

/* CTA usa o botão dourado do hero (.mz-cta) */
.mz-offer-cta {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 14px;
}

/* barrinha de confiança embaixo do card */
.mz-offer-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  font-size: 0.72rem;
  color: #777;
  border-top: 1px solid #F0F0F0;
  padding-top: 10px;
}

.mz-offer-trust span {
  white-space: nowrap;
}

/* mobile ainda mais compacto */
@media (max-width: 480px) {
  .mz-offer-card {
    padding: 20px 14px 18px;
    border-radius: 18px;
  }

  .mz-offer-title {
    font-size: 1.05rem;
  }

  .mz-offer-main {
    font-size: 1.2rem;
  }
}
/* --- Garantir que o CTA fique dentro do card de oferta --- */

.mz-offer-card {
  position: relative;
  overflow: hidden; /* impede o botão de sair do bloco */
  padding-bottom: 28px !important; /* aumenta a margem interna inferior */
}

.mz-offer-cta {
  display: block;
  width: 100%;
  margin: 0 auto;
  margin-top: 14px;
  padding: 14px 0;
  border-radius: 999px;
  text-align: center;
  z-index: 2;
  position: relative; /* mantém dentro do card */
}

/* reforço pra evitar corte */
.mz-offer {
  overflow: visible;
}

.mz-offer-prices {
  margin-bottom: 18px !important;
}

/* mobile fix extra */
@media (max-width: 480px) {
  .mz-offer-card {
    padding-bottom: 34px !important;
  }
}
/* ===== CARROSSEL DENTRO DO CTA (CORRIGIDO) ===== */

.mz-offer-carousel {
  overflow: hidden;
  border-radius: 16px;
  margin: 14px auto 10px;
  width: 100%;
  max-width: 360px;
}

/* trilho */
.mz-offer-track {
  display: flex;
  transition: transform 0.6s ease;
}

/* cada slide ocupa 100% da largura do carrossel */
.mz-offer-slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* imagens 1:1 centralizadas */
.mz-offer-slide img {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1 / 1;  /* força quadrado */
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* Pontinhos premium */
.mz-offer-dots {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 6px;
}

.mz-offer-dots span {
  width: 14px;
  height: 3px;
  border-radius: 999px;
  background: #D8D4C8;
  transition: background 0.3s ease;
}

.mz-offer-dots span.active {
  background: #D4AF37;
}

/* mobile: só ajusta um pouco o tamanho */
@media (max-width: 480px) {
  .mz-offer-carousel {
    max-width: 300px;
  }

  .mz-offer-slide img {
    max-width: 300px;
  }
}
/* ===========================
   DEPOIMENTOS – CARROSSEL DRAG
   =========================== */

.mz-reviews {
  background: #F9F6EF; /* champagne premium */
  padding: 32px 0 40px;
  border-top: 1px solid rgba(212,175,55,0.15);
  border-bottom: 1px solid rgba(212,175,55,0.15);
}

.mz-reviews-title {
  text-align: center;
  font-size: 1.18rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 18px;
}

/* viewport do carrossel */
.mz-reviews-marquee {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;      /* scroll suave no iOS */
  scrollbar-width: none;                  /* Firefox some scrollbar */
}

.mz-reviews-marquee::-webkit-scrollbar {
  display: none;                          /* Chrome some scrollbar */
}

/* faixa de cards */
.mz-reviews-strip {
  display: flex;
  gap: 14px;
  padding: 4px 4px 4px;
  scroll-snap-type: x mandatory;
}

/* cada card */
.mz-review {
  flex: 0 0 82vw;             /* 1 card por vez no mobile (~80% da tela) */
  max-width: 320px;           /* segura no desktop */
  scroll-snap-align: center;
  background: #FFFFFF;
  border-radius: 18px;
  border: 1px solid rgba(212,175,55,0.22);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  padding: 12px 12px 14px;
  box-sizing: border-box;
}

/* topo do card */
.mz-review-header {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

/* avatar */
.mz-review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

/* nome + estrelas */
.mz-review-name {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1A1A1A;
}

.mz-review-stars {
  margin: 2px 0 4px;
  font-size: 0.75rem;
  color: #D4AF37;
}

.mz-review-stars span {
  color: #777;
  margin-left: 4px;
  font-size: 0.7rem;
}

/* texto */
.mz-review-quote {
  margin: 0;
  font-size: 0.85rem;
  color: #444;
  line-height: 1.42;
}

/* foto do feedback */
.mz-review-photo {
  width: 100%;
  margin-top: 10px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}

/* desktop: cards um pouquinho menores */
@media (min-width: 768px) {
  .mz-review {
    flex: 0 0 260px;
  }
  .mz-review-avatar {
    width: 44px;
    height: 44px;
  }
}
/* ===== CONTADOR MAREZZA ===== */

.mz-counter {
  background: #FAFAFA;
  padding: 32px 20px 38px;
  text-align: center;
  border-top: 1px solid rgba(212,175,55,0.18);
  border-bottom: 1px solid rgba(212,175,55,0.18);
}

.mz-counter-inner {
  max-width: 420px;
  margin: 0 auto;
}

.mz-counter-number {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #1A1A1A;
  margin-bottom: 18px;
}

.mz-counter-number span {
  color: #D4AF37; /* dourado premium */
}

/* barra */
.mz-counter-bar {
  width: 100%;
  height: 10px;
  background: #E8E2D4; /* champagne off */
  border-radius: 999px;
  overflow: hidden;
}

#mzCounterFill {
  width: 0%;
  height: 100%;
  background: #D4AF37; /* dourado do CTA */
  border-radius: 999px;
  transition: width 2s ease-out;
}
/* ===========================
   FAQ – ACORDEON PREMIUM
   =========================== */

.mz-faq {
  background: #FFFFFF;
  padding: 34px 16px 40px;
  border-top: 1px solid rgba(212,175,55,0.16);
}

.mz-faq-inner {
  max-width: 900px;
  margin: 0 auto;
}

.mz-faq-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1A1A1A;
  text-align: center;
  margin: 0 0 8px;
}

.mz-faq-sub {
  text-align: center;
  font-size: 0.9rem;
  color: #555;
  margin: 0 0 22px;
}

/* lista */
.mz-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* cada item */
.mz-faq-item {
  border-radius: 14px;
  border: 1px solid rgba(212,175,55,0.18);
  background: #FAFAFA;
  overflow: hidden;
}

/* botão da pergunta */
.mz-faq-question {
  width: 100%;
  padding: 12px 14px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.mz-faq-question span:first-child {
  text-align: left;
  font-size: 0.95rem;
  color: #1A1A1A;
  font-weight: 500;
}

.mz-faq-icon {
  font-size: 1rem;
  color: #B8952E;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

/* resposta */
.mz-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 14px;
  transition: max-height 0.25s ease, padding-bottom 0.25s ease;
}

.mz-faq-answer p {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.45;
  margin: 8px 0 12px;
}

/* estado aberto */
.mz-faq-item.is-open .mz-faq-answer {
  padding-bottom: 8px;
  max-height: 200px; /* suficiente para as respostas, pode aumentar se quiser */
}

.mz-faq-item.is-open .mz-faq-icon {
  transform: rotate(45deg); /* vira um "x" delicado */
}

/* mobile ajuste */
@media (max-width: 480px) {
  .mz-faq {
    padding: 26px 14px 34px;
  }
  .mz-faq-title {
    font-size: 1.1rem;
  }
}
/* ========= FOOTER MINIMAL PREMIUM ========= */

.mz-footer {
  background: #050505;
  color: #F3F0E8;
  padding: 26px 16px 18px;
  border-top: 1px solid rgba(212,175,55,0.35);
}

.mz-footer-main {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* blocos */
.mz-footer-block {
  font-size: 0.86rem;
}

/* logo / nome */
.mz-footer-logo {
  margin: 0 0 4px;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #D4AF37;
}

.mz-footer-tagline {
  margin: 0 0 10px;
  color: #D9D5CB;
  font-size: 0.84rem;
}

/* textos de contato */
.mz-footer-line {
  margin: 0 0 3px;
  color: #E4E0D6;
}

.mz-footer-hours {
  margin: 8px 0 0;
  color: #B6B1A5;
  font-size: 0.8rem;
  line-height: 1.4;
}

/* títulos das colunas */
.mz-footer-title {
  margin: 0 0 8px;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #D4AF37;
}

/* navegação */
.mz-footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mz-footer-nav li {
  margin-bottom: 4px;
}

.mz-footer-nav a {
  font-size: 0.84rem;
  color: #E4E0D6;
  text-decoration: none;
  transition: color 0.25s ease;
}

.mz-footer-nav a:hover {
  color: #F5D979;
}

/* pagamentos */
.mz-footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.mz-footer-payments img {
  width: 40px;
  height: auto;
  border-radius: 4px;
  background: #FFFFFF;
  padding: 3px 6px;
}

/* barra final */
.mz-footer-bottom {
  max-width: 1120px;
  margin: 18px auto 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}

.mz-footer-bottom p {
  margin: 0;
  font-size: 0.75rem;
  color: #9C9688;
}

/* Desktop: layout mais organizado */
@media (min-width: 768px) {
  .mz-footer-main {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr;
    align-items: flex-start;
  }
}
.mz-offer-natal {
  display: inline-block;
  margin: 4px auto 14px;
  padding: 6px 16px;
  border-radius: 999px;
  background: #FFF4D6;              /* faixa champagne clara */
  color: #8A6A10;                   /* dourado mais forte */
  font-size: 0.92rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;           /* bem “selo” */
  text-align: center;
  animation: mzNatalPill 3s ease-out infinite;
}

/* pulso elegante ao redor da pílula */
@keyframes mzNatalPill {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.45);
  }
  60% {
    box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

@media (max-width: 480px) {
  .mz-offer-natal {
    font-size: 0.88rem;
    margin: 2px auto 12px;
    padding: 5px 14px;
  }
}
