/*
Theme Name: Mari-Meri Cosméticos
Theme URI: https://mari-meri.com.br
Author: Studio Mari-Meri
Author URI: https://mari-meri.com.br
Description: Tema premium de e-commerce para cosméticos, construído sobre o design system Mari-Meri (navy profundo + dourado). Integração completa com WooCommerce, páginas institucionais, blog e auto-instalação de conteúdo. Beleza, cuidado e confiança.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mari-meri
Tags: e-commerce, woocommerce, beauty, cosmetics, elegant, premium, custom-colors, custom-menu, custom-logo, featured-images, translation-ready
*/

/* =========================================================================
   MARI-MERI — DESIGN SYSTEM
   Índice
   1.  Tokens (custom properties)
   2.  Reset / Base
   3.  Tipografia
   4.  Layout / Container / Grids / Utilities
   5.  Botões
   6.  Header / Navbar / Mega-menu
   7.  Hero
   8.  Seções (eyebrow / heading)
   9.  Benefícios
   10. Categorias
   11. Cards de produto (compartilhado com WooCommerce)
   12. Ritual de beleza
   13. Sobre a marca
   14. Depoimentos
   15. Banner de oferta
   16. FAQ (accordion)
   17. Newsletter
   18. Rodapé
   19. Botão flutuante WhatsApp
   20. Conteúdo de página / legal / contato
   21. Blog / comentários / paginação / breadcrumbs
   22. Estados (loading / vazio / erro) e feedback
   23. Animações
   24. Responsivo
   ========================================================================= */

