/* ═══════════════════════════════════════════════════
   MA Media Theme — main.css
   Self-hosted fonts + light/dark design system (v5)
   ═══════════════════════════════════════════════════ */

/* ── 1. SELF-HOSTED FONTS ─────────────────────────── */
/* Paths relativos ao CSS — servidos sempre do mesmo domínio (content_url).
   O servidor envia Access-Control-Allow-Origin: * para esta pasta
   via mamedia_send_cors_headers() no tema. */

@font-face {
  font-family: 'Horizon';
  src: url('../fonts/Horizon-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-400-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ── 2. CSS CUSTOM PROPERTIES ─────────────────────── */

:root {
  /* Brand — invariantes */
  --mm-gold:        #b8a07a;
  --mm-gold-hover:  #d4b896;
  --mm-gold-dark:   #9a845e;
  --mm-gold-bg:     rgba(184, 160, 122, 0.08);
  --mm-gold-border: rgba(184, 160, 122, 0.2);

  /* Typography */
  --font-heading: 'Horizon', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Spacing scale */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  24px;
  --sp-6:  32px;
  --sp-7:  48px;
  --sp-8:  64px;
  --sp-9:  80px;
  --sp-10: 96px;

  /* Radius */
  --r-sm:  8px;
  --r-md:  10px;
  --r-lg:  14px;
  --r-xl:  20px;
  --r-pill: 100px;

  /* Transition */
  --t: 150ms ease;
}

/* ── LIGHT MODE ────────────────────────────────────── */

body.mode-light {
  --bg:       #f5f4f0;
  --bg-alt:   #ffffff;
  --surface:  #ffffff;
  --surface-2: #f0efe9;

  --border:   #e4e2db;
  --border-2: #d0cec6;
  --border-3: #b8b6af;

  --text:     #0d0d0d;
  --text-2:   #3a3a3a;
  --text-3:   #6a6a6a;
  --text-4:   #a0a0a0;
  --text-5:   #d0cfc8;

  --dot-grid: rgba(0, 0, 0, 0.04);
}

/* ── DARK MODE ─────────────────────────────────────── */

body.mode-dark {
  --bg:        #090909;
  --bg-alt:    #0f0f0d;
  --surface:   #0f0f0d;
  --surface-2: #141412;

  --border:    #1c1c1a;
  --border-2:  #242422;
  --border-3:  #2e2e2c;

  --text:      #f0efe8;
  --text-2:    #a0a090;
  --text-3:    #606058;
  --text-4:    #3a3a38;
  --text-5:    #1e1e1c;

  --dot-grid: rgba(255, 255, 255, 0.03);
}

/* ── 3. RESET & BASE ──────────────────────────────── */

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

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ── 4. TYPOGRAPHY ────────────────────────────────── */

h1, h2, h3, h4, h5, h6 {
  line-height: 1.1;
  color: var(--text);
}

h1 {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 300;
  letter-spacing: -0.04em;
}

h1 .horizon, h2 .horizon, h3 .horizon {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-style: normal;
}

h1 em, h2 em {
  font-style: normal;
  color: var(--mm-gold);
}

h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 300;
  letter-spacing: -0.03em;
}

h2 strong {
  font-weight: 700;
}

h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  letter-spacing: -0.02em;
}

h4 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h5 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-3);
}

p {
  line-height: 1.75;
  color: var(--text-3);
}

p.lead {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-3);
  max-width: 520px;
}

/* Section label */
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mm-gold-dark);
  margin-bottom: 12px;
  display: block;
}

body.mode-dark .section-label {
  color: var(--mm-gold);
}

/* Pill badge */
.mm-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--border-2);
  border-radius: var(--r-pill);
  padding: 5px 16px;
  background: var(--surface);
}

.mm-pill__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mm-gold);
  flex-shrink: 0;
}

.mm-pill span {
  font-size: 12px;
  color: var(--text-3);
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  background: var(--mm-gold);
  color: #000;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 0 0 var(--r-md) 0;
}

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

/* Screen reader only */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* ── 5. LAYOUT ────────────────────────────────────── */

.site-content {
  min-height: 60vh;
}

.wrap {
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 56px;
}

@media (max-width: 900px) {
  .wrap { padding-inline: 24px; }
}

/* Dot grid background pattern */
.dot-grid {
  background-image: radial-gradient(var(--dot-grid) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ── 6. BUTTONS ────────────────────────────────────── */

.btn-gold,
.btn-booking {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--mm-gold);
  color: #000;
  padding: 11px 24px;
  border-radius: var(--r-md);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  transition: background var(--t);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-gold:hover,
.btn-booking:hover {
  background: var(--mm-gold-hover);
}

.btn-gold.btn--sm,
.btn-booking.btn--sm {
  font-size: 12px;
  padding: 8px 18px;
}

.btn-gold.btn--full,
.btn-booking.btn--full {
  width: 100%;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--text);
  color: var(--bg);
  padding: 11px 24px;
  border-radius: var(--r-md);
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-body);
  text-decoration: none;
  transition: opacity var(--t);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  opacity: 0.85;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-2);
  color: var(--text-2);
  padding: 11px 22px;
  border-radius: var(--r-md);
  font-size: 13px;
  font-family: var(--font-body);
  text-decoration: none;
  transition: border-color var(--t), color var(--t);
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-ghost:hover {
  border-color: var(--border-3);
  color: var(--text);
}

/* ── 7. SITE HEADER ────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 60px;
}

.site-header__inner {
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 56px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  height: 24px;
  width: auto;
}

/* Nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu li a {
  color: var(--text-3);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  transition: color var(--t), background var(--t);
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item > a {
  color: var(--text);
  background: var(--surface-2);
}

/* Header right */
.site-header__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header__lang {
  display: flex;
  align-items: center;
}

/* ── Compact lang switcher (PT | EN) ── */
.lang-compact {
  display: flex;
  align-items: center;
  gap: 0;
}
.lang-compact .ml-switcher__item {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--text-3);
  text-decoration: none;
  padding: 4px 7px;
  border-radius: 5px;
  transition: color .15s, background .15s;
  line-height: 1;
}
.lang-compact .ml-switcher__item:hover {
  color: var(--text);
  background: var(--surface-2);
}
.lang-compact .ml-switcher__item--active {
  color: var(--mm-gold, #b8a07a);
  background: transparent;
  cursor: default;
  pointer-events: none;
}
/* Separator between items */
.lang-compact .ml-switcher__item + .ml-switcher__item::before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 10px;
  background: var(--border-2);
  margin-right: 7px;
  vertical-align: middle;
}

