/* ==========================================================================
   Massas Bizzotto — bundle.css
   Fingerprint: 38737026  |  SMACSS naming + prefixo "mb-" consistente
   css_variables: none (cores fixas no código, exceto --mm-* exigidas pelo
   módulo de menu móvel)  |  unidades: clamp  |  tipografia: serif clássica
   ========================================================================== */

/* css_reset: none — apenas o mínimo para o box model */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.075rem);
  line-height: 1.6;
  color: #16202e;
  background: #ffffff;
}
h1, h2, h3, h4 { font-family: Georgia, "Times New Roman", "Droid Serif", serif; line-height: 1.18; color: #16202e; margin: 0 0 .5em; }
p { margin: 0 0 1rem; }
a { color: #e8552d; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ---- Layout helpers (functional-css) ---- */
.l-container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 clamp(1rem, 3vw, 2rem); }
.l-section { padding: clamp(3rem, 6vw, 5.5rem) 0; }
.l-section--tight { padding: clamp(2rem, 4vw, 3rem) 0; }
.l-section--gray { background: #f4f6f8; }
.l-section--navy { background: #16202e; color: #e7ebf1; }
.l-section--navy h2, .l-section--navy h3 { color: #ffffff; }

/* asymmetric spacing rhythm */
.l-section:nth-of-type(even) { padding-top: clamp(2.25rem, 5vw, 4rem); padding-bottom: clamp(3.5rem, 7vw, 6rem); }

/* ---- Section headings ---- */
.mb-shead { max-width: 720px; margin: 0 0 clamp(1.75rem, 3vw, 2.75rem); }
.mb-shead--center { margin-left: auto; margin-right: auto; text-align: center; }
.mb-shead__eyebrow { display: inline-block; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: #e8552d; margin-bottom: .65rem; }
.mb-shead__title { font-size: clamp(1.7rem, 3.4vw, 2.55rem); }
.mb-shead__text { color: #5b6675; font-size: clamp(1.02rem, 1vw + .8rem, 1.15rem); }

/* ============================== BUTTONS ===================================
   button_style: ghost-outline — transparente com borda 2px, preenche no hover */
.btn-primary {
  display: inline-block; background: transparent; color: #e8552d;
  border: 2px solid #e8552d; border-radius: 8px;
  padding: clamp(.7rem, 1vw, .85rem) clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700; font-size: 1rem; cursor: pointer; transition: .2s ease; text-decoration: none;
}
.btn-primary:hover { background: #e8552d; color: #fff; text-decoration: none; }
.btn-primary--light { color: #fff; border-color: #fff; }
.btn-primary--light:hover { background: #fff; color: #16202e; }
.btn-solid {
  display: inline-block; background: #e8552d; color: #fff; border: 2px solid #e8552d;
  border-radius: 8px; padding: clamp(.7rem, 1vw, .85rem) clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700; font-size: 1rem; cursor: pointer; transition: .2s ease; text-decoration: none;
}
.btn-solid:hover { background: #ff6a3d; border-color: #ff6a3d; color: #fff; text-decoration: none; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ============================== HEADER ====================================
   navigation_type: top-sticky.  --mm-* exigidas pelo módulo slide-top. */
[data-mm-header] {
  --mm-bg: #16202e;
  --mm-text: #16202e;
  --mm-primary: #e8552d;
  --mm-overlay-bg: rgba(10, 16, 26, 0.55);
  --mm-transition: 0.3s ease;
}
.mb-header { position: sticky; top: 0; z-index: 900; background: #ffffff; border-bottom: 1px solid #e6e9ee; }
.mb-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 68px; gap: 1rem; }
.mb-logo { display: inline-flex; align-items: center; gap: .55rem; text-decoration: none; }
.mb-logo__mark { flex: none; }
.mb-logo__text { font-family: Georgia, serif; font-weight: 700; font-size: 1.32rem; letter-spacing: -.01em; }
.mb-logo__a { color: #16202e; }
.mb-logo__a--light { color: #ffffff; }
.mb-logo__b { color: #e8552d; }
.mb-nav__link { color: #16202e; font-weight: 600; font-size: .98rem; }
.mb-nav__link:hover { color: #e8552d; text-decoration: none; }
.mb-nav__link.is-active { color: #e8552d; }
.mb-nav__enter { display: inline-block; background: #e8552d; color: #fff !important; border-radius: 8px; padding: .55rem 1.1rem; font-weight: 700; }
.mb-nav__enter:hover { background: #ff6a3d; color: #fff !important; text-decoration: none; }
.mb-toggle span { background: #16202e; }
@media (min-width: 768px) {
  .mb-nav__list { gap: clamp(.25rem, 1vw, 1rem); align-items: center; }
  .mb-nav__item--cta { margin-left: .5rem; }
}

/* ============================== HERO ======================================
   hero_design: animated-gradient (texto centrado sobre gradiente animado) */
.mb-hero { position: relative; text-align: center; color: #fff; padding: clamp(3.5rem, 8vw, 6.5rem) 1rem clamp(4rem, 9vw, 7rem); overflow: hidden;
  background: linear-gradient(120deg, #16202e, #e8552d, #0fb9a6); background-size: 220% 220%; animation: mbHeroShift 14s ease infinite; }
@keyframes mbHeroShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@media (prefers-reduced-motion: reduce) { .mb-hero { animation: none; } }
.mb-hero__inner { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; }
.mb-hero__eyebrow { display: inline-block; font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; background: rgba(255,255,255,.16); padding: .35rem .85rem; border-radius: 100px; margin-bottom: 1.1rem; }
.mb-hero__title { color: #fff; font-size: clamp(2.1rem, 6vw, 3.6rem); margin-bottom: .6rem; text-shadow: 0 2px 18px rgba(0,0,0,.18); }
.mb-hero__sub { color: rgba(255,255,255,.92); font-size: clamp(1.05rem, 1.4vw + .7rem, 1.4rem); max-width: 640px; margin: 0 auto 1.8rem; }
.mb-hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
/* preview de vídeo no hero (layout_strategy: position-absolute usado aqui) */
.mb-hero__video { position: relative; max-width: 720px; margin: clamp(2rem, 4vw, 3rem) auto 0; aspect-ratio: 16/9; border-radius: 14px; overflow: hidden; background: #000 center/cover no-repeat; box-shadow: 0 26px 60px rgba(0,0,0,.4); cursor: pointer; }
.mb-hero__video::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.28); transition: background .25s ease; }
.mb-hero__video:hover::after { background: rgba(0,0,0,.42); }
.mb-hero__videoplay { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2; width: 78px; height: 78px; border-radius: 50%; background: rgba(255,255,255,.92); color: #16202e; display: grid; place-items: center; font-size: 1.7rem; padding-left: 5px; }
.mb-hero__videolabel { position: absolute; left: 16px; bottom: 14px; z-index: 2; background: rgba(0,0,0,.55); color: #fff; padding: .3rem .7rem; border-radius: 6px; font-size: .85rem; font-weight: 600; }

/* ============================== METRICS ===================================
   Key Metrics (required) */
.mb-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2.5vw, 2rem); }
.mb-metric { text-align: center; }
.mb-metric__num { font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 700; color: #e8552d; line-height: 1; }
.mb-metric__label { color: #5b6675; font-size: .95rem; margin-top: .4rem; }
@media (max-width: 640px) { .mb-metrics { grid-template-columns: repeat(2, 1fr); row-gap: 1.75rem; } }

/* ============================== CARDS =====================================
   card_style: numbered-step — número grande e ténue por trás do conteúdo */
.mb-cardgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.1rem, 2.5vw, 1.9rem); }
.mb-card { position: relative; padding: clamp(1.6rem, 3vw, 2.1rem) 1.75rem; border-radius: 12px; background: #fff; box-shadow: 0 4px 16px rgba(22,32,46,.07); overflow: hidden; }
.mb-card::before { content: attr(data-step); position: absolute; top: -.18em; right: .12em; font-size: 5rem; font-weight: 800; color: rgba(232,85,45,.08); line-height: 1; font-family: Georgia, serif; }
.mb-card__icon { position: relative; z-index: 1; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 10px; background: rgba(15,185,166,.12); color: #0fb9a6; font-size: 1.35rem; margin-bottom: 1rem; }
.mb-card__title { position: relative; z-index: 1; font-size: 1.18rem; }
.mb-card__text { position: relative; z-index: 1; color: #5b6675; margin: 0; }
@media (max-width: 920px) { .mb-cardgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .mb-cardgrid { grid-template-columns: 1fr; } }

/* ============================== VIDEO GRID ================================
   video_layout: vimeo-masonry — colunas CSS, cartão de destaque, fundo claro */
.mb-vgrid { columns: 3; column-gap: 20px; }
.mb-vcard { position: relative; display: inline-block; width: 100%; margin: 0 0 20px; background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,.08); break-inside: avoid; cursor: pointer; transition: transform .25s ease, box-shadow .25s ease; }
.mb-vcard:hover { transform: translateY(-4px); box-shadow: 0 10px 26px rgba(0,0,0,.14); }
.mb-vcard__thumb { position: relative; aspect-ratio: 16/9; background: #d8dde4 center/cover no-repeat; }
.mb-vcard--feat .mb-vcard__thumb { aspect-ratio: 16/9; }
.mb-vcard__thumb::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background .25s ease; }
.mb-vcard:hover .mb-vcard__thumb::after { background: rgba(0,0,0,.35); }
.mb-vcard__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(.85); z-index: 2; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.85); color: #16202e; display: grid; place-items: center; font-size: 1.1rem; padding-left: 3px; opacity: 0; transition: opacity .25s ease, transform .25s ease; }
.mb-vcard:hover .mb-vcard__play { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.mb-vcard__badge { position: absolute; right: 8px; bottom: 8px; z-index: 2; background: rgba(0,0,0,.78); color: #fff; font-size: .76rem; font-weight: 600; padding: .15rem .45rem; border-radius: 4px; }
.mb-vcard__tag { position: absolute; left: 8px; top: 8px; z-index: 2; background: #e8552d; color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: .18rem .5rem; border-radius: 4px; }
.mb-vcard__body { padding: .85rem 1rem 1.05rem; }
.mb-vcard__title { font-size: 1.04rem; margin: 0 0 .3rem; color: #111; }
.mb-vcard__meta { color: #777; font-size: .85rem; }
.mb-vcard--feat { column-span: all; }
.mb-vcard--feat .mb-vcard__title { font-size: clamp(1.2rem, 2vw, 1.5rem); }
@media (max-width: 980px) { .mb-vgrid { columns: 2; } }
@media (max-width: 600px) { .mb-vgrid { columns: 1; } }

/* ============================== CATEGORIES ================================
   Content Categories — organizadas por ATIVIDADE (nunca por zonas do corpo) */
.mb-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.9rem, 2vw, 1.5rem); }
.mb-cat { display: flex; align-items: center; gap: 1rem; padding: 1.15rem 1.3rem; background: #fff; border: 1px solid #e6e9ee; border-radius: 12px; transition: border-color .2s ease, transform .2s ease; }
.mb-cat:hover { border-color: #e8552d; transform: translateY(-2px); text-decoration: none; }
.mb-cat__icon { font-size: 1.6rem; width: 50px; height: 50px; flex: none; display: grid; place-items: center; border-radius: 10px; background: rgba(22,32,46,.06); }
.mb-cat__name { font-weight: 700; color: #16202e; }
.mb-cat__count { color: #5b6675; font-size: .85rem; }
@media (max-width: 880px) { .mb-cats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .mb-cats { grid-template-columns: 1fr; } }

/* ============================== PRICING ===================================
   Pricing Plans — 4 planos, CTA neutra */
.mb-plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.5rem); align-items: stretch; }
.mb-plan { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid #e6e9ee; border-radius: 14px; padding: 1.9rem 1.5rem; transition: transform .2s ease, box-shadow .2s ease; }
.mb-plan:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(22,32,46,.1); }
.mb-plan--pop { border-color: #e8552d; box-shadow: 0 14px 34px rgba(232,85,45,.16); }
.mb-plan__flag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: #e8552d; color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .3rem .8rem; border-radius: 100px; }
.mb-plan__name { font-size: 1.2rem; margin-bottom: .35rem; }
.mb-plan__price { font-family: Georgia, serif; font-size: clamp(1.9rem, 3vw, 2.4rem); font-weight: 700; color: #16202e; line-height: 1; }
.mb-plan__per { color: #5b6675; font-size: .9rem; margin-bottom: 1.1rem; }
.mb-plan__features { list-style: none; margin: 0 0 1.5rem; padding: 0; flex: 1; }
.mb-plan__features li { position: relative; padding: .4rem 0 .4rem 1.5rem; color: #3b4757; font-size: .95rem; border-bottom: 1px dashed #eef1f5; }
.mb-plan__features li::before { content: "✓"; position: absolute; left: 0; color: #0fb9a6; font-weight: 700; }
@media (max-width: 980px) { .mb-plans { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .mb-plans { grid-template-columns: 1fr; } }

/* ============================== TEAM / EXPERTS ============================ */
.mb-team { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.1rem, 2.5vw, 1.9rem); }
.mb-member { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 16px rgba(22,32,46,.07); }
.mb-member__photo { aspect-ratio: 4/5; width: 100%; object-fit: cover; background: #d8dde4; }
.mb-member__body { padding: 1.25rem 1.4rem 1.6rem; }
.mb-member__name { font-size: 1.2rem; margin-bottom: .15rem; }
.mb-member__role { color: #e8552d; font-weight: 700; font-size: .9rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .7rem; }
.mb-member__bio { color: #5b6675; margin: 0; font-size: .96rem; }
@media (max-width: 880px) { .mb-team { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .mb-team { grid-template-columns: 1fr; } }

/* ============================== FAQ =======================================
   faq_design: minimal-flat — sem bordas/sombras, só espaçamento tipográfico */
.mb-faq { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 1.75rem; }
.faq-q { font-weight: 700; margin-bottom: .4rem; font-size: 1.08rem; color: #16202e; }
.faq-a { color: #5b6675; margin: 0; }

/* ============================== CAROUSEL / SLIDER =========================
   image_strategy: carousel-slider — depoimentos com auto-rotação */
.mb-slider { position: relative; max-width: 760px; margin: 0 auto; }
.mb-slide { display: none; text-align: center; }
.mb-slide.is-active { display: block; animation: mbFade .5s ease; }
@keyframes mbFade { from { opacity: 0; } to { opacity: 1; } }
.mb-slide__quote { font-family: Georgia, serif; font-size: clamp(1.2rem, 2.2vw, 1.6rem); font-style: italic; color: #16202e; margin-bottom: 1rem; }
.mb-slide__author { font-weight: 700; color: #e8552d; }
.mb-slide__meta { color: #5b6675; font-size: .9rem; }
.mb-dots { display: flex; gap: 10px; justify-content: center; margin-top: 1.6rem; }
.mb-dot { width: 11px; height: 11px; border-radius: 50%; border: none; background: #cbd2db; cursor: pointer; padding: 0; transition: background .2s ease; }
.mb-dot.is-active { background: #e8552d; }

/* ============================== PAYMENTS ================================== */
.mb-pay { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.mb-pay__item { background: #fff; border: 1px solid #e6e9ee; border-radius: 8px; padding: .65rem 1.05rem; font-weight: 700; font-size: .92rem; color: #16202e; }

/* ============================== CTA BAND ================================== */
.mb-ctaband { text-align: center; }
.mb-ctaband__title { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: .6rem; }
.mb-ctaband__text { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 1.6rem; }

/* ============================== FORMS =====================================
   form_placement: footer-section */
.mb-form { max-width: 620px; margin: 0 auto; }
.mb-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.mb-form__field { margin-bottom: 1.1rem; }
.mb-form__label { display: block; font-weight: 600; margin-bottom: .35rem; font-size: .95rem; }
.mb-form__input, .mb-form__textarea {
  width: 100%; padding: .8rem .95rem; border: 1px solid #cbd2db; border-radius: 8px;
  font: inherit; color: #16202e; background: #fff; transition: border-color .2s ease;
}
.mb-form__input:focus, .mb-form__textarea:focus { outline: none; border-color: #e8552d; }
.mb-form__textarea { min-height: 130px; resize: vertical; }
.mb-form__check { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; color: #5b6675; margin-bottom: 1.2rem; }
.mb-form__check input { margin-top: .25rem; }
.mb-form__note { font-size: .85rem; color: #8a93a1; margin-top: 1rem; }
.mb-alert { padding: .9rem 1.1rem; border-radius: 8px; margin-bottom: 1.3rem; font-weight: 600; }
.mb-alert--ok { background: rgba(15,185,166,.12); color: #0c6f64; border: 1px solid rgba(15,185,166,.4); }
.mb-alert--err { background: rgba(232,85,45,.1); color: #b23a18; border: 1px solid rgba(232,85,45,.35); }
@media (max-width: 560px) { .mb-form__row { grid-template-columns: 1fr; } }

/* ============================== AUTH ====================================== */
.mb-auth { min-height: 70vh; display: grid; place-items: center; padding: clamp(2rem, 5vw, 4rem) 1rem; background: #f4f6f8; }
.mb-auth__card { width: 100%; max-width: 440px; background: #fff; border-radius: 16px; padding: clamp(1.8rem, 4vw, 2.6rem); box-shadow: 0 20px 50px rgba(22,32,46,.1); }
.mb-auth__title { text-align: center; font-size: 1.6rem; margin-bottom: .4rem; }
.mb-auth__sub { text-align: center; color: #5b6675; margin-bottom: 1.7rem; }
.mb-auth__alt { text-align: center; margin-top: 1.4rem; color: #5b6675; font-size: .95rem; }

/* ============================== DASHBOARD ================================= */
.mb-dash__welcome { background: linear-gradient(120deg, #16202e, #243349); color: #fff; border-radius: 16px; padding: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 2.5rem; }
.mb-dash__welcome h1 { color: #fff; }
.mb-dash__welcome p { color: rgba(255,255,255,.85); margin: 0; }

/* ============================== PAGE HERO (interior) ====================== */
.mb-phero { background: #16202e; color: #fff; padding: clamp(2.6rem, 6vw, 4.2rem) 0; text-align: center; }
.mb-phero__title { color: #fff; font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: .5rem; }
.mb-phero__text { color: rgba(255,255,255,.82); max-width: 640px; margin: 0 auto; }

/* ============================== PROSE (legais) =========================== */
.mb-prose { max-width: 820px; margin: 0 auto; }
.mb-prose h2 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin-top: 2.2rem; }
.mb-prose h3 { font-size: 1.15rem; margin-top: 1.6rem; }
.mb-prose p, .mb-prose li { color: #3b4757; }
.mb-prose ul { padding-left: 1.2rem; }
.mb-prose li { margin-bottom: .5rem; }
.mb-prose__updated { color: #8a93a1; font-size: .9rem; margin-bottom: 2rem; }

/* disclaimer-notice: subtil e discreto (sem caixas de alerta, sem ícones) */
.mb-disc { font-size: .88rem; color: #8a93a1; text-align: center; max-width: 720px; margin: 0 auto; }
.mb-disc a { color: #5b6675; text-decoration: underline; }

/* ============================== DIVIDER ===================================
   section_divider: double-wave — duas ondas SVG sobrepostas */
.mb-divider { position: relative; line-height: 0; }
.mb-divider svg { display: block; width: 100%; height: 90px; }
.mb-divider .w1 { fill: rgba(232,85,45,.20); }
.mb-divider .w2 { fill: #f4f6f8; transform: translateY(-30px); }
.mb-divider--toNavy .w2 { fill: #16202e; }

/* ============================== FOOTER ====================================
   footer_design: card-style-footer — cartão arredondado escuro */
.mb-footer { padding: clamp(2rem, 5vw, 3.5rem) clamp(1rem, 3vw, 2rem); background: #f4f6f8; }
.mb-footer__card { max-width: 1180px; margin: 0 auto; background: #111827; color: #cbd5e1; border-radius: 20px; padding: clamp(2rem, 4vw, 2.8rem); box-shadow: 0 20px 50px rgba(0,0,0,.2); }
.mb-footer__cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: clamp(1.5rem, 3vw, 2.5rem); }
.mb-footer__col { min-width: 0; }
.mb-footer__brand { max-width: 320px; }
.mb-footer__company .mb-footer__addr { margin: 0; }
.mb-footer__logo { font-family: Georgia, serif; font-weight: 700; font-size: 1.3rem; margin-bottom: .6rem; }
.mb-footer__tag { color: #e8552d; font-weight: 700; margin-bottom: .6rem; }
.mb-footer__small { color: #94a3b8; font-size: .9rem; }
.mb-footer__h { color: #fff; font-size: 1rem; margin-bottom: .9rem; font-family: -apple-system, "Segoe UI", sans-serif; text-transform: uppercase; letter-spacing: .06em; }
.mb-footer__links { list-style: none; margin: 0; padding: 0; }
.mb-footer__links li { margin-bottom: .55rem; }
.mb-footer__links a { color: #cbd5e1; font-size: .93rem; }
.mb-footer__links a:hover { color: #fff; }
.mb-footer__addr { font-style: normal; color: #94a3b8; font-size: .9rem; line-height: 1.8; }
.mb-footer__addr a { color: #cbd5e1; }
.mb-footer__bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2rem; padding-top: 1.4rem; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; align-items: center; }
.mb-footer__copy, .mb-footer__disc { margin: 0; color: #94a3b8; font-size: .85rem; }
.mb-footer__disc a { color: #cbd5e1; }
.cc-footer-link, .cc-footer-separator { color: #94a3b8 !important; font-size: .85rem; }
@media (max-width: 860px) { .mb-footer__cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .mb-footer__cols { grid-template-columns: 1fr; } }

/* ============================== VIDEO MODAL ===============================
   video_player_modal: classic-dark (YouTube-like, barra vermelha) */
.video-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 1rem; opacity: 0; animation: vmFade .2s ease-out forwards; }
@keyframes vmFade { to { opacity: 1; } }
.video-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.92); }
.video-modal-player { position: relative; width: 100%; max-width: 860px; aspect-ratio: 16/9; background: #000 center/cover no-repeat; border-radius: 4px; box-shadow: 0 20px 60px rgba(0,0,0,.8); }
.video-modal-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 80px; height: 80px; border-radius: 50%; background: rgba(255,255,255,.9); color: #000; border: none; cursor: pointer; display: grid; place-items: center; font-size: 1.9rem; padding-left: 5px; transition: transform .15s ease, background .15s ease; }
.video-modal-play-btn:hover { background: #fff; transform: translate(-50%,-50%) scale(1.08); }
.video-modal-controls { position: absolute; left: 0; right: 0; bottom: 0; height: 44px; background: rgba(0,0,0,.85); color: #fff; display: flex; align-items: center; gap: .6rem; padding: 0 .8rem; font-size: 13px; border-radius: 0 0 4px 4px; }
.video-modal-controls .vm-track { flex: 1; height: 4px; background: rgba(255,255,255,.3); border-radius: 2px; position: relative; }
.video-modal-controls .vm-track::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 22%; background: #f00; border-radius: 2px; }
.video-modal-close { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.15); color: #fff; border: none; cursor: pointer; font-size: 1.1rem; display: grid; place-items: center; transition: background .15s ease; }
.video-modal-close:hover { background: rgba(255,255,255,.3); }
.video-modal-title { position: absolute; top: 14px; left: 16px; color: #fff; font-weight: 600; font-size: .95rem; text-shadow: 0 1px 4px rgba(0,0,0,.6); }

/* utilidades */
.t-center { text-align: center; }
.mt-2 { margin-top: 1.5rem; }
.lead { font-size: clamp(1.05rem, 1.2vw + .8rem, 1.25rem); color: #5b6675; }

/* ==========================================================================
   MÓDULO MENU MÓVEL — variante slide-top (CSS funcional, NÃO editar)
   ========================================================================== */
[data-mm-header]{position:relative}[data-mm-toggle]{display:flex;flex-direction:column;justify-content:center;gap:5px;background:none;border:none;cursor:pointer;padding:8px;z-index:1001}[data-mm-toggle] span{display:block;width:24px;height:2px;background:var(--mm-text);transition:var(--mm-transition)}[data-mm-menu]{position:fixed;top:0;left:0;width:100%;background:var(--mm-bg);transform:translateY(-100%);transition:transform var(--mm-transition);z-index:1100;overflow-y:auto;-webkit-overflow-scrolling:touch;display:flex;flex-direction:column;padding:60px 24px 24px;box-shadow:0 4px 20px rgba(0,0,0,0.1)}[data-mm-menu].mm-open{transform:translateY(0)}[data-mm-menu] ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:0}[data-mm-menu] ul li a{display:block;padding:14px 0;color:#fff;text-decoration:none;font-size:16px;border-bottom:1px solid rgba(255,255,255,0.12);transition:color var(--mm-transition)}[data-mm-menu] ul li a:hover{color:var(--mm-primary)}[data-mm-close]{position:absolute;top:16px;right:16px;background:none;border:none;font-size:28px;line-height:1;cursor:pointer;color:#fff;padding:4px 8px}[data-mm-overlay]{position:fixed;top:0;left:0;width:100%;height:100%;background:var(--mm-overlay-bg);opacity:0;visibility:hidden;transition:opacity var(--mm-transition),visibility var(--mm-transition);z-index:1050}[data-mm-overlay].mm-visible{opacity:1;visibility:visible}@media(min-width:768px){[data-mm-toggle]{display:none!important}[data-mm-menu]{position:static!important;width:auto!important;height:auto!important;background:transparent!important;transform:none!important;padding:0!important;overflow:visible!important;flex-direction:row!important;box-shadow:none!important}[data-mm-menu] ul{flex-direction:row;gap:0;align-items:center}[data-mm-menu] ul li a{padding:8px 16px;border-bottom:none;font-size:inherit;color:#16202e}[data-mm-close]{display:none!important}[data-mm-overlay]{display:none!important}}@media(prefers-reduced-motion:reduce){[data-mm-menu],[data-mm-overlay],[data-mm-toggle] span{transition:none!important}}