/* 1. TOKENS ============================================================== */
:root {
  /* Navy */
  --mm-navy-900: #071425;
  --mm-navy-800: #0B1E34;
  --mm-navy-700: #102A45;

  /* Gold */
  --mm-gold-500: #D9A441;
  --mm-gold-400: #F1C56A;
  --mm-gold-700: #9C6B1F; /* fundos/bordas/estados pressionados (design system) */
  --mm-gold-text: #8A5E17; /* dourado para TEXTO sobre fundos claros — >=4.5:1 (WCAG AA) */

  /* Neutrals */
  --mm-cream-50: #FFF8EC;
  --mm-warm-white: #FBF7F0;
  --mm-sand-100: #E8D6B9;
  --mm-text-dark: #10151C;
  --mm-text-muted: #667085;
  --mm-white: #FFFFFF;

  /* Feedback */
  --mm-success: #2E7D5B;
  --mm-warning: #C9822B;
  --mm-error: #B94A48;
  --mm-info: #2B6CB0;

  /* Gradients */
  --mm-grad-gold: linear-gradient(135deg, #9C6B1F 0%, #D9A441 45%, #F1C56A 70%, #A87424 100%);
  --mm-grad-gold-btn: linear-gradient(135deg, #9C6B1F 0%, #D9A441 45%, #F1C56A 100%);
  --mm-grad-navy: linear-gradient(135deg, #071425 0%, #0B1E34 55%, #102A45 100%);
  --mm-grad-cream: linear-gradient(180deg, #FFF8EC 0%, #FBF7F0 100%);

  /* Type */
  --mm-font-title: "Playfair Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --mm-font-body: "Inter", "Lato", "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --mm-font-accent: "Montserrat", "Inter", Arial, sans-serif;

  /* Layout */
  --mm-container: 1180px;
  --mm-container-wide: 1360px;
  --mm-pad-x: 20px;

  /* Radius */
  --mm-radius-sm: 10px;
  --mm-radius-md: 18px;
  --mm-radius-lg: 28px;
  --mm-radius-xl: 40px;
  --mm-radius-pill: 999px;

  /* Shadows */
  --mm-shadow-soft: 0 16px 40px rgba(7, 20, 37, 0.10);
  --mm-shadow-premium: 0 24px 80px rgba(7, 20, 37, 0.22);
  --mm-shadow-gold: 0 0 26px rgba(217, 164, 65, 0.28);
  --mm-shadow-card-hover: 0 24px 70px rgba(7, 20, 37, 0.14);

  /* Spacing */
  --mm-section-y: 72px;

  /* Header */
  --mm-header-h: 84px;

  --mm-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 1024px) {
  :root {
    --mm-pad-x: 48px;
    --mm-section-y: 112px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  :root { --mm-pad-x: 32px; }
}

/* 2. RESET / BASE ======================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--mm-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--mm-text-dark);
  background: var(--mm-warm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
img { border-style: none; }

a { color: var(--mm-gold-text); text-decoration: none; transition: color .2s var(--mm-ease); }
a:hover { color: var(--mm-gold-500); }

ul, ol { padding-left: 1.25rem; }

button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--mm-gold-500);
  outline-offset: 2px;
  border-radius: 4px;
}

.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
  height: 1px; width: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute !important; word-wrap: normal !important;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100000;
  background: var(--mm-navy-900); color: var(--mm-white);
  padding: 12px 20px; border-radius: 0 0 var(--mm-radius-sm) 0;
}
.skip-link:focus { left: 0; color: var(--mm-white); }

/* WP core alignments */
.alignleft { float: left; margin: .3rem 1.5rem 1rem 0; }
.alignright { float: right; margin: .3rem 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 1rem auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--mm-text-muted); text-align: center; }
.sticky, .bypostauthor { display: block; }

/* 3. TIPOGRAFIA ========================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--mm-font-title);
  color: var(--mm-navy-900);
  margin: 0 0 .5em;
  font-weight: 700;
}
.mm-display {
  font-size: clamp(42px, 6vw, 76px);
  line-height: .96; letter-spacing: -0.035em; font-weight: 700;
}
h1, .mm-h1 { font-size: clamp(36px, 5vw, 64px); line-height: 1.02; letter-spacing: -0.03em; }
h2, .mm-h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.08; letter-spacing: -0.025em; }
h3, .mm-h3 { font-size: clamp(24px, 3vw, 34px); line-height: 1.16; letter-spacing: -0.015em; font-weight: 600; }
h4, .mm-h4 { font-size: 22px; line-height: 1.22; font-weight: 600; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p { margin: 0 0 1rem; }
.mm-lead { font-size: 20px; line-height: 1.65; color: var(--mm-text-muted); }
.mm-body-small { font-size: 14px; line-height: 1.55; }

.mm-eyebrow {
  font-family: var(--mm-font-accent);
  font-size: 12px; font-weight: 700; line-height: 1.4;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--mm-gold-text);
  display: inline-flex; align-items: center; gap: 10px;
}
.mm-eyebrow--light { color: var(--mm-gold-400); }
.mm-eyebrow::before {
  content: ""; width: 26px; height: 1px; background: currentColor; opacity: .6;
}

.mm-text-gold { color: var(--mm-gold-text); }
.mm-text-gold-bright { color: var(--mm-gold-500); }
.mm-muted { color: var(--mm-text-muted); }

/* 4. LAYOUT / CONTAINER / GRIDS ========================================== */
.mm-container {
  width: 100%;
  max-width: var(--mm-container);
  margin-inline: auto;
  padding-inline: var(--mm-pad-x);
}
.mm-container--wide { max-width: var(--mm-container-wide); }
.mm-container--narrow { max-width: 820px; }

.mm-section { padding-block: var(--mm-section-y); position: relative; }
.mm-section--tight { padding-block: calc(var(--mm-section-y) * .62); }

.mm-bg-navy { background: var(--mm-navy-900); color: var(--mm-white); }
.mm-bg-navy-800 { background: var(--mm-navy-800); color: var(--mm-white); }
.mm-bg-navy-grad { background: var(--mm-grad-navy); color: var(--mm-white); }
.mm-bg-cream { background: var(--mm-cream-50); }
.mm-bg-warm { background: var(--mm-warm-white); }
.mm-bg-cream-grad { background: var(--mm-grad-cream); }
.mm-bg-white { background: var(--mm-white); }

.mm-bg-navy h1, .mm-bg-navy h2, .mm-bg-navy h3, .mm-bg-navy h4,
.mm-bg-navy-800 h1, .mm-bg-navy-800 h2, .mm-bg-navy-800 h3, .mm-bg-navy-800 h4,
.mm-bg-navy-grad h1, .mm-bg-navy-grad h2, .mm-bg-navy-grad h3, .mm-bg-navy-grad h4 {
  color: var(--mm-white);
}

.mm-grid { display: grid; gap: 24px; }
.mm-grid--2 { grid-template-columns: repeat(2, 1fr); }
.mm-grid--3 { grid-template-columns: repeat(3, 1fr); }
.mm-grid--4 { grid-template-columns: repeat(4, 1fr); }

.mm-flex { display: flex; }
.mm-items-center { align-items: center; }
.mm-justify-between { justify-content: space-between; }
.mm-gap-sm { gap: 12px; }
.mm-gap { gap: 20px; }
.mm-wrap { flex-wrap: wrap; }
.mm-text-center { text-align: center; }

.mm-mt-0 { margin-top: 0; }
.mm-mb-0 { margin-bottom: 0; }
.mm-mx-auto { margin-inline: auto; }

/* section header block */
.mm-section-head { max-width: 720px; margin-bottom: 48px; }
.mm-section-head--center { margin-inline: auto; text-align: center; }
.mm-section-head p { color: var(--mm-text-muted); font-size: 18px; margin-top: 6px; }
.mm-bg-navy .mm-section-head p,
.mm-bg-navy-grad .mm-section-head p,
.mm-bg-navy-800 .mm-section-head p { color: rgba(255,255,255,.72); }

/* decorative divider */
.mm-divider-leaf {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  color: var(--mm-gold-500); margin: 0 auto 18px;
}
.mm-divider-leaf::before, .mm-divider-leaf::after {
  content: ""; height: 1px; width: 54px;
  background: linear-gradient(90deg, transparent, currentColor);
}
.mm-divider-leaf::after { background: linear-gradient(90deg, currentColor, transparent); }

/* 5. BOTÕES ============================================================== */
.mm-btn {
  --btn-y: 16px; --btn-x: 28px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--mm-font-accent);
  font-size: 15px; font-weight: 700; letter-spacing: .04em; line-height: 1;
  padding: var(--btn-y) var(--btn-x);
  border-radius: var(--mm-radius-pill);
  border: 1px solid transparent;
  text-align: center; white-space: nowrap;
  transition: transform .25s var(--mm-ease), box-shadow .25s var(--mm-ease),
              background .25s var(--mm-ease), border-color .25s var(--mm-ease), color .2s var(--mm-ease);
  min-height: 48px; cursor: pointer;
}
.mm-btn:active { transform: translateY(1px) scale(.99); }
.mm-btn svg { width: 18px; height: 18px; flex: none; }

.mm-btn--primary {
  background: var(--mm-grad-gold-btn);
  color: var(--mm-navy-900);
  border-color: rgba(255,255,255,.28);
  box-shadow: 0 12px 34px rgba(217,164,65,.28);
}
.mm-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 46px rgba(217,164,65,.38); color: var(--mm-navy-900); }

.mm-btn--secondary {
  background: transparent; color: var(--mm-gold-400);
  border-color: rgba(241,197,106,.55);
}
.mm-btn--secondary:hover { background: rgba(241,197,106,.08); border-color: var(--mm-gold-400); color: var(--mm-gold-400); }

/* secondary on light backgrounds */
.mm-btn--outline {
  background: transparent; color: var(--mm-gold-text);
  border-color: rgba(156,107,31,.4);
}
.mm-btn--outline:hover { background: rgba(217,164,65,.08); border-color: var(--mm-gold-500); color: var(--mm-gold-text); }

.mm-btn--light {
  background: var(--mm-white); color: var(--mm-navy-900);
  border-color: rgba(7,20,37,.10); box-shadow: 0 12px 30px rgba(7,20,37,.10);
}
.mm-btn--light:hover { transform: translateY(-2px); color: var(--mm-navy-900); }

.mm-btn--whatsapp { background: var(--mm-success); color: var(--mm-white); }
.mm-btn--whatsapp:hover { filter: brightness(1.06); transform: translateY(-2px); color: var(--mm-white); }

.mm-btn--dark { background: var(--mm-navy-900); color: var(--mm-white); }
.mm-btn--dark:hover { background: var(--mm-navy-700); color: var(--mm-white); transform: translateY(-2px); }

.mm-btn--block { width: 100%; }
.mm-btn--sm { --btn-y: 11px; --btn-x: 20px; font-size: 13px; min-height: 40px; }
.mm-btn--lg { --btn-y: 18px; --btn-x: 34px; font-size: 16px; }

/* 6. HEADER / TOPBAR / CATBAR / DRAWER =================================== */

/* Topbar */
.mm-topbar { background: var(--mm-navy-900); color: rgba(255,255,255,.8); font-family: var(--mm-font-accent); font-size: 12.5px; letter-spacing: .04em; border-bottom: 1px solid rgba(255,255,255,.06); }
.mm-topbar .mm-container { display: flex; align-items: center; justify-content: space-between; min-height: 42px; gap: 16px; }
.mm-topbar__msg { display: flex; align-items: center; gap: 9px; margin: 0; }
.mm-topbar__msg svg { color: var(--mm-gold-400); flex: none; }
.mm-topbar__links { display: flex; align-items: center; gap: 24px; }
.mm-topbar__links a, .mm-topbar__link { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.8); }
.mm-topbar__links svg { color: var(--mm-gold-400); flex: none; }
.mm-topbar__links a:hover { color: var(--mm-gold-400); }

/* Header sticky */
.mm-header { position: sticky; top: 0; z-index: 1000; }
.mm-header__main {
  background: rgba(7,20,37,.9); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(241,197,106,.14);
  transition: background .3s var(--mm-ease), box-shadow .3s var(--mm-ease);
}
.mm-header.is-scrolled .mm-header__main { background: rgba(7,20,37,.97); box-shadow: 0 10px 34px rgba(7,20,37,.34); }
.mm-header__inner { display: flex; align-items: center; gap: 20px; min-height: 84px; transition: min-height .3s var(--mm-ease); }
.mm-header.is-scrolled .mm-header__inner { min-height: 70px; }

/* Logo */
.mm-logo { display: inline-flex; align-items: center; gap: 12px; flex: none; }
/* .mm-logo prefixo eleva a especificidade p/ vencer .woocommerce-page img { height:auto } nas páginas WC */
.mm-logo .mm-logo__mark { height: 46px; width: auto; transition: height .3s var(--mm-ease); filter: drop-shadow(0 2px 10px rgba(217,164,65,.28)); }
.mm-header.is-scrolled .mm-logo__mark { height: 40px; }
.mm-logo .custom-logo { height: 52px; width: auto; }
.mm-logo__text { display: flex; flex-direction: column; line-height: 1; }
.mm-logo__text b { font-family: var(--mm-font-title); color: var(--mm-gold-400); font-size: 24px; letter-spacing: .01em; }
.mm-logo__text span { font-family: var(--mm-font-accent); color: rgba(255,255,255,.66); font-size: 9.5px; letter-spacing: .34em; text-transform: uppercase; margin-top: 4px; }

/* Actions */
.mm-header__actions { display: flex; align-items: center; gap: 10px; margin-left: auto; flex: none; }
.mm-icon-btn { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border-radius: var(--mm-radius-pill); border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.04); color: var(--mm-white); position: relative; transition: all .2s var(--mm-ease); }
.mm-icon-btn:hover { border-color: var(--mm-gold-400); color: var(--mm-gold-400); background: rgba(241,197,106,.1); transform: translateY(-1px); }
.mm-icon-btn svg { width: 20px; height: 20px; }
.mm-cart-count { position: absolute; top: -5px; right: -5px; min-width: 20px; height: 20px; padding: 0 5px; background: var(--mm-grad-gold-btn); color: var(--mm-navy-900); font-family: var(--mm-font-accent); font-size: 11px; font-weight: 800; border-radius: var(--mm-radius-pill); display: inline-flex; align-items: center; justify-content: center; border: 2px solid var(--mm-navy-900); }
.mm-cart-count.is-bump { animation: mm-cart-bump .45s var(--mm-ease); }
.mm-header__cta { flex: none; }
.mm-burger { display: none; }