/* ════════════════════════════════════════════════════════════════
   CUSTO DE CHAMADA — integração com mamedia-theme
   Consome variáveis CSS do tema. Corrige as cores hard-coded do plugin.
   ════════════════════════════════════════════════════════════════ */

/* Wrapper principal gerado pelo plugin */
.custo-chamada__wrap {
  margin: var(--sp-2, 8px) 0 0;
  line-height: 1.5;
}

/* Cada linha da legenda */
.custo-chamada__legend {
  display: block;
  font-size: .75rem;
  color: var(--text-3);
  font-style: italic;
  line-height: 1.6;
}
.custo-chamada__legend--mobile {}  /* hook de especificidade se necessário */
.custo-chamada__legend--phone  {}

/* Override das cores hard-coded injectadas pelo plugin */
.mode-dark  .custo-chamada__legend { color: var(--text-3, #606058); }
.mode-light .custo-chamada__legend { color: var(--text-3, #8a8a88); }

/* Override via atributo data-color-mode (injectado por mamedia_custo_chamada_wrap_attrs) */
[data-color-mode="dark"]  .custo-chamada__legend { color: var(--text-3, #606058); }
[data-color-mode="light"] .custo-chamada__legend { color: var(--text-3, #8a8a88); }

/* Asteriscos — dourados para brand consistency */
.custo-chamada__asterisk,
.custo-chamada__marker {
  color: var(--mm-gold, #b8a07a);
  font-size: .65em;
  vertical-align: super;
  line-height: 0;
}

/* Números anotados pela deteção automática */
.custo-chamada-num    { white-space: nowrap; }
.custo-chamada-mobile {}
.custo-chamada-phone  {}

/* Wrapper do footer (via hook mamedia_footer_bottom) */
.custo-chamada__footer-wrap {
  margin-top: var(--sp-2, 8px);
  /* Consome --mma-bottom-bar do mamedia-alert quando fixo em baixo */
  padding-bottom: var(--mma-bottom-bar, 0px);
}

/* Legacy: .footer-note sem custo-chamada */
.footer-note {
  font-size: 11px;
  color: var(--text-4);
  line-height: 1.6;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--r-sm);
  background: transparent;
  border: 1px solid var(--border-2);
}

.menu-toggle__bar {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text-2);
  border-radius: 1px;
  transition: transform var(--t), opacity var(--t);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── 8. SITE FOOTER ────────────────────────────────── */

.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: var(--sp-9) 56px var(--sp-7);
}

.site-footer__inner {
  max-width: 1140px;
  margin-inline: auto;
}

.site-footer__top {
  display: flex;
  gap: 48px;
  justify-content: space-between;
  margin-bottom: var(--sp-9);
  flex-wrap: wrap;
}

.site-footer__brand {
  max-width: 200px;
}

.site-footer__tagline {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.7;
  margin-top: 12px;
  font-weight: 300;
}

.site-footer__col-title {
  color: var(--text-3);
  margin-bottom: 14px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a,
.footer-nav li a {
  font-size: 13px;
  color: var(--text-4);
  text-decoration: none;
  transition: color var(--t);
}

.footer-nav a:hover,
.footer-nav li a:hover {
  color: var(--text-2);
}

.site-footer__col--booking .site-footer__booking-note {
  font-size: 12px;
  color: var(--text-4);
  line-height: 1.6;
  margin-bottom: 14px;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 11px;
  color: var(--text-4);
}

.footer-note {
  font-size: 11px;
  color: var(--text-4);
}

/* Social nav */
.social-nav {
  display: flex;
  gap: 6px;
  margin-top: 16px;
}

.social-icon {
  width: 30px;
  height: 30px;
  border: 1px solid var(--border-2);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text-3);
  text-decoration: none;
  transition: border-color var(--t), color var(--t);
}

.social-icon:hover {
  border-color: var(--border-3);
  color: var(--text);
}

/* ── 9. HERO (home) ────────────────────────────────── */

.hero {
  padding: var(--sp-10) 56px var(--sp-9);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(var(--dot-grid) 1px, transparent 1px);
  background-size: 28px 28px;
}

.hero__inner {
  max-width: 1040px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.hero__title {
  margin-bottom: 20px;
}

.hero__sub {
  font-size: 16px;
  color: var(--text-3);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: var(--sp-6);
  font-weight: 300;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: var(--sp-7);
}

.hero__proof {
  display: flex;
  align-items: center;
  padding-top: var(--sp-7);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 0;
}

.hero__proof-item {
  padding-right: 40px;
  margin-right: 40px;
  border-right: 1px solid var(--border);
}

.hero__proof-item:last-child {
  border-right: none;
  margin-right: 0;
}

.hero__proof-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -1px;
  margin-bottom: 2px;
  line-height: 1;
}

.hero__proof-num em {
  font-style: normal;
  color: var(--mm-gold);
}

.hero__proof-desc {
  font-size: 12px;
  color: var(--text-3);
}

/* ── 10. MARQUEE ───────────────────────────────────── */

.marquee-strip {
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  background: var(--bg-alt);
  overflow: hidden;
  position: relative;
}

.marquee-strip__label {
  position: absolute;
  left: 56px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-5);
  z-index: 1;
  background: var(--bg-alt);
  padding-right: 16px;
}

.marquee-track {
  display: flex;
  animation: mm-marquee 28s linear infinite;
  white-space: nowrap;
}

@keyframes mm-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-5);
  padding: 0 36px;
  flex-shrink: 0;
}

/* ── 11. SERVICES (alternating) ────────────────────── */

.services {
  padding: var(--sp-10) 56px;
}

.services__header {
  max-width: 1140px;
  margin-inline: auto;
  margin-bottom: var(--sp-7);
}

.svc-row {
  max-width: 1140px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 16px;
}

.svc-row--flip {
  direction: rtl;
}

.svc-row--flip > * {
  direction: ltr;
}

.svc-text {
  padding: 52px;
  border-right: 1px solid var(--border);
  background: var(--bg);
}

.svc-row--flip .svc-text {
  border-right: none;
  border-left: 1px solid var(--border);
}

.svc-visual {
  background: var(--bg-alt);
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mm-gold);
  margin-bottom: 18px;
  display: block;
}

.svc-text h3 {
  margin-bottom: 12px;
}

.svc-text p {
  font-size: 14px;
  max-width: 360px;
  margin-bottom: 18px;
}

.svc-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.svc-chip {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text-3);
  font-size: 11px;
  padding: 3px 10px;
}

/* ── 12. RESULTS SECTION ───────────────────────────── */

.results {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-10) 56px;
}

.results__inner {
  max-width: 1140px;
  margin-inline: auto;
}

.results__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: var(--sp-9);
  border-bottom: 1px solid var(--border-2);
  margin-bottom: var(--sp-9);
}