/* Barra de categorias */
.mm-catbar { background: rgba(11,30,52,.94); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(255,255,255,.06); }
.mm-catbar__list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 2px; overflow-x: auto; scrollbar-width: none; }
.mm-catbar__list::-webkit-scrollbar { display: none; }
.mm-catbar__list > li { flex: none; list-style: none; }
.mm-catbar__list a { display: inline-flex; align-items: center; gap: 8px; padding: 13px 14px; font-family: var(--mm-font-accent); font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,.82); position: relative; white-space: nowrap; }
.mm-catbar__list a svg { width: 16px; height: 16px; color: var(--mm-gold-400); transition: transform .25s var(--mm-ease); }
.mm-catbar__list a::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 8px; height: 2px; background: var(--mm-grad-gold-btn); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .25s var(--mm-ease); }
.mm-catbar__list a:hover { color: #fff; }
.mm-catbar__list a:hover::after { transform: scaleX(1); }
.mm-catbar__list a:hover svg { transform: translateY(-2px) scale(1.1); }
.mm-catbar__home a, .mm-catbar__all a { color: var(--mm-gold-400); }
.mm-catbar__all { margin-left: auto; }
.mm-catbar__all a::after { display: none; }
.mm-catbar__all a svg { color: inherit; }

/* Drawer + overlay */
.mm-overlay { position: fixed; inset: 0; background: rgba(7,20,37,.6); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); z-index: 1500; opacity: 0; visibility: hidden; transition: opacity .3s var(--mm-ease); }
.mm-overlay.is-open { opacity: 1; visibility: visible; }
.mm-drawer { position: fixed; inset: 0 auto 0 0; width: min(90vw, 360px); background: var(--mm-navy-900); z-index: 2000; transform: translateX(-100%); visibility: hidden; transition: transform .35s var(--mm-ease), visibility 0s linear .35s; display: flex; flex-direction: column; padding: 20px; overflow-y: auto; border-right: 1px solid rgba(241,197,106,.16); }
.mm-drawer.is-open { transform: translateX(0); visibility: visible; transition: transform .35s var(--mm-ease), visibility 0s; }
.mm-drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.mm-drawer__head .mm-logo__mark { height: 40px; }
.mm-drawer__head .mm-logo__text b { font-size: 20px; }
.mm-drawer__search { margin: 6px 0 8px; }
.mm-drawer__title { font-family: var(--mm-font-accent); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--mm-gold-400); margin: 20px 0 4px; }
.mm-drawer__menu { list-style: none; margin: 0; padding: 0; }
.mm-drawer__menu li { border-bottom: 1px solid rgba(255,255,255,.07); list-style: none; }
.mm-drawer__menu a { display: flex; align-items: center; gap: 12px; padding: 13px 4px; color: rgba(255,255,255,.9); font-family: var(--mm-font-accent); font-weight: 600; font-size: 15px; }
.mm-drawer__menu a:hover { color: var(--mm-gold-400); }
.mm-drawer__menu svg { color: var(--mm-gold-400); flex: none; }

@keyframes mm-cart-bump { 0% { transform: scale(1); } 40% { transform: scale(1.35); } 100% { transform: scale(1); } }

/* Responsivo header */
@media (max-width: 1023px) {
  .mm-catbar { display: none; }
  .mm-burger { display: inline-flex; }
  .mm-header__account { display: none; }
  .mm-topbar__link { display: none; }
}
@media (max-width: 767px) {
  .mm-header__cta { display: none; }
  .mm-topbar__links { display: none; }
  .mm-logo__text { display: none; }
}

/* 7. HERO ================================================================ */
.mm-hero { position: relative; overflow: hidden; background: var(--mm-grad-navy); color: var(--mm-white); }
.mm-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 80% 20%, rgba(241,197,106,.14), transparent 60%),
    radial-gradient(50% 60% at 10% 90%, rgba(16,42,69,.7), transparent 60%);
  pointer-events: none;
}
.mm-hero__grain {
  position: absolute; inset: 0; opacity: .05; pointer-events: none; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.mm-hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
  padding-block: clamp(56px, 8vw, 104px);
}
.mm-hero__content { max-width: 560px; }
.mm-hero h1 { color: var(--mm-white); margin-top: 18px; }
.mm-hero h1 em { font-style: italic; color: var(--mm-gold-400); }
.mm-hero__sub { font-size: 19px; line-height: 1.6; color: rgba(255,255,255,.78); max-width: 46ch; margin: 18px 0 30px; }
.mm-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.mm-hero__badges { display: flex; flex-wrap: wrap; gap: 14px 26px; margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); }
.mm-hero__badge { display: inline-flex; align-items: center; gap: 9px; font-family: var(--mm-font-accent); font-size: 13px; color: rgba(255,255,255,.82); }
.mm-hero__badge svg { width: 18px; height: 18px; color: var(--mm-gold-400); flex: none; }

.mm-hero__visual { position: relative; }
.mm-hero__visual-frame {
  position: relative; border-radius: var(--mm-radius-xl); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--mm-shadow-premium);
  border: 1px solid rgba(241,197,106,.22);
  background:
    radial-gradient(120% 120% at 30% 10%, rgba(241,197,106,.16), transparent 55%),
    var(--mm-navy-800);
}
.mm-hero__visual-frame img { width: 100%; height: 100%; object-fit: cover; }
.mm-hero__ring {
  position: absolute; width: 62%; aspect-ratio: 1; border: 1.5px solid rgba(241,197,106,.4);
  border-radius: 50%; top: -6%; right: -8%; z-index: 0;
}
.mm-hero__pill {
  position: absolute; left: -18px; bottom: 34px; z-index: 2;
  background: rgba(11,30,52,.82); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid rgba(241,197,106,.28); border-radius: var(--mm-radius-lg);
  padding: 16px 20px; display: flex; align-items: center; gap: 14px; box-shadow: var(--mm-shadow-soft);
}
.mm-hero__pill svg { width: 30px; height: 30px; color: var(--mm-gold-400); }
.mm-hero__pill b { display: block; font-family: var(--mm-font-title); color: var(--mm-white); font-size: 20px; }
.mm-hero__pill span { font-family: var(--mm-font-accent); font-size: 12px; color: rgba(255,255,255,.7); letter-spacing: .04em; }

/* 8. SECTIONS: nothing more needed (see .mm-section-head) */

/* 9. BENEFÍCIOS ========================================================== */
.mm-benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.mm-benefit {
  background: var(--mm-white); border: 1px solid rgba(7,20,37,.07);
  border-radius: var(--mm-radius-md); padding: 26px 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .3s var(--mm-ease), box-shadow .3s var(--mm-ease), border-color .3s var(--mm-ease);
}
.mm-benefit:hover { transform: translateY(-4px); box-shadow: var(--mm-shadow-soft); border-color: rgba(217,164,65,.35); }
.mm-benefit__icon {
  width: 52px; height: 52px; border-radius: var(--mm-radius-md);
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(217,164,65,.16), rgba(241,197,106,.08));
  color: var(--mm-gold-text); border: 1px solid rgba(217,164,65,.24);
}
.mm-benefit__icon svg { width: 26px; height: 26px; }
.mm-benefit h3 { font-size: 18px; margin: 0; }
.mm-benefit p { color: var(--mm-text-muted); font-size: 14.5px; margin: 0; line-height: 1.55; }

/* 10. CATEGORIAS ========================================================= */
.mm-cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.mm-cat {
  position: relative; display: block; border-radius: var(--mm-radius-lg); overflow: hidden;
  aspect-ratio: 3/4; background: var(--mm-navy-800); color: var(--mm-white);
  box-shadow: var(--mm-shadow-soft);
  transition: transform .35s var(--mm-ease), box-shadow .35s var(--mm-ease);
}
.mm-cat:hover { transform: translateY(-6px); box-shadow: var(--mm-shadow-card-hover); color: var(--mm-white); }
.mm-cat__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--mm-ease); }
.mm-cat:hover .mm-cat__img { transform: scale(1.06); }
.mm-cat__ph {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: radial-gradient(120% 120% at 30% 20%, rgba(241,197,106,.18), transparent 55%), var(--mm-grad-navy);
  color: rgba(241,197,106,.5);
}
.mm-cat__ph svg { width: 64px; height: 64px; }
.mm-cat__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,20,37,0) 30%, rgba(7,20,37,.85) 100%); }
.mm-cat__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px; z-index: 1; }
.mm-cat__body h3 { color: var(--mm-white); font-size: 20px; margin: 0 0 4px; }
.mm-cat__body span { font-family: var(--mm-font-accent); font-size: 13px; color: var(--mm-gold-400); display: inline-flex; align-items: center; gap: 7px; }
.mm-cat__body span svg { width: 15px; height: 15px; transition: transform .25s var(--mm-ease); }
.mm-cat:hover .mm-cat__body span svg { transform: translateX(4px); }

/* 11. CARD DE PRODUTO (compartilhado com WooCommerce loop) =============== */
.mm-products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
ul.products { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
ul.products::before, ul.products::after { content: none; } /* kill WC clearfix */

.mm-product, ul.products li.product {
  position: relative; background: var(--mm-white);
  border: 1px solid rgba(7,20,37,.08); border-radius: var(--mm-radius-lg);
  padding: 18px; display: flex; flex-direction: column; margin: 0; width: auto; float: none;
  transition: transform .3s var(--mm-ease), box-shadow .3s var(--mm-ease), border-color .3s var(--mm-ease);
}
.mm-product:hover, ul.products li.product:hover { transform: translateY(-6px); box-shadow: var(--mm-shadow-card-hover); border-color: rgba(217,164,65,.3); }

.mm-product__media, ul.products li.product > a img, ul.products li.product .mm-product__media {
  position: relative; border-radius: var(--mm-radius-md); overflow: hidden; background: var(--mm-cream-50);
}
.mm-product__media { aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; }
.mm-product__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--mm-ease); }
.mm-product:hover .mm-product__media img, ul.products li.product:hover img { transform: scale(1.05); }
.mm-product__ph { color: rgba(217,164,65,.45); }
.mm-product__ph svg { width: 54px; height: 54px; }

.mm-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: var(--mm-font-accent); font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--mm-radius-pill);
  background: rgba(7,20,37,.86); color: var(--mm-gold-400); border: 1px solid rgba(241,197,106,.3);
}
.mm-badge--sale { background: var(--mm-grad-gold-btn); color: var(--mm-navy-900); border-color: transparent; left: auto; right: 12px; }

.mm-product__cat { font-family: var(--mm-font-accent); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--mm-gold-text); margin: 16px 0 6px; }
.mm-product__title, ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--mm-font-title); font-size: 18px; font-weight: 600; line-height: 1.25; color: var(--mm-navy-900); margin: 0 0 8px; padding: 0;
}
.mm-product__title a { color: inherit; }
.mm-product__title a:hover { color: var(--mm-gold-text); }
.mm-product__desc { font-size: 13.5px; color: var(--mm-text-muted); line-height: 1.5; margin: 0 0 14px; }
.mm-product__rating { display: inline-flex; gap: 3px; color: var(--mm-gold-500); margin-bottom: 10px; }
.mm-product__rating svg { width: 15px; height: 15px; }

.mm-product__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 6px; }
.mm-price, ul.products li.product .price { font-family: var(--mm-font-title); font-size: 22px; font-weight: 700; color: var(--mm-navy-900); }
.mm-price del, ul.products li.product .price del { font-family: var(--mm-font-body); font-size: 14px; color: var(--mm-text-muted); font-weight: 400; margin-right: 6px; }
.mm-price ins, ul.products li.product .price ins { text-decoration: none; }

.mm-product__foot .mm-btn { flex: none; }

/* WC add-to-cart button inside loop */
ul.products li.product .button, ul.products li.product .added_to_cart {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--mm-font-accent); font-size: 13px; font-weight: 700; letter-spacing: .03em;
  padding: 11px 18px; border-radius: var(--mm-radius-pill);
  background: var(--mm-navy-900); color: var(--mm-white); border: 0; min-height: 42px; margin-top: 12px;
  transition: all .25s var(--mm-ease);
}
ul.products li.product .button:hover, ul.products li.product .added_to_cart:hover { background: var(--mm-gold-700); color: var(--mm-white); transform: translateY(-2px); }
ul.products li.product .button.loading { opacity: .7; }

/* products carousel row */
.mm-products-row { position: relative; }

/* 12. RITUAL ============================================================= */
.mm-ritual { position: relative; overflow: hidden; }
.mm-ritual__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; margin-top: 10px; }
.mm-ritual__step { position: relative; padding: 28px 22px; border-radius: var(--mm-radius-lg); background: rgba(255,255,255,.05); border: 1px solid rgba(241,197,106,.18); }
.mm-ritual__step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--mm-font-title); font-size: 40px; color: var(--mm-gold-400); opacity: .5; display: block; margin-bottom: 12px; line-height: 1;
}
.mm-ritual__step h4 { color: var(--mm-white); font-size: 20px; margin: 0 0 8px; }
.mm-ritual__step p { color: rgba(255,255,255,.72); font-size: 14px; margin: 0; }
.mm-ritual__step svg { width: 26px; height: 26px; color: var(--mm-gold-400); margin-bottom: 12px; }