.results__big-metric {
  font-family: var(--font-heading);
  font-size: 80px;
  color: var(--mm-gold);
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: right;
}

.results__big-label {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 4px;
  text-align: right;
}

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

.case-card {
  border-top: 1px solid var(--border-2);
  padding-top: 22px;
  transition: border-top-color var(--t);
  cursor: default;
}

.case-card:hover {
  border-top-color: var(--mm-gold);
}

.case-card__tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 14px;
  display: block;
}

.case-card__num {
  font-size: 44px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -2px;
  margin-bottom: 8px;
  line-height: 1;
  transition: color var(--t);
}

.case-card:hover .case-card__num {
  color: var(--mm-gold);
}

.case-card__desc {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.65;
}

/* ── 13. PROCESS TIMELINE ──────────────────────────── */

.process {
  padding: var(--sp-10) 56px;
  border-bottom: 1px solid var(--border);
}

.process__inner {
  max-width: 1140px;
  margin-inline: auto;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: var(--sp-9);
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background: var(--border-2);
}

.timeline-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.timeline-step__dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-5);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}

.timeline-step__dot--active {
  background: var(--mm-gold);
  border-color: var(--mm-gold);
  color: #000;
  font-family: var(--font-heading);
}

.timeline-step h4 {
  margin-bottom: 8px;
}

.timeline-step p {
  font-size: 13px;
  max-width: 240px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── 14. TESTIMONIALS ──────────────────────────────── */

.testimonials {
  padding: var(--sp-10) 56px;
  border-bottom: 1px solid var(--border);
}

.testimonials__inner {
  max-width: 1140px;
  margin-inline: auto;
}

.testi-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: var(--sp-9);
  padding-bottom: var(--sp-9);
  border-bottom: 1px solid var(--border);
}

.testi-hero__quote {
  font-size: 24px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.55;
  letter-spacing: -0.3px;
  margin-bottom: var(--sp-5);
}

.testi-hero__quote em {
  font-style: italic;
  color: var(--text-2);
}

.testi-hero__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-hero__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--mm-gold-bg);
  border: 1px solid var(--mm-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--mm-gold);
  flex-shrink: 0;
}

.testi-hero__author strong {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  display: block;
}

.testi-hero__author span {
  font-size: 12px;
  color: var(--text-3);
}

.testi-video {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.testi-video__thumb {
  height: 200px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testi-video__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--mm-gold-bg);
  border: 1px solid var(--mm-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--mm-gold);
}

.testi-video__play {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--mm-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background var(--t);
}

.testi-video__play:hover {
  background: var(--mm-gold-hover);
}

.testi-video__play svg {
  width: 14px;
  height: 14px;
  fill: #000;
  margin-left: 2px;
}

.testi-video__body {
  padding: 16px 20px;
}

.testi-video__body strong {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  display: block;
  margin-bottom: 2px;
}

.testi-video__body span {
  font-size: 12px;
  color: var(--text-3);
}

/* Review cards grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
}

.review-card__stars {
  color: var(--mm-gold);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-card__text {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-card__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--mm-gold-bg);
  border: 1px solid var(--mm-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: var(--mm-gold);
  flex-shrink: 0;
}

.review-card__info strong {
  font-size: 11px;
  font-weight: 500;
  color: var(--text);
  display: block;
}

.review-card__info span {
  font-size: 10px;
  color: var(--text-3);
}

/* ── 15. PORTFOLIO GRID ────────────────────────────── */

.portfolio {
  padding: 56px;
  border-bottom: 1px solid var(--border);
}

.portfolio__inner {
  max-width: 1140px;
  margin-inline: auto;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-top: 24px;
}

.portfolio-item {
  background: var(--bg);
  padding: 20px 12px;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-5);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t), color var(--t);
}

.portfolio-item:nth-child(6n) {
  border-right: none;
}

.portfolio-item:nth-last-child(-n+6) {
  border-bottom: none;
}

.portfolio-item:hover {
  background: var(--surface-2);
  color: var(--text-2);
}

/* ── 16. CTA SECTION ───────────────────────────────── */

.cta-section {
  padding: var(--sp-10) 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* In light mode, CTA flips to dark for contrast */
body.mode-light .cta-section {
  background: #0d0d0d;
}

body.mode-light .cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
}

body.mode-light .cta-section h2 {
  color: #fff;
}

body.mode-light .cta-section h2 em,
body.mode-light .cta-section h2 .horizon {
  color: var(--mm-gold);
}

body.mode-light .cta-section p {
  color: rgba(255, 255, 255, 0.45);
}

body.mode-dark .cta-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

body.mode-dark .cta-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 1px;
  background: var(--mm-gold);
  opacity: 0.2;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-inline: auto;
}

/* CTA form */
.cta-form {
  max-width: 520px;
  margin-inline: auto;
  margin-top: 0;
  text-align: left;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}

.form-grid--full {
  grid-column: 1 / -1;
}

.form-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0 20px;
}

.form-divider__line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

body.mode-light .cta-section .form-divider__line {
  background: rgba(255, 255, 255, 0.08);
}

.form-divider__text {
  font-size: 12px;
  color: var(--text-3);
}

body.mode-light .cta-section .form-divider__text {
  color: rgba(255, 255, 255, 0.25);
}

/* ── 17. FORMS (Fluent Forms overrides) ────────────── */

label.form-label {
  display: block;
  font-size: 11px;
  color: var(--text-3);
  margin-bottom: 5px;
  letter-spacing: 0.3px;
}

body.mode-light .cta-section label.form-label {
  color: rgba(255, 255, 255, 0.3);
}

.ff-el-input,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
select,
textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  padding: 11px 14px;
  color: var(--text);
  font-size: 13px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--t);
  -webkit-appearance: none;
}

body.mode-light .cta-section .ff-el-input,
body.mode-light .cta-section input,
body.mode-light .cta-section select,
body.mode-light .cta-section textarea {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.ff-el-input:focus,
input:focus,
select:focus,
textarea:focus {
  border-color: var(--mm-gold);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-4);
}

body.mode-light .cta-section input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

select {
  appearance: none;
  cursor: pointer;
  color: var(--text-3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-consent {
  font-size: 11px;
  color: var(--text-4);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

.form-consent a {
  color: var(--mm-gold);
  text-decoration: none;
}

/* Fluent Forms specific */
.mamedia-form .ff-el-group {
  margin-bottom: 0;
}

.mamedia-form .ff-btn {
  background: var(--mm-gold) !important;
  color: #000 !important;
  border-radius: var(--r-md) !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  border: none !important;
  padding: 12px 24px !important;
  transition: background var(--t) !important;
}

.mamedia-form .ff-btn:hover {
  background: var(--mm-gold-hover) !important;
}

/* ── 18. BLOG ARCHIVE ──────────────────────────────── */

.archive-header {
  padding: 64px 56px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

.archive-header__inner {
  max-width: 1140px;
  margin-inline: auto;
}

.archive-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mm-gold);
  margin-bottom: 12px;
}

.archive-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 300;
  letter-spacing: -1.2px;
  margin-bottom: 14px;
}

.archive-desc {
  font-size: 14px;
  color: var(--text-3);
  font-weight: 300;
  max-width: 400px;
  line-height: 1.7;
}

.archive-filters {
  display: flex;
  gap: 4px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 6px 18px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--border-2);
  color: var(--text-3);
  text-decoration: none;
  background: transparent;
  transition: all var(--t);
  cursor: pointer;
  font-family: var(--font-body);
}

.filter-btn.is-active,
.filter-btn:hover {
  background: var(--mm-gold);
  color: #000;
  border-color: var(--mm-gold);
  font-weight: 600;
}

.posts-grid {
  max-width: 1140px;
  margin: 32px auto 0;
  padding-inline: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Featured post */
.posts-grid .post-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 2fr 3fr;
}

.post-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t);
  cursor: pointer;
}

.post-card:hover {
  border-color: var(--border-3);
}

.post-card__image {
  display: block;
  height: 164px;
  background: var(--surface-2);
  overflow: hidden;
}

.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-card:hover .post-card__image img {
  transform: scale(1.02);
}

.post-card__image--placeholder {
  height: 164px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-card__body {
  padding: 20px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.post-cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mm-gold);
}

.post-meta time,
.post-read-time {
  font-size: 11px;
  color: var(--text-3);
}

.post-meta__sep {
  color: var(--text-4);
  font-size: 11px;
}

.post-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.post-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t);
}

.post-card__title a:hover {
  color: var(--mm-gold);
}

.post-card__excerpt {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.65;
  margin-bottom: 14px;
}

.post-card__read {
  font-size: 11px;
  color: var(--mm-gold);
  text-decoration: none;
}

/* ── 19. SINGLE POST ───────────────────────────────── */

.single-layout {
  max-width: 1060px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 260px;
}

.entry-header {
  padding: 64px 56px 32px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  grid-column: 1 / -1;
  max-width: 100%;
}

.entry-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.8px;
  margin-bottom: 18px;
}

.entry-lead {
  font-size: 17px;
  color: var(--text-3);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 28px;
  font-weight: 300;
}

.entry-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.entry-author__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-2);
}

.entry-author__name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  display: block;
}

.entry-author__role {
  font-size: 12px;
  color: var(--text-3);
}

.entry-thumbnail {
  grid-column: 1 / -1;
}

.entry-thumbnail img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

.entry-content {
  padding: 52px 56px 80px;
  border-right: 1px solid var(--border);
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-2);
}

.entry-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin: 44px 0 16px;
  letter-spacing: -0.3px;
}

.entry-content p {
  margin-bottom: 20px;
  color: var(--text-2);
  font-weight: 300;
}

.entry-content blockquote {
  border-left: 3px solid var(--mm-gold);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--mm-gold-bg);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}

.entry-content blockquote p {
  color: var(--text-2);
  font-style: italic;
  margin: 0;
  font-size: 15px;
}

/* Sidebar */
.single-sidebar {
  padding: 32px 24px;
}

.sidebar-widget {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px;
  margin-bottom: 14px;
}

.sidebar-cta h5 {
  margin-bottom: 8px;
  color: var(--text);
}

.sidebar-cta p {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 14px;
  font-weight: 300;
}

/* Entry tags */
.entry-footer {
  padding: 24px 56px;
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.entry-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.entry-tag {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text-3);
  font-size: 11px;
  padding: 3px 10px;
  text-decoration: none;
  transition: border-color var(--t), color var(--t);
}

.entry-tag:hover {
  border-color: var(--mm-gold);
  color: var(--mm-gold);
}

/* ── 20. STATIC PAGE ───────────────────────────────── */

.site-main--page {
  max-width: 1140px;
  margin-inline: auto;
}

.page-entry__header {
  padding: 64px 56px 32px;
  border-bottom: 1px solid var(--border);
}

.page-entry__title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  letter-spacing: -1.5px;
}

.page-entry__content {
  padding: 52px 56px 80px;
  max-width: 860px;
  margin-inline: auto;
}