/* 13. SOBRE ============================================================== */
.mm-about { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.mm-about__media { position: relative; border-radius: var(--mm-radius-xl); overflow: hidden; aspect-ratio: 5/4; box-shadow: var(--mm-shadow-soft); background: var(--mm-grad-navy); }
.mm-about__media img { width: 100%; height: 100%; object-fit: cover; }
.mm-about__stats { display: flex; gap: 34px; margin-top: 28px; flex-wrap: wrap; }
.mm-about__stat b { display: block; font-family: var(--mm-font-title); font-size: 40px; color: var(--mm-gold-text); line-height: 1; }
.mm-about__stat span { font-family: var(--mm-font-accent); font-size: 13px; color: var(--mm-text-muted); letter-spacing: .04em; }

/* 14. DEPOIMENTOS ======================================================== */
.mm-testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mm-testimonial {
  background: rgba(255,255,255,.06); border: 1px solid rgba(241,197,106,.22);
  border-radius: var(--mm-radius-lg); padding: 28px; color: var(--mm-white);
  display: flex; flex-direction: column; gap: 16px;
}
.mm-testimonial__stars { display: inline-flex; gap: 3px; color: var(--mm-gold-400); }
.mm-testimonial__stars svg { width: 18px; height: 18px; }
.mm-testimonial__quote { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,.9); font-style: italic; margin: 0; }
.mm-testimonial__author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.mm-testimonial__avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(241,197,106,.4); flex: none; background: var(--mm-navy-700); display: inline-flex; align-items: center; justify-content: center; font-family: var(--mm-font-title); color: var(--mm-gold-400); font-size: 18px; }
.mm-testimonial__author b { display: block; font-family: var(--mm-font-accent); font-size: 15px; color: var(--mm-white); }
.mm-testimonial__author span { font-size: 13px; color: rgba(255,255,255,.6); }

/* 15. BANNER OFERTA ====================================================== */
.mm-offer { position: relative; overflow: hidden; border-radius: var(--mm-radius-xl); background: var(--mm-grad-gold); color: var(--mm-navy-900); }
.mm-offer::after { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 120% at 90% 10%, rgba(255,255,255,.35), transparent 55%); pointer-events: none; }
.mm-offer__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr .7fr; gap: 32px; align-items: center; padding: clamp(36px, 5vw, 60px); }
.mm-offer h2 { color: var(--mm-navy-900); margin: 0 0 10px; }
.mm-offer p { color: rgba(7,20,37,.78); font-size: 18px; margin: 0; max-width: 48ch; }
.mm-offer .mm-eyebrow { color: rgba(7,20,37,.7); }
.mm-offer .mm-eyebrow::before { background: rgba(7,20,37,.7); }
.mm-offer__cta { display: flex; justify-content: flex-end; }
@media (max-width: 860px){ .mm-offer__cta { justify-content: flex-start; } }

/* 16. FAQ ================================================================ */
.mm-faq { max-width: 860px; margin-inline: auto; }
.mm-faq__item { border-bottom: 1px solid rgba(7,20,37,.10); }
.mm-bg-navy .mm-faq__item, .mm-bg-navy-grad .mm-faq__item, .mm-bg-navy-800 .mm-faq__item { border-color: rgba(255,255,255,.12); }
.mm-faq__q {
  width: 100%; background: transparent; border: 0; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px; font-family: var(--mm-font-title); font-size: 19px; font-weight: 600; color: var(--mm-navy-900);
}
.mm-bg-navy .mm-faq__q, .mm-bg-navy-grad .mm-faq__q, .mm-bg-navy-800 .mm-faq__q { color: var(--mm-white); }
.mm-faq__icon { flex: none; width: 34px; height: 34px; border-radius: var(--mm-radius-pill); border: 1px solid rgba(217,164,65,.4); display: inline-flex; align-items: center; justify-content: center; color: var(--mm-gold-text); transition: transform .3s var(--mm-ease), background .3s var(--mm-ease); }
.mm-bg-navy .mm-faq__icon, .mm-bg-navy-grad .mm-faq__icon { color: var(--mm-gold-400); }
.mm-faq__icon svg { width: 16px; height: 16px; }
.mm-faq__item.is-open .mm-faq__icon { transform: rotate(45deg); background: rgba(217,164,65,.12); }
.mm-faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--mm-ease); }
.mm-faq__a-inner { padding: 0 4px 22px; color: var(--mm-text-muted); font-size: 15.5px; line-height: 1.65; max-width: 70ch; }
.mm-bg-navy .mm-faq__a-inner, .mm-bg-navy-grad .mm-faq__a-inner { color: rgba(255,255,255,.72); }

/* 17. NEWSLETTER ========================================================= */
.mm-newsletter { border-radius: var(--mm-radius-xl); background: var(--mm-navy-800); color: var(--mm-white); padding: clamp(32px, 5vw, 56px); text-align: center; border: 1px solid rgba(241,197,106,.16); }
.mm-newsletter h2 { color: var(--mm-white); }
.mm-newsletter p { color: rgba(255,255,255,.74); max-width: 52ch; margin: 8px auto 24px; }
.mm-newsletter form { display: flex; gap: 12px; max-width: 520px; margin-inline: auto; }
.mm-newsletter input[type="email"] { flex: 1; height: 52px; padding: 0 20px; border-radius: var(--mm-radius-pill); border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); color: var(--mm-white); font-size: 15px; }
.mm-newsletter input::placeholder { color: rgba(255,255,255,.5); }
.mm-newsletter input:focus { border-color: var(--mm-gold-400); outline: none; }
@media (max-width: 560px){ .mm-newsletter form { flex-direction: column; } }

/* 18. RODAPÉ ============================================================= */
.mm-footer { position: relative; background: var(--mm-navy-900); color: rgba(255,255,255,.7); overflow: hidden; }
.mm-footer__glow { position: absolute; top: -45%; left: 50%; transform: translateX(-50%); width: 130%; height: 90%; background: radial-gradient(50% 60% at 50% 0, rgba(217,164,65,.1), transparent 70%); pointer-events: none; }
.mm-footer > .mm-container { position: relative; z-index: 1; }
.mm-footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; padding-block: 60px 40px; }

.mm-footer__logo { display: inline-block; }
.mm-footer__logo img { height: 96px; width: auto; filter: drop-shadow(0 6px 18px rgba(217,164,65,.2)); }
.mm-footer__logo .custom-logo { height: 88px; width: auto; }
.mm-footer__tagline { max-width: 34ch; margin: 18px 0 20px; font-size: 14.5px; line-height: 1.6; }

.mm-footer h4 { font-family: var(--mm-font-accent); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--mm-white); margin: 0 0 18px; font-weight: 700; position: relative; padding-bottom: 12px; }
.mm-footer h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 32px; height: 2px; background: var(--mm-grad-gold-btn); border-radius: 2px; }

.mm-footer__menu, .mm-footer__contact { list-style: none; margin: 0; padding: 0; }
.mm-footer__menu li { margin-bottom: 11px; list-style: none; }
.mm-footer__menu a { color: rgba(255,255,255,.7); font-size: 14.5px; display: inline-flex; align-items: center; gap: 0; transition: color .2s var(--mm-ease), gap .2s var(--mm-ease); }
.mm-footer__menu a::before { content: ""; width: 0; height: 1px; background: var(--mm-gold-400); transition: width .25s var(--mm-ease); }
.mm-footer__menu a:hover { color: var(--mm-gold-400); gap: 8px; }
.mm-footer__menu a:hover::before { width: 14px; }

.mm-footer__contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 14.5px; }
.mm-footer__contact svg { color: var(--mm-gold-500); flex: none; margin-top: 2px; }
.mm-footer__contact a { color: rgba(255,255,255,.7); }
.mm-footer__contact a:hover { color: var(--mm-gold-400); }

.mm-socials { display: flex; gap: 10px; margin-top: 6px; }
.mm-socials a { width: 42px; height: 42px; border-radius: var(--mm-radius-pill); border: 1px solid rgba(255,255,255,.14); display: inline-flex; align-items: center; justify-content: center; color: var(--mm-white); transition: all .25s var(--mm-ease); }
.mm-socials a:hover { border-color: transparent; color: var(--mm-navy-900); background: var(--mm-grad-gold-btn); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(217,164,65,.3); }
.mm-socials svg { width: 19px; height: 19px; }

.mm-footer__pay-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-block: 24px; border-top: 1px solid rgba(255,255,255,.09); }
.mm-footer__pay-label { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mm-font-accent); font-size: 13px; letter-spacing: .03em; color: rgba(255,255,255,.72); }
.mm-footer__pay-label svg { color: var(--mm-gold-400); flex: none; }
.mm-footer__pay { display: flex; gap: 8px; flex-wrap: wrap; }
.mm-pay-chip { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mm-font-accent); font-size: 12px; font-weight: 600; letter-spacing: .02em; color: rgba(255,255,255,.85); border: 1px solid rgba(255,255,255,.16); border-radius: 8px; padding: 7px 11px; background: rgba(255,255,255,.03); transition: border-color .2s var(--mm-ease); }
.mm-pay-chip:hover { border-color: rgba(241,197,106,.5); }
.mm-pay-chip svg { color: var(--mm-gold-400); flex: none; }

.mm-footer__bottom { border-top: 1px solid rgba(255,255,255,.09); position: relative; z-index: 1; }
.mm-footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-block: 22px; font-size: 13px; }
.mm-footer__bottom p { color: rgba(255,255,255,.6); }
.mm-legal-menu__list { list-style: none; display: flex; gap: 20px; flex-wrap: wrap; margin: 0; padding: 0; }
.mm-legal-menu__list li { list-style: none; }
.mm-legal-menu__list a { color: rgba(255,255,255,.6); font-size: 13px; }
.mm-legal-menu__list a:hover { color: var(--mm-gold-400); }

/* Voltar ao topo */
.mm-to-top { position: fixed; right: 20px; bottom: 88px; z-index: 850; width: 46px; height: 46px; border-radius: var(--mm-radius-pill); border: 1px solid rgba(241,197,106,.4); background: rgba(7,20,37,.9); color: var(--mm-gold-400); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .3s var(--mm-ease); }
.mm-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.mm-to-top:hover { background: var(--mm-grad-gold-btn); color: var(--mm-navy-900); border-color: transparent; }

@media (max-width: 900px) { .mm-footer__top { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 560px) {
  .mm-footer__top { grid-template-columns: 1fr; }
  .mm-footer__pay-row, .mm-footer__bottom-inner { flex-direction: column; align-items: flex-start; }
}

/* 19. WHATSAPP FLUTUANTE ================================================= */
.mm-wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 900;
  width: 58px; height: 58px; border-radius: var(--mm-radius-pill);
  background: var(--mm-success); color: var(--mm-white);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(46,125,91,.4); transition: transform .25s var(--mm-ease);
}
.mm-wa-float:hover { transform: scale(1.08); color: var(--mm-white); }
.mm-wa-float svg { width: 30px; height: 30px; }
.mm-wa-float::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: 0 0 0 0 rgba(46,125,91,.5); animation: mm-pulse 2.4s infinite; }

/* 20. CONTEÚDO DE PÁGINA / LEGAL / CONTATO =============================== */
.mm-page-hero { background: var(--mm-grad-navy); color: var(--mm-white); padding-block: clamp(56px, 8vw, 96px); position: relative; overflow: hidden; }
.mm-page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 80% at 80% 10%, rgba(241,197,106,.14), transparent 60%); }
.mm-page-hero__inner { position: relative; z-index: 1; max-width: 760px; }
.mm-page-hero h1 { color: var(--mm-white); margin: 14px 0 12px; }
.mm-page-hero p { color: rgba(255,255,255,.78); font-size: 18px; margin: 0; }

.mm-breadcrumb { font-family: var(--mm-font-accent); font-size: 13px; color: rgba(255,255,255,.6); display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.mm-breadcrumb a { color: rgba(255,255,255,.8); }
.mm-breadcrumb a:hover { color: var(--mm-gold-400); }
.mm-breadcrumb .sep { opacity: .5; }
/* light breadcrumb (woocommerce default) */
.woocommerce-breadcrumb { font-family: var(--mm-font-accent); font-size: 13px; color: var(--mm-text-muted); margin-bottom: 24px; }
.woocommerce-breadcrumb a { color: var(--mm-gold-text); }

.mm-prose { max-width: 760px; }
.mm-prose h2 { font-size: clamp(24px, 3vw, 32px); margin: 40px 0 14px; }
.mm-prose h3 { font-size: 22px; margin: 28px 0 10px; }
.mm-prose p, .mm-prose li { color: var(--mm-text-dark); font-size: 16.5px; line-height: 1.75; }
.mm-prose ul, .mm-prose ol { padding-left: 1.3rem; margin-bottom: 1.2rem; }
.mm-prose li { margin-bottom: 8px; }
.mm-prose li::marker { color: var(--mm-gold-500); }
.mm-prose a { color: var(--mm-gold-text); text-decoration: underline; text-underline-offset: 3px; }
.mm-prose blockquote { border-left: 3px solid var(--mm-gold-500); padding: 6px 0 6px 22px; margin: 24px 0; font-family: var(--mm-font-title); font-style: italic; font-size: 20px; color: var(--mm-navy-800); }
.mm-prose .mm-legal-updated { font-size: 14px; color: var(--mm-text-muted); font-family: var(--mm-font-accent); letter-spacing: .03em; }

/* contact layout */
.mm-contact { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.mm-contact__info { display: flex; flex-direction: column; gap: 22px; }
.mm-contact__card { display: flex; gap: 16px; align-items: flex-start; background: var(--mm-white); border: 1px solid rgba(7,20,37,.08); border-radius: var(--mm-radius-md); padding: 22px; }
.mm-contact__card .mm-ico { width: 48px; height: 48px; border-radius: var(--mm-radius-md); background: linear-gradient(135deg, rgba(217,164,65,.16), rgba(241,197,106,.06)); border: 1px solid rgba(217,164,65,.22); display: inline-flex; align-items: center; justify-content: center; color: var(--mm-gold-text); flex: none; }
.mm-contact__card .mm-ico svg { width: 24px; height: 24px; }
.mm-contact__card h4 { margin: 0 0 4px; font-family: var(--mm-font-accent); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--mm-text-muted); font-weight: 700; }
.mm-contact__card p { margin: 0; font-size: 17px; color: var(--mm-navy-900); font-weight: 500; }
.mm-contact__card a { color: var(--mm-navy-900); }
.mm-contact__card a:hover { color: var(--mm-gold-text); }

/* forms */
.mm-form { background: var(--mm-white); border: 1px solid rgba(7,20,37,.08); border-radius: var(--mm-radius-lg); padding: clamp(24px, 4vw, 40px); box-shadow: var(--mm-shadow-soft); }
.mm-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.mm-field label { font-family: var(--mm-font-accent); font-size: 13px; font-weight: 600; color: var(--mm-text-dark); }
.mm-field .req { color: var(--mm-error); }
.mm-input, .mm-textarea, .mm-select,
.mm-form input[type="text"], .mm-form input[type="email"], .mm-form input[type="tel"], .mm-form textarea, .mm-form select {
  width: 100%; padding: 15px 18px; border-radius: 16px;
  border: 1px solid rgba(7,20,37,.12); background: var(--mm-white); color: var(--mm-text-dark);
  font-family: var(--mm-font-body); font-size: 15px; transition: border-color .2s var(--mm-ease), box-shadow .2s var(--mm-ease);
}
.mm-form textarea { min-height: 140px; resize: vertical; }
.mm-form input::placeholder, .mm-form textarea::placeholder { color: #98A2B3; }
.mm-input:focus, .mm-textarea:focus, .mm-select:focus,
.mm-form input:focus, .mm-form textarea:focus, .mm-form select:focus {
  border-color: var(--mm-gold-500); box-shadow: 0 0 0 4px rgba(217,164,65,.16); outline: none;
}
.mm-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px){ .mm-field-row { grid-template-columns: 1fr; } }

.mm-alert { border-radius: var(--mm-radius-md); padding: 14px 18px; font-size: 14.5px; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.mm-alert svg { width: 20px; height: 20px; flex: none; }
.mm-alert--success { background: rgba(46,125,91,.10); color: var(--mm-success); border: 1px solid rgba(46,125,91,.3); }
.mm-alert--error { background: rgba(185,74,72,.08); color: var(--mm-error); border: 1px solid rgba(185,74,72,.3); }
.mm-field-error { color: var(--mm-error); font-size: 13px; }

/* map placeholder */
.mm-map { border-radius: var(--mm-radius-lg); overflow: hidden; border: 1px solid rgba(7,20,37,.08); }
.mm-map iframe { display: block; width: 100%; height: 340px; border: 0; }

/* 21. BLOG / COMMENTS / PAGINAÇÃO / BREADCRUMBS ========================== */
.mm-blog { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 900px){ .mm-blog { grid-template-columns: 1fr; } }
.mm-posts { display: grid; gap: 32px; }
.mm-post-card { background: var(--mm-white); border: 1px solid rgba(7,20,37,.08); border-radius: var(--mm-radius-lg); overflow: hidden; transition: transform .3s var(--mm-ease), box-shadow .3s var(--mm-ease); }
.mm-post-card:hover { transform: translateY(-4px); box-shadow: var(--mm-shadow-soft); }
.mm-post-card__media { aspect-ratio: 16/9; overflow: hidden; background: var(--mm-cream-50); display: flex; align-items: center; justify-content: center; }
.mm-post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.mm-post-card__body { padding: 26px; }
.mm-post-card__meta { font-family: var(--mm-font-accent); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--mm-gold-text); display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 10px; }
.mm-post-card h2, .mm-post-card h3 { font-size: 24px; margin: 0 0 10px; }
.mm-post-card p { color: var(--mm-text-muted); margin: 0 0 16px; }

.mm-sidebar { display: flex; flex-direction: column; gap: 28px; position: sticky; top: calc(var(--mm-header-h) + 20px); }
.mm-widget { background: var(--mm-white); border: 1px solid rgba(7,20,37,.08); border-radius: var(--mm-radius-lg); padding: 24px; }
.mm-widget .widget-title, .mm-widget h3, .mm-widget h2 { font-size: 18px; margin: 0 0 16px; padding-bottom: 12px; border-bottom: 1px solid rgba(7,20,37,.08); }
.mm-widget ul { list-style: none; margin: 0; padding: 0; }
.mm-widget li { padding: 8px 0; border-bottom: 1px solid rgba(7,20,37,.05); }
.mm-widget a { color: var(--mm-text-dark); }
.mm-widget a:hover { color: var(--mm-gold-text); }

article.mm-single .entry-content { max-width: 760px; }
article.mm-single .entry-content > * { margin-bottom: 1.2rem; }

.mm-pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }
.mm-pagination .page-numbers { min-width: 46px; height: 46px; padding: 0 12px; border-radius: var(--mm-radius-pill); border: 1px solid rgba(7,20,37,.12); display: inline-flex; align-items: center; justify-content: center; font-family: var(--mm-font-accent); font-weight: 600; font-size: 14px; color: var(--mm-navy-900); }
.mm-pagination .page-numbers.current { background: var(--mm-navy-900); color: var(--mm-white); border-color: var(--mm-navy-900); }
.mm-pagination .page-numbers:hover:not(.current) { border-color: var(--mm-gold-500); color: var(--mm-gold-text); }

.comment-list { list-style: none; padding: 0; }
.comment-list .comment { background: var(--mm-white); border: 1px solid rgba(7,20,37,.08); border-radius: var(--mm-radius-md); padding: 20px; margin-bottom: 16px; }
.comment-list .children { list-style: none; padding-left: 28px; }
.comment-author .fn { font-family: var(--mm-font-accent); font-weight: 700; }
.comment-metadata { font-size: 12px; color: var(--mm-text-muted); }

/* 22. ESTADOS ============================================================ */
.mm-empty { text-align: center; max-width: 460px; margin: 40px auto; padding: 40px; }
.mm-empty__icon { width: 72px; height: 72px; margin: 0 auto 18px; border-radius: var(--mm-radius-pill); background: var(--mm-cream-50); border: 1px solid rgba(217,164,65,.22); display: inline-flex; align-items: center; justify-content: center; color: var(--mm-gold-text); }
.mm-empty__icon svg { width: 34px; height: 34px; }
.mm-empty h2 { font-size: 26px; }
.mm-empty p { color: var(--mm-text-muted); }

.mm-skeleton { background: linear-gradient(90deg, rgba(7,20,37,.04) 25%, rgba(7,20,37,.08) 37%, rgba(7,20,37,.04) 63%); background-size: 400% 100%; animation: mm-shimmer 1.4s ease infinite; border-radius: var(--mm-radius-md); }

/* 23. ANIMAÇÕES ========================================================== */
@keyframes mm-pulse { 0% { box-shadow: 0 0 0 0 rgba(46,125,91,.5); } 70% { box-shadow: 0 0 0 16px rgba(46,125,91,0); } 100% { box-shadow: 0 0 0 0 rgba(46,125,91,0); } }
@keyframes mm-shimmer { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }
@keyframes mm-fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* Só oculta para animar quando o JS está ativo (sem JS = conteúdo visível). */
.mm-js .mm-reveal { opacity: 0; }
.mm-js .mm-reveal.is-visible { animation: mm-fade-up .7s var(--mm-ease) forwards; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .mm-reveal { opacity: 1; }
}

/* 24. RESPONSIVO ========================================================= */
@media (max-width: 1023px) {
  .mm-nav, .mm-searchbar { display: none; }
  .mm-burger { display: inline-flex; }
  .mm-header__actions { margin-left: auto; }
  .mm-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .mm-hero__visual { order: -1; max-width: 460px; }
  .mm-about { grid-template-columns: 1fr; gap: 36px; }
  .mm-contact { grid-template-columns: 1fr; gap: 32px; }
  .mm-footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .mm-offer__inner { grid-template-columns: 1fr; }
  .mm-blog { grid-template-columns: 1fr; }
  .mm-sidebar { position: static; }
}

@media (max-width: 860px) {
  .mm-benefits { grid-template-columns: repeat(2, 1fr); }
  .mm-cats { grid-template-columns: repeat(2, 1fr); }
  .mm-products, ul.products { grid-template-columns: repeat(2, 1fr); }
  .mm-testimonials { grid-template-columns: 1fr; }
  .mm-ritual__steps { grid-template-columns: repeat(2, 1fr); }
  .mm-topbar__links { display: none; }
}

@media (max-width: 560px) {
  .mm-benefits { grid-template-columns: 1fr; }
  .mm-cats { grid-template-columns: 1fr; }
  .mm-products, ul.products { grid-template-columns: 1fr; }
  .mm-footer__top { grid-template-columns: 1fr; }
  .mm-hero__cta .mm-btn { width: 100%; }
  .mm-ritual__steps { grid-template-columns: 1fr; }
  .mm-about__stats { gap: 20px; }
}

/* 25. COMPONENTES COMPLEMENTARES ======================================== */
.mm-site { display: flex; flex-direction: column; min-height: 100dvh; }
.mm-main { flex: 1 0 auto; }
.mm-logo-wrap { flex: none; }

/* Card de produto: corpo em coluna para o rodapé grudar embaixo */
.mm-product__body { display: flex; flex-direction: column; flex: 1; }

/* Coluna principal do blog: min-width:0 evita estouro do grid (iframes/pre/palavras longas) */
.mm-blog__main { min-width: 0; }

/* Painel de busca expansível (header) */
.mm-search-panel { border-top: 1px solid rgba(241,197,106,.12); background: rgba(7,20,37,.96); }
.mm-search-panel[hidden] { display: none; }
.mm-search-panel > .mm-container { padding-block: 18px; }
.mm-drawer__search { margin: 8px 0 4px; }

/* Search form (contexto claro por padrão) */
.mm-searchform__field { position: relative; display: flex; }
.mm-searchform__input {
  width: 100%; height: 50px; padding: 0 52px 0 20px;
  border-radius: var(--mm-radius-pill); border: 1px solid rgba(7,20,37,.14);
  background: var(--mm-white); color: var(--mm-text-dark); font-family: var(--mm-font-body); font-size: 15px;
}
.mm-searchform__input::placeholder { color: #98A2B3; }
.mm-searchform__input:focus { border-color: var(--mm-gold-500); box-shadow: 0 0 0 4px rgba(217,164,65,.16); outline: none; }
.mm-searchform__btn {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border: 0; border-radius: var(--mm-radius-pill);
  background: var(--mm-navy-900); color: var(--mm-gold-400);
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
}
.mm-searchform__btn:hover { background: var(--mm-gold-700); color: var(--mm-white); }

/* Search form em contexto escuro (header/drawer/404/navy) */
.mm-search-panel .mm-searchform__input,
.mm-drawer .mm-searchform__input,
.mm-bg-navy-grad .mm-searchform__input,
.mm-page-hero .mm-searchform__input {
  background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); color: var(--mm-white);
}
.mm-search-panel .mm-searchform__input::placeholder,
.mm-drawer .mm-searchform__input::placeholder,
.mm-bg-navy-grad .mm-searchform__input::placeholder,
.mm-page-hero .mm-searchform__input::placeholder { color: rgba(255,255,255,.55); }
.mm-search-panel .mm-searchform__btn,
.mm-drawer .mm-searchform__btn,
.mm-bg-navy-grad .mm-searchform__btn,
.mm-page-hero .mm-searchform__btn { background: var(--mm-grad-gold-btn); color: var(--mm-navy-900); }

/* Rodapé: colunas complementares */
.mm-footer__col ul { list-style: none; }
.mm-footer__menu { list-style: none; margin: 0; padding: 0; }
.mm-footer__menu li { margin-bottom: 11px; }

/* Menu legal (barra inferior) */
.mm-legal-menu__list { list-style: none; display: flex; gap: 18px; flex-wrap: wrap; margin: 0; padding: 0; }
.mm-legal-menu__list li { list-style: none; }
.mm-legal-menu__list a { font-size: 13px; color: rgba(255,255,255,.7); }
.mm-legal-menu__list a:hover { color: var(--mm-gold-400); }

/* Tags do post */
.mm-post-tags a {
  display: inline-block; margin: 4px 6px 4px 0; padding: 6px 14px;
  border: 1px solid rgba(7,20,37,.12); border-radius: var(--mm-radius-pill);
  font-family: var(--mm-font-accent); font-size: 12.5px; color: var(--mm-text-muted);
}
.mm-post-tags a:hover { border-color: var(--mm-gold-500); color: var(--mm-gold-text); }

/* Navegação entre posts */
.post-navigation { border-top: 1px solid rgba(7,20,37,.08); padding-top: 24px; }
.post-navigation .nav-links { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.post-navigation a { font-family: var(--mm-font-title); font-size: 17px; color: var(--mm-navy-900); }
.post-navigation a:hover { color: var(--mm-gold-text); }
.post-navigation .mm-muted { font-family: var(--mm-font-accent); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }

/* Comentários: form */
.mm-comments .comment-form { display: grid; gap: 16px; }
.mm-comments .comment-form p { margin: 0; }
.mm-comments .comment-form-author, .mm-comments .comment-form-email { display: inline-block; width: calc(50% - 8px); }
.mm-comments .comment-form-email { margin-left: 12px; }
.mm-comments .comment-form label { display: block; font-family: var(--mm-font-accent); font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.mm-comments .comment-reply-title { font-family: var(--mm-font-title); }
@media (max-width: 560px) {
  .mm-comments .comment-form-author, .mm-comments .comment-form-email { width: 100%; margin-left: 0; }
}

/* Esconde CTA de compra do header no mobile (drawer tem o próprio) */
@media (max-width: 767px) {
  .mm-header__cta { display: none; }
}
@media (max-width: 400px) {
  .mm-topbar__msg { font-size: 11px; }
}

/* Bloqueia scroll do body com drawer aberto */
body.mm-no-scroll { overflow: hidden; }

/* 26. REFINAMENTOS MOBILE =============================================== */
/* Todas as regras abaixo ficam dentro de @media — não afetam o desktop.   */

/* Tablet / phone grande (≤ 1023) */
@media (max-width: 1023px) {
  .mm-hero__visual { margin-inline: auto; }
  .mm-hero__ring { display: none; }                 /* decorativo: evita estouro lateral */
  .mm-woo-wrap { padding-top: 40px; }
}

/* Phones (≤ 767) */
@media (max-width: 767px) {
  :root { --mm-section-y: 64px; }
  /* Header mais compacto */
  .mm-header__inner { gap: 12px; }
  .mm-header__actions { gap: 6px; }
  /* Pílula do hero para dentro da tela (não estoura a lateral) */
  .mm-hero__pill { left: 10px; bottom: 14px; padding: 12px 14px; }
  .mm-hero__pill svg { width: 26px; height: 26px; }
  .mm-hero__pill b { font-size: 17px; }
  .mm-hero__sub { font-size: 17px; }
  .mm-hero__badges { gap: 12px 20px; }
  /* Cabeçalhos de seção mais enxutos */
  .mm-section-head { margin-bottom: 30px; }
  .mm-section-head p { font-size: 16px; }
  /* Banner de oferta */
  .mm-offer__inner { padding: 30px 22px; }
  /* FAQ */
  .mm-faq__q { font-size: 17px; padding: 18px 2px; }
  /* Depoimentos e cards com respiro menor */
  .mm-testimonial { padding: 22px; }
}

/* Phones médios (≤ 560) */
@media (max-width: 560px) {
  :root { --mm-section-y: 54px; --mm-pad-x: 18px; }
  /* Categorias: mantém 2 colunas (evita tiles gigantes de 1 coluna) */
  .mm-cats { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .mm-cat { aspect-ratio: 4 / 5; }
  .mm-cat__body { padding: 14px; }
  .mm-cat__body h3 { font-size: 16px; }
  .mm-cat__body span { font-size: 12px; }
  /* Estatísticas do "Sobre" */
  .mm-about__stat b { font-size: 34px; }
  /* Page-hero mais baixo */
  .mm-page-hero { padding-block: 44px 40px; }
  /* Rodapé: logo e headings proporcionais */
  .mm-footer__logo img { height: 78px; }
  .mm-footer__top { padding-block: 48px 32px; }
}

/* Phones pequenos (≤ 400) */
@media (max-width: 400px) {
  :root { --mm-pad-x: 14px; }
  .mm-header__actions { gap: 4px; }
  .mm-icon-btn { width: 40px; height: 40px; }
  .mm-icon-btn svg { width: 18px; height: 18px; }
  .mm-logo .mm-logo__mark { height: 40px; }
  .mm-cats { grid-template-columns: 1fr; }          /* muito estreito: 1 coluna */
  .mm-cat { aspect-ratio: 16 / 10; }                /* tile largo, não gigante */
  .mm-topbar__msg span { font-size: 11px; }
}