/* ── Typography for static page/post content ─────────────── */
.page-entry__content h2,
.page-entry__content h3,
.page-entry__content h4,
.page-entry__content .wp-block-heading {
  font-family: var(--font-heading);
  letter-spacing: -.02em;
  margin-top: 2.4em;
  margin-bottom: .5em;
  line-height: 1.2;
  color: var(--text);
}
.page-entry__content h2,
.page-entry__content .wp-block-heading:is(h2) { font-size: clamp(22px, 2.8vw, 32px); }
.page-entry__content h3,
.page-entry__content .wp-block-heading:is(h3) { font-size: clamp(17px, 2vw, 22px); color: var(--mm-gold, #b8a07a); }
.page-entry__content h4,
.page-entry__content .wp-block-heading:is(h4) { font-size: 16px; text-transform: uppercase; letter-spacing: .06em; }

.page-entry__content p {
  margin-bottom: 1.1em;
  line-height: 1.8;
  color: var(--text-2);
}
.page-entry__content p strong { color: var(--text); font-weight: 600; }
.page-entry__content p em { color: var(--text-2); }

.page-entry__content ul,
.page-entry__content ol,
.page-entry__content .wp-block-list {
  padding-left: 1.5em;
  margin-bottom: 1.2em;
  color: var(--text-2);
}
.page-entry__content li { margin-bottom: .45em; line-height: 1.7; }
.page-entry__content ul > li::marker { color: var(--mm-gold, #b8a07a); }

.page-entry__content hr,
.page-entry__content .wp-block-separator {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5em 0;
  opacity: 1;
}

.page-entry__content a { color: var(--mm-gold, #b8a07a); text-decoration: underline; text-underline-offset: 3px; }
.page-entry__content a:hover { color: var(--text); }

.page-entry__content .has-small-font-size { font-size: 12px; }

/* ── 21. 404 ───────────────────────────────────────── */

.site-main--404 {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-404 {
  text-align: center;
  padding: 40px 24px;
  position: relative;
  max-width: 520px;
  margin-inline: auto;
}

.error-404__code {
  font-family: var(--font-heading);
  font-size: clamp(120px, 20vw, 200px);
  color: var(--surface-2);
  line-height: 1;
  letter-spacing: 0.06em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  user-select: none;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}

.error-404__content {
  position: relative;
  z-index: 1;
}

.error-404__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mm-gold);
  margin-bottom: 14px;
}

.error-404__title {
  font-size: 28px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.error-404__desc {
  font-size: 15px;
  color: var(--text-3);
  line-height: 1.7;
  max-width: 360px;
  margin: 0 auto 32px;
  font-weight: 300;
}

.error-404__actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.error-404__hint {
  padding: 28px 32px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg-alt);
  max-width: 360px;
  margin-inline: auto;
}

.error-404__hint p {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 14px;
}

/* ── 22. VSL TEMPLATE ──────────────────────────────── */

.page-template-vsl {
  background: var(--bg);
}

.vsl-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.vsl-nav {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vsl-nav__logo .site-logo {
  max-height: 36px;
  width: auto;
}

.vsl-nav__tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-4);
}

.vsl-main {
  width: 100%;
  flex: 1;
  overflow: hidden; /* impede scroll horizontal de alignfull */
}

/* Blocos sem alinhamento: centrados com largura confortável */
.vsl-main > *:not(.alignwide):not(.alignfull) {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

/* Alinhamento largo: container médio */
.vsl-main > .alignwide {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

/* Alinhamento completo: 100% viewport */
.vsl-main > .alignfull {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.vsl-footer {
  margin-top: 48px;
  padding: 32px;
  font-size: 11px;
  color: var(--text-4);
  text-align: center;
  line-height: 2;
  border-top: 1px solid var(--border);
}

.vsl-footer__links {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.vsl-footer__links a {
  color: var(--text-4);
  text-decoration: none;
  transition: color var(--t);
}

.vsl-footer__links a:hover {
  color: var(--text-2);
}

/* ── 22b. BLANK TEMPLATE ───────────────────────────── */

.page-template-blank {
  background: var(--bg);
}

.blank-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.blank-header {
  padding: 24px 32px;
}

.blank-header__inner {
  max-width: 1140px;
  margin: 0 auto;
}

.blank-header__logo .site-logo {
  max-height: 40px;
  width: auto;
}

.blank-main {
  flex: 1;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px 48px;
}

.blank-footer {
  padding: 32px;
  font-size: 11px;
  color: var(--text-4);
  text-align: center;
  line-height: 2;
  border-top: 1px solid var(--border);
}

.blank-footer__links {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.blank-footer__links a {
  color: var(--text-4);
  text-decoration: none;
  transition: color var(--t);
}

.blank-footer__links a:hover {
  color: var(--text-2);
}

/* ── 23. ONBOARDING TEMPLATE ───────────────────────── */

.page-template-onboarding {
  background: var(--bg);
}

.onboarding-page {
  display: grid;
  grid-template-columns: 300px 1fr;
  min-height: 100vh;
}

.onboarding-sidebar {
  background: var(--bg-alt);
  border-right: 1px solid var(--border);
  padding: 44px 32px;
  display: flex;
  flex-direction: column;
}

.onboarding-sidebar__logo {
  margin-bottom: 40px;
}

.onboarding-progress {
  margin-bottom: 32px;
}

.onboarding-progress__labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 11px;
  color: var(--text-3);
}

.onboarding-progress__pct {
  color: var(--mm-gold);
  font-weight: 600;
}

.onboarding-progress__bar {
  height: 3px;
  background: var(--surface-2);
  border-radius: 3px;
}

.onboarding-progress__fill {
  height: 3px;
  background: var(--mm-gold);
  border-radius: 3px;
  width: 0;
  transition: width 0.3s ease;
}

.onboarding-steps {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.onboarding-sidebar__footer {
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.onboarding-sidebar__help-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-4);
  margin-bottom: 6px;
}

.onboarding-sidebar__help-link {
  font-size: 13px;
  color: var(--mm-gold);
  text-decoration: none;
}

.onboarding-sidebar__call-note {
  margin-top: 6px;
  font-size: 10px;
  color: var(--text-4);
}

.onboarding-main {
  padding: 64px 72px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

/* ── 24. BOOKING POPUP ─────────────────────────────── */

/* Booking Popup styles → assets/css/booking-popup-form.css (loaded conditionally) */


/* ── 25. PAGINATION ────────────────────────────────── */

.pagination {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 48px 56px;
}

.page-item a,
.page-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  font-size: 13px;
  color: var(--text-2);
  text-decoration: none;
  transition: all var(--t);
  background: transparent;
}

.page-item a:hover {
  border-color: var(--mm-gold);
  color: var(--mm-gold);
}

.page-item .current {
  background: var(--mm-gold);
  border-color: var(--mm-gold);
  color: #000;
  font-weight: 600;
}

/* ── 26. WORDPRESS ALIGNMENT ───────────────────────── */

.alignwide {
  margin-inline: -56px;
}

.alignfull {
  margin-inline: calc(-50vw + 50%);
}

.alignleft {
  float: left;
  margin: 0 24px 16px 0;
}

.alignright {
  float: right;
  margin: 0 0 16px 24px;
}

.wp-block-image.size-full {
  width: 100%;
}

.wp-block-image img {
  border-radius: var(--r-md);
}

/* ── 27. RESPONSIVE ────────────────────────────────── */

@media (max-width: 1024px) {
  .svc-row,
  .testi-hero,
  .single-layout {
    grid-template-columns: 1fr;
  }

  .svc-row--flip {
    direction: ltr;
  }

  .svc-text {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .svc-row--flip .svc-text {
    border-left: none;
    border-bottom: 1px solid var(--border);
  }

  .results__top {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .results__big-metric,
  .results__big-label {
    text-align: left;
  }

  .cases-grid,
  .reviews-grid,
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .posts-grid .post-card--featured {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .portfolio-item:nth-child(6n) {
    border-right: 1px solid var(--border);
  }

  .portfolio-item:nth-child(4n) {
    border-right: none;
  }

  .onboarding-page {
    grid-template-columns: 1fr;
  }

  .onboarding-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 768px) {
  :root {
    --sp-9:  60px;
    --sp-10: 72px;
  }

  .site-header__inner,
  .hero,
  .services,
  .results,
  .process,
  .testimonials,
  .portfolio,
  .cta-section,
  .site-footer,
  .archive-header,
  .posts-grid,
  .single-layout > .entry-header,
  .entry-content,
  .entry-footer,
  .page-entry__header,
  .page-entry__content {
    padding-inline: 24px;
  }

  .site-header__nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
  }

  .site-header__nav.is-open {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .menu-toggle {
    display: flex;
  }

  .site-header__lang {
    display: none;
  }

  .hero__proof {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .hero__proof-item {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    display: none;
  }

  .cases-grid,
  .reviews-grid,
  .posts-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__top {
    flex-direction: column;
    gap: 32px;
  }

  .site-footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .single-layout {
    display: block;
  }

  .single-sidebar {
    padding: 24px;
    border-top: 1px solid var(--border);
  }

  .vsl-page {
    padding: 0;
  }

  .vsl-nav {
    padding: 16px;
  }

  .vsl-main > *:not(.alignwide):not(.alignfull) {
    padding-left: 16px;
    padding-right: 16px;
  }

  .vsl-main > .alignwide {
    padding-left: 16px;
    padding-right: 16px;
  }

  .onboarding-main {
    padding: 32px 24px;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
   THEME MOBILE — COMPREHENSIVE
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── TABLET LANDSCAPE (≤1024px) ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .site-header__inner { padding-inline: 32px; }
    .site-footer__inner { padding-inline: 32px; }

    .page-entry__header,
    .page-entry__content { padding-inline: 40px; }
}

/* ── MOBILE (≤768px) ────────────────────────────────────────────────────────── */
@media (max-width: 768px) {

    /* ── Header ── */
    .site-header__inner  { padding-inline: 20px; height: 56px; }
    .site-header__logo img { max-height: 28px; }

    /* Booking button — compact on mobile */
    .site-header__cta,
    .site-header__right .btn-booking {
        font-size: 12px;
        padding: 8px 14px;
        white-space: nowrap;
    }
    /* booking button always visible in header */
    .site-header__nav {
        display: none;
        position: fixed;
        top: 56px; left: 0; right: 0; bottom: 0;
        background: var(--bg);
        border-top: 1px solid var(--border);
        padding: 24px 20px;
        overflow-y: auto;
        z-index: 9998;
    }
    .site-header__nav.is-open { display: block; }
    .nav-menu { flex-direction: column; align-items: flex-start; gap: 4px; }
    .nav-menu li a {
        display: block;
        padding: 12px 0;
        font-size: 18px;
        border-bottom: 1px solid var(--border);
        min-height: 44px;
    }
    .menu-toggle { display: flex; }
    .site-header__lang  { display: none; }

    /* ── Page content ── */
    .page-entry__header  { padding: 32px 20px 0; }
    .page-entry__content { padding: 24px 20px 48px; max-width: 100%; }
    .page-entry__content h2, .page-entry__content .wp-block-heading:is(h2) { font-size: clamp(18px, 5.5vw, 26px); }
    .page-entry__content h3, .page-entry__content .wp-block-heading:is(h3) { font-size: 17px; }
    .page-entry__content .wp-block-list { padding-left: 1.2em; }

    /* ── Footer ── */
    .site-footer__inner  { padding-inline: 20px; padding-block: 48px 32px; }
    .site-footer__top    { flex-direction: column; gap: 32px; }
    .site-footer__col    { width: 100%; }
    .site-footer__brand-logo img { max-height: 32px; }
    .social-nav          { justify-content: flex-start; gap: 8px; }
    .site-footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
    .footer-nav          { flex-wrap: wrap; gap: 8px 16px; }
    .footer-nav a        { font-size: 12px; }

    /* ── Archive / Blog ── */
    .archive-header  { padding: 40px 20px 32px; }
    .posts-grid      { padding-inline: 20px; grid-template-columns: 1fr; gap: 16px; }
    .post-card__thumbnail img { aspect-ratio: 16/9; }

    /* ── Single post ── */
    .entry-header,
    .entry-content,
    .entry-footer { padding-inline: 20px; }
    .entry-header { padding-top: 32px; }
    .entry-header h1 { font-size: clamp(22px, 6vw, 32px); }

    /* ── General touch targets ── */
    .btn-gold, .btn-ghost, .btn-dark { min-height: 44px; }
}

/* ── SMARTPHONE (≤480px) ────────────────────────────────────────────────────── */
@media (max-width: 480px) {
    /* ── Header ── */
    .site-header__inner  { padding-inline: 16px; }
    .site-header__logo img { max-height: 24px; }

    .site-header__cta,
    .site-header__right .btn-booking {
        font-size: 11px;
        padding: 7px 10px;
    }

    /* ── Page entry ── */
    .page-entry__header  { padding: 24px 16px 0; }
    .page-entry__content { padding: 20px 16px 40px; }
    .page-entry__title   { font-size: clamp(20px, 7vw, 28px); }

    /* ── Footer ── */
    .site-footer__inner  { padding-inline: 16px; padding-block: 40px 24px; }
    .site-footer__col-title { font-size: 11px; }
    .footer-copyright    { font-size: 12px; }

    /* ── Archive ── */
    .archive-header  { padding: 32px 16px 24px; }
    .posts-grid      { padding-inline: 16px; }
    .post-card        { border-radius: 10px; }
}


/* ════════════════════════════════════════════════════════════════
   FLUENT FORMS — CONVERSATIONAL MODE
   Formulários conversacionais (modo card, passo a passo).
   O bloco mamedia/onboarding-form usa [fluentform type="conversational"].
   Classes FF: .fluentform-conv-app, .ffc-*, .conv-form-page-wrap
   ════════════════════════════════════════════════════════════════ */

/* ── Wrapper principal do modo conversacional ── */
.fluentform-conv-app,
.ff-conv-form-wrapper {
  --ffc-primary:       var(--mm-gold, #b8a07a);
  --ffc-primary-hover: var(--mm-gold-hover, #d4b896);
  --ffc-text:          var(--text, #f0efe8);
  --ffc-text-2:        var(--text-2, #a0a090);
  --ffc-bg:            var(--bg, #090909);
  --ffc-surface:       var(--surface, #0f0f0d);
  --ffc-border:        var(--border-2, #242422);
  --ffc-radius:        var(--r-md, 10px);
  font-family: var(--font-body);
}

/* ── Progress bar no topo ── */
.ffc-progress,
.ff-step-progress,
.fluentform-conv-app .ff-el-progress {
  background: var(--border, #1c1c1a) !important;
  height: 3px !important;
  border-radius: 0 !important;
}
.ffc-progress-bar,
.ff-step-progress-bar,
.fluentform-conv-app .ff-el-progress-bar {
  background: var(--mm-gold, #b8a07a) !important;
  transition: width 0.4s ease !important;
}

/* ── Textos da pergunta ── */
.ffc-question-text,
.ffc-question h2,
.conv-form-question {
  font-family: var(--font-body) !important;
  color: var(--text, #f0efe8) !important;
}
.ffc-info-text,
.ffc-sub-label,
.conv-form-hint {
  color: var(--text-2, #a0a090) !important;
  font-size: 14px !important;
}

/* ── Inputs no modo conversacional ── */
.fluentform-conv-app input[type="text"],
.fluentform-conv-app input[type="email"],
.fluentform-conv-app input[type="tel"],
.fluentform-conv-app input[type="number"],
.fluentform-conv-app select,
.fluentform-conv-app textarea,
.ffc-input-item input,
.ffc-input-item textarea,
.ffc-input-item select {
  background: var(--surface, #0f0f0d) !important;
  border: 1px solid var(--border-2, #242422) !important;
  border-radius: var(--r-md, 10px) !important;
  color: var(--text, #f0efe8) !important;
  font-family: var(--font-body) !important;
  padding: 12px 16px !important;
  font-size: 15px !important;
  transition: border-color 0.15s !important;
}
.fluentform-conv-app input:focus,
.fluentform-conv-app textarea:focus,
.fluentform-conv-app select:focus,
.ffc-input-item input:focus,
.ffc-input-item textarea:focus {
  border-color: var(--mm-gold, #b8a07a) !important;
  outline: none !important;
}
.fluentform-conv-app input::placeholder,
.fluentform-conv-app textarea::placeholder {
  color: var(--text-4, #3a3a38) !important;
}

/* ── Botões de navegação (Próximo / Anterior) ── */
.ffc-btn-next,
.ffc-btn,
.fluentform-conv-app .ffc-button,
.conv-form-btn-next {
  background: var(--mm-gold, #b8a07a) !important;
  color: #000 !important;
  border: none !important;
  border-radius: var(--r-md, 10px) !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  padding: 11px 24px !important;
  font-size: 13px !important;
  cursor: pointer !important;
  transition: background 0.15s !important;
}
.ffc-btn-next:hover,
.ffc-btn:hover,
.fluentform-conv-app .ffc-button:hover {
  background: var(--mm-gold-hover, #d4b896) !important;
}

.ffc-btn-prev,
.conv-form-btn-prev {
  background: transparent !important;
  border: 1px solid var(--border-2, #242422) !important;
  color: var(--text-2, #a0a090) !important;
  border-radius: var(--r-md, 10px) !important;
  font-family: var(--font-body) !important;
  padding: 10px 20px !important;
  font-size: 13px !important;
  cursor: pointer !important;
  transition: all 0.15s !important;
}
.ffc-btn-prev:hover {
  border-color: var(--border-2, #242422) !important;
  color: var(--text, #f0efe8) !important;
}

/* ── Botão de submit ── */
.fluentform-conv-app .ff-btn-submit,
.fluentform-conv-app button[type="submit"],
.ffc-submit {
  background: var(--mm-gold, #b8a07a) !important;
  color: #000 !important;
  border: none !important;
  border-radius: var(--r-md, 10px) !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  padding: 12px 28px !important;
  font-size: 14px !important;
  cursor: pointer !important;
  transition: background 0.15s !important;
}
.fluentform-conv-app .ff-btn-submit:hover {
  background: var(--mm-gold-hover, #d4b896) !important;
}

/* ── Checkboxes e radios (opção única / múltipla) ── */
.fluentform-conv-app .ff-el-form-check-input,
.ffc-input-item input[type="radio"],
.ffc-input-item input[type="checkbox"] {
  accent-color: var(--mm-gold, #b8a07a) !important;
}
.ffc-radio-option,
.ffc-checkbox-option,
.fluentform-conv-app .ff-el-form-check-label {
  color: var(--text, #f0efe8) !important;
}

/* ── Mensagens de erro ── */
.fluentform-conv-app .error,
.fluentform-conv-app .ff-el-is-error input,
.fluentform-conv-app .ff-el-is-error textarea,
.ffc-error-message {
  border-color: #ef4444 !important;
  color: #ef4444 !important;
}
.fluentform-conv-app .error.ff-show {
  font-size: 12px !important;
  margin-top: 6px !important;
}

/* ── Número do passo (ex: "2/14") ── */
.ffc-step-num,
.ff-conv-form-wrapper .ffc-counter {
  color: var(--text-3, #606058) !important;
  font-size: 12px !important;
}

/* ── Fundo da página de cada step (quando tem media image) ── */
.fluentform-conv-app .ffc-media-side,
.conv-form-media-area {
  border-radius: var(--r-lg, 14px) !important;
}

/* ── Card do step (quando sem media) ── */
.fluentform-conv-app .ffc-page,
.conv-form-page-wrap {
  background: transparent !important;
}

/* ── Modo claro (body.mode-light) ── */
body.mode-light .fluentform-conv-app,
body.mode-light .ff-conv-form-wrapper {
  --ffc-text:    #0d0d0d;
  --ffc-text-2:  #4a4a48;
  --ffc-bg:      #f5f4f0;
  --ffc-surface: #ffffff;
  --ffc-border:  #d0cec6;
}
body.mode-light .fluentform-conv-app input[type="text"],
body.mode-light .fluentform-conv-app input[type="email"],
body.mode-light .fluentform-conv-app input[type="tel"],
body.mode-light .fluentform-conv-app textarea,
body.mode-light .fluentform-conv-app select {
  background: #ffffff !important;
  border-color: #d0cec6 !important;
  color: #0d0d0d !important;
}
body.mode-light .fluentform-conv-app input::placeholder,
body.mode-light .fluentform-conv-app textarea::placeholder {
  color: #b0afa8 !important;
}

/* ════════════════════════════════════════════════════════════════
   FLUENT FORMS — MOTOR CONVERSACIONAL MA MEDIA
   Activo quando .mamedia-ff-conv-wrap está presente.
   Compatível com Fluent Forms free (sem PRO necessário).
   ════════════════════════════════════════════════════════════════ */

/* ── Wrapper exterior ── */
.mamedia-ff-conv-wrap {
  position: relative;
}

/* ── Barra de progresso global ── */
.mma-conv-progress {
  height: 3px;
  background: var(--border);
  position: sticky;
  top: 0;
  z-index: 90;
  margin-bottom: 0;
}
.mma-conv-progress__fill {
  height: 100%;
  background: var(--mm-gold);
  transition: width .4s ease;
  width: 0%;
}

/* ── Layout outer: sidebar + main ── */
.mma-conv-outer {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 70vh;
}

/* ── Sidebar ── */
.mma-conv-sidebar {
  background: var(--surface);
  border-right: 1px solid var(--border);
  padding: 36px 24px;
  position: sticky;
  top: 3px;
  height: calc(100vh - 3px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mma-conv-sidebar__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .04em;
  margin-bottom: 4px;
}
.mma-conv-sidebar__sub {
  font-size: 11px;
  color: var(--text-3);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.mma-conv-sidebar__footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--text-4);
  line-height: 1.7;
}

/* ── Lista de passos na sidebar ── */
.mma-conv-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.mma-conv-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  opacity: .4;
  transition: opacity .25s;
}
.mma-conv-step.mma-step--active { opacity: 1; }
.mma-conv-step.mma-step--done   { opacity: .65; }
.mma-conv-step__num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--border-2);
  color: var(--text-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
  transition: all .25s;
  text-align: center;
}
.mma-conv-step.mma-step--active .mma-conv-step__num {
  background: var(--mm-gold);
  color: #000;
}
.mma-conv-step.mma-step--done .mma-conv-step__num {
  background: var(--border-2);
  color: var(--text);
}
.mma-conv-step__label {
  font-size: 12px;
  color: var(--text);
}

/* ── Main content (formulário) ── */
.mma-conv-main {
  padding: 48px 52px 80px;
  overflow-y: auto;
}

/* Ocultar o form nativo (FF) — o JS move os campos para .mma-conv-main */
.mamedia-ff-conv-wrap .frm-fluent-form,
.mamedia-ff-conv-wrap form.fluentform {
  display: contents; /* não criar caixa — permite herdar layout */
}

/* ── Campos FF dentro do step engine ── */
.mma-conv-main .ff-el-group {
  margin-bottom: 20px;
}

/* Labels */
.mma-conv-main .ff-el-input--label label,
.mma-conv-main .ff-el-form-check label {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 10px;
  display: block;
}

/* Inputs */
.mma-conv-main input[type="text"],
.mma-conv-main input[type="email"],
.mma-conv-main input[type="tel"],
.mma-conv-main input[type="url"],
.mma-conv-main input[type="number"],
.mma-conv-main select,
.mma-conv-main textarea {
  background: var(--surface) !important;
  border: 1.5px solid var(--border-2) !important;
  border-radius: var(--r-md) !important;
  color: var(--text) !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  padding: 13px 16px !important;
  width: 100% !important;
  transition: border-color .15s !important;
  outline: none !important;
}
.mma-conv-main input:focus,
.mma-conv-main textarea:focus,
.mma-conv-main select:focus {
  border-color: var(--mm-gold) !important;
}
.mma-conv-main input::placeholder,
.mma-conv-main textarea::placeholder {
  color: var(--text-4) !important;
}
.mma-conv-main textarea {
  resize: vertical !important;
  min-height: 120px !important;
}

/* Mensagem de ajuda */
.mma-conv-main .ff-el-input--content .ff-el-help-message,
.mma-conv-main .ff-el-help-message {
  font-size: 12px !important;
  color: var(--text-3) !important;
  margin-top: 5px !important;
}

/* Radios / checkboxes */
.mma-conv-main .ff-el-form-check-input {
  accent-color: var(--mm-gold);
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.mma-conv-main .ff-el-form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color .15s;
  margin-bottom: 6px;
}
.mma-conv-main .ff-el-form-check:has(input:checked),
.mma-conv-main .ff-el-form-check:hover {
  border-color: var(--mm-gold);
  background: rgba(184,160,122,.06);
}
.mma-conv-main .ff-el-form-check label {
  margin: 0 !important;
  cursor: pointer;
  font-size: 14px !important;
}

/* Erro FF */
.mma-conv-main .ff-el-is-error input,
.mma-conv-main .ff-el-is-error textarea,
.mma-conv-main .ff-el-is-error select {
  border-color: #ef4444 !important;
}
.mma-conv-main .error.ff-show {
  font-size: 12px;
  color: #ef4444;
  margin-top: 5px;
  display: block;
}

/* HTML blocks (intro text) */
.mma-conv-main .ff-el-group.ff-el-custom-html p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 12px;
}

/* ── Navegação (botões next/prev) ── */
.mma-conv-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
  flex-wrap: wrap;
}
.mma-conv-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 24px;
  border-radius: var(--r-md);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all .15s;
  border: none;
}
.mma-conv-btn--next {
  background: var(--mm-gold);
  color: #000;
}
.mma-conv-btn--next:hover { background: var(--mm-gold-hover); }
.mma-conv-btn--back {
  background: transparent;
  border: 1px solid var(--border-2);
  color: var(--text-3);
}
.mma-conv-btn--back:hover {
  border-color: var(--border);
  color: var(--text);
}
.mma-conv-step-label {
  font-size: 11px;
  color: var(--text-4);
  margin-left: auto;
  letter-spacing: .3px;
}

/* ── Botão de submit FF (último passo) ── */
.mma-conv-main .ff_submit_div .ff-btn-submit,
.mma-conv-main .ff_submit_div button[type="submit"] {
  background: var(--mm-gold) !important;
  color: #000 !important;
  border: none !important;
  border-radius: var(--r-md) !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  padding: 12px 28px !important;
  cursor: pointer !important;
  transition: background .15s !important;
}
.mma-conv-main .ff_submit_div .ff-btn-submit:hover {
  background: var(--mm-gold-hover) !important;
}
.mma-conv-main .ff_submit_div {
  margin-top: 0 !important;
  padding-top: 20px !important;
  border-top: 1px solid var(--border) !important;
}

/* ── Sucesso após submit ── */
.mamedia-ff-conv-wrap .ff-message-success {
  text-align: center;
  padding: 48px 24px;
  font-size: 16px;
  color: var(--text-2);
}

/* ── Modo claro ── */
body.mode-light .mma-conv-sidebar { background: var(--surface); }
body.mode-light .mma-conv-main input[type="text"],
body.mode-light .mma-conv-main input[type="email"],
body.mode-light .mma-conv-main textarea {
  background: #fff !important;
  border-color: var(--border-2) !important;
  color: var(--text) !important;
}
body.mode-light .mma-conv-main .ff-el-form-check {
  background: #fff;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .mma-conv-outer { grid-template-columns: 1fr; }
  .mma-conv-sidebar { display: none; }
  .mma-conv-main { padding: 36px 28px 60px; }
}
@media (max-width: 768px) {
  .mma-conv-main { padding: 28px 20px 48px; }
  .mma-conv-nav { gap: 8px; }
}