/* public/css/landing-m2000.css
   (limpo: sem repetições + autocomplete igual à 2ª imagem)
*/
:root{
  --brand-orange: #FF8D19;
}

/* =========================
   HELPERS (scroll horizontal)
========================= */
.scroll-x{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.scrollbar-reserve{
  padding-bottom: 10px;
  margin-bottom: -10px;
}
.scroll-x::-webkit-scrollbar{ height: 8px; }
.scroll-x::-webkit-scrollbar-thumb{
  background: #cbd5e1;
  border-radius: 9999px;
}

/* =========================
   SR-ONLY (acessibilidade)
========================= */
.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* =========================
   CHAT (FAB + Painel)
========================= */
.m2-chat-fab{
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 9999;
}
.m2-chat-fab button{
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 9999px;
  cursor: pointer;
  background: #25D366; /* WhatsApp verde */
  box-shadow: 0 8px 30px rgba(0,0,0,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter .15s ease, transform .05s ease;
  margin: 16px;
}
.m2-chat-fab button:hover{
  filter: brightness(1.05);
  transform: translateY(-1px);
}
.m2-chat-fab svg{
  width: 30px;   /* só o símbolo */
  height: 30px;  /* só o símbolo */
  color: #fff;
}

.m2-chat-panel{
  position: fixed;
  right: 0 !important;
  bottom: 0 !important;
  margin: 88px 16px 16px 0;
  width: 360px;
  max-width: calc(100vw - 32px);
  height: 520px;
  max-height: calc(100vh - 180px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
  overflow: hidden;
  z-index: 9999;
  display: none;
  border: 1px solid rgba(0,0,0,.08);
}
.m2-chat-panel.open{ display: block; }

.m2-chat-head{
  background: linear-gradient(90deg, var(--brand-orange) 0%, #ea580c 100%);
  color: #fff;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.m2-chat-title{
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
}
.m2-chat-sub{
  font-size: 12px;
  opacity: .9;
}
.m2-chat-close{
  border: 0;
  background: rgba(255,255,255,.18);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  cursor: pointer;
}
.m2-chat-body{
  padding: 12px;
  height: calc(100% - 56px);
  overflow: auto;
  background: #fafafa;
  -webkit-overflow-scrolling: touch;
}
.m2-chat-bubble{
  max-width: 90%;
  padding: 10px 12px;
  border-radius: 14px;
  margin: 8px 0;
  font-size: 13px;
  line-height: 1.35;
  border: 1px solid rgba(0,0,0,.06);
  white-space: pre-wrap;
}
.m2-chat-bot{ background: #fff; }
.m2-chat-user{
  background: #fff7ed;
  margin-left: auto;
  border-color: rgba(249,115,22,.25);
}

/* Opções em coluna */
.m2-chat-actions{
  padding: 6px 0 0 0;
  background: transparent;
  border-top: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.m2-chat-actions .m2-chip{
  width: 100%;
  justify-content: center;
  text-align: center;
  padding: 12px 14px;
  font-size: 14px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  cursor: pointer;
  margin: 0;
  transition: transform .05s ease, filter .15s ease;
}
.m2-chat-actions .m2-chip:hover{
  transform: translateY(-1px);
  filter: brightness(1.02);
}
.m2-chat-actions .m2-chip.primary{
  background: linear-gradient(90deg, #f97316 0%, #ea580c 100%);
  color: #fff;
  border-color: transparent;
}

@media (max-width: 480px){
  .m2-chat-fab{
    right: 16px;
    bottom: 84px;
  }
  .m2-chat-panel{
    right: 0 !important;
    bottom: 0 !important;
    width: calc(100vw - 16px);
    margin: 84px 8px 8px 0;
    height: 70vh;
  }
}

/* =========================================================
   FIX DEFINITIVO: HERO (#conteudo) sempre LIGHT (sem texto branco)
   - sobrescreve classes tailwind tipo text-white/xx
   - NÃO afeta o resto da página
========================================================= */
#conteudo{
  background: #e3e3e3 !important;
  color: #0f172a !important;
}

/* fundo suave */
#conteudo .m2-hero-bg{
  background:
    radial-gradient(900px 520px at 12% 78%, rgba(249,115,22,.10) 0%, rgba(249,115,22,0) 60%),
    radial-gradient(760px 560px at 88% 28%, rgba(249,115,22,.08) 0%, rgba(249,115,22,0) 62%),
    linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%) !important;
}

/* tudo que for texto dentro do hero: preto */
#conteudo,
#conteudo *{
  color: inherit;
}

/* títulos */
#conteudo h1,
#conteudo h2,
#conteudo h3{
  color: #0f172a !important;
}

/* parágrafos e textos secundários */
#conteudo p,
#conteudo li,
#conteudo span,
#conteudo small,
#conteudo .text-mute{
  color: #334155 !important;
}

/* ✅ ESTE é o que corrige sua lista (estava text-white/85 no HTML) */
#conteudo ul,
#conteudo ul li{
  color: #334155 !important;
}

/* manter o destaque laranja */
#conteudo .text-brand-700,
#conteudo .text-brand-600{
  color: var(--brand-orange) !important;
}

/* ícones/checks roxos continuam roxos (não herdar preto) */
#conteudo svg,
#conteudo .text-purple-500,
#conteudo .text-purple-600{
  color: inherit;
}
#conteudo .text-purple-500{ color: #8b5cf6 !important; }
#conteudo .text-purple-600{ color: #7c3aed !important; }

/* inputs */
#conteudo input{
  background: #ffffff !important;
  color: #0f172a !important;
}
#conteudo input::placeholder{
  color: #94a3b8 !important;
}
/* =========================================================
   FIX CTA HERO — texto do botão sempre branco
========================================================= */
#conteudo a,
#conteudo a span{
  color: #fff;
}
/* =========================================================
   CTA TESTE GRÁTIS — texto e seta sempre brancos
   (passa por cima do #conteudo * { color: inherit; })
========================================================= */
#conteudo #ctaTesteGratis{
  color: #fff !important;
}
#conteudo #ctaTesteGratis *{
  color: #fff !important;
}

/* =========================
   NAV HEADER – interação premium
========================= */
.nav-link{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 2px;
  font-size: 15px;
  font-weight: 500;
  color: #475569;
  cursor: pointer;
  text-decoration: none;
}
.nav-link::after{
  content:"";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--brand-orange);
  border-radius: 9999px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .2s ease;
}
.nav-icon{
  font-size: 14px;
  line-height: 1;
  color: #94a3b8;
  transition: transform .2s ease, color .2s ease;
}
.nav-link:hover{
  color: #0f172a;
}
.nav-link:hover::after{
  transform: scaleX(1);
}
.nav-link--down:hover .nav-icon{
  color: var(--brand-orange);
  transform: translateY(2px);
}
.nav-link--right:hover .nav-icon{
  color: var(--brand-orange);
  transform: translateX(4px);
}
#btnTreinamentos.is-open .nav-icon{
  color: var(--brand-orange);
  transform: translateY(2px);
}
#btnTreinamentos.is-open::after{
  transform: scaleX(1);
}

/* =========================
   MegaMenu (Alura-style)
========================= */
.m2-mega{
  position: fixed;
  left: 0;
  right: 0;
  top: 64px; /* header h-16 */
  z-index: 9999;
}
.m2-mega__overlay{
  position: fixed;
  inset: 0;
  background: rgba(2,6,23,.55);
}
.m2-mega__panel{
  position: relative;
  width: calc(100vw - 48px);
  margin: 18px 24px 0;
  background: rgba(7, 21, 37, .96);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  box-shadow: 0 18px 70px rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
  padding: 16px 20px 20px;
  max-height: none;
  overflow: visible;
}
.m2-mega__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.m2-mega__title{
  font-size: 12px;
  letter-spacing: .12em;
  font-weight: 700;
  color: rgba(255,255,255,.70);
}
.m2-mega__all{
  font-size: 14px;
  font-weight: 700;
  color: #fb923c;
}
.m2-mega__all:hover{ color:#fdba74; }
.m2-mega__rule{
  height:1px;
  background: rgba(255,255,255,.10);
  margin: 12px 0 14px;
}
.m2-mega__grid{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px 22px;
}
.m2-mega__col{ padding: 2px 0; }
.m2-mega__link{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  letter-spacing: .03em;
  font-size: 13px;
  text-transform: uppercase;
  padding: 6px 2px 10px;
}
.m2-mega__link::after{
  content:"";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 4px;
  height: 2px;
  background: var(--brand-orange);
  border-radius: 9999px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .18s ease;
  opacity: .95;
}
.m2-mega__arrow{
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .18s ease, transform .18s ease;
  color: var(--brand-orange);
  font-weight: 900;
}
.m2-mega__link:hover::after{ transform: scaleX(1); }
.m2-mega__link:hover .m2-mega__arrow{
  opacity: 1;
  transform: translateX(0);
}
.m2-mega__close{
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  border: 1px solid rgba(255,255,255,.15);
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
.m2-mega__close:hover{
  background: rgba(249,115,22,.18);
  transform: rotate(90deg);
}

@media (max-width: 1280px){
  .m2-mega__grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 1024px){
  .m2-mega{ display:none !important; }
}

/* =========================
   Z-INDEX/CLIQUES (segurança)
========================= */
header { z-index: 10000 !important; }
#conteudo .m2-hero-bg { pointer-events: none !important; }
#megaTreinamentos { pointer-events: auto; }
#megaTreinamentos.hidden { display: none !important; }

/* =========================
   jQuery UI Autocomplete (igual à 2ª imagem)
   - dropdown dentro do card (#navSearchBox)
========================= */
.ui-state-disabled{
  opacity: .8;
  cursor: default;
}

/* referência para posicionar o UL dentro do card */
#navSearchBox .relative{ position: relative; }

/* dropdown INSIDE do card */
#navSearchBox .ui-autocomplete{
  position: absolute !important;
  top: calc(100% + 12px) !important;
  left: 0 !important;
  right: 0 !important;
  width: auto !important;

  z-index: 9999 !important;
  max-height: 22rem;
  overflow-y: auto;

  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: 0 18px 60px rgba(0,0,0,.12);

  padding: 0; /* sem padding no container */
}

/* MOBILE: quando o appendTo for o wrapper .relative do input mobile */
.relative > .ui-autocomplete{
  position: absolute !important;
  top: calc(100% + 12px) !important;
  left: 0 !important;
  right: 0 !important;
  width: auto !important;

  z-index: 9999 !important;
  max-height: 22rem;
  overflow-y: auto;

  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: 0 18px 60px rgba(0,0,0,.12);

  padding: 0;
}

/* remove margens e cria separador como lista */
#navSearchBox .ui-menu-item{ margin: 0 !important; }
#navSearchBox .ui-menu-item + .ui-menu-item{
  border-top: 1px solid #e2e8f0;
}

/* wrapper do item (nosso layout clean) */
#navSearchBox .ui-menu-item-wrapper.ac2-wrap{
  padding: 16px 18px !important;
  border-radius: 0 !important;
  background: transparent !important;
  border: none !important;
}

/* hover/active discreto */
#navSearchBox .ui-menu-item-wrapper.ui-state-active,
#navSearchBox .ui-menu-item-wrapper.ui-state-focus,
#navSearchBox .ui-menu-item-wrapper:hover{
  background: #f8fafc !important;
  color: inherit !important;
  border: none !important;
}

/* linha: texto à esquerda, badge à direita */
#navSearchBox .ac2-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
#navSearchBox .ac2-text{
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.25;

  white-space: normal; /* permite quebrar linha */
  overflow: visible;
}

/* badge laranja outline */
#navSearchBox .ac2-badge{
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 13px;
  font-weight: 700;
  color: var(--brand-orange);

  background: transparent;
  border: 1px solid rgba(249,115,22,.55);
  padding: 10px 14px;
  border-radius: 9999px;

  max-width: 55%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* =========================
   MOBILE NAV: permitir scroll interno e travar body
========================= */

/* trava o scroll da página quando o menu estiver aberto */
body.m2-lock{
  overflow: hidden;
  height: 100%;
  touch-action: none;
}

/* painel do menu mobile com scroll próprio */
#mobileNav{
  max-height: calc(100vh - 64px); /* 64px = header h-16 */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain; /* evita "puxar" a página por trás */
  padding-bottom: 18px;
}

/* melhora o toque no mobile */
#mobileNav, #mobileNav *{
  touch-action: pan-y;
}
/* =========================================================
   LANDING — AUTOCOMPLETE: separador (desktop + mobile)
========================================================= */

/* separador por item (vale p/ desktop e p/ mobile) */
#navSearchBox .ui-autocomplete li,
.relative > .ui-autocomplete li{
  margin: 0 !important;
  padding: 0 !important;
  border-bottom: 1px solid #e2e8f0 !important; /* ✅ linha */
}
#navSearchBox .ui-autocomplete li:last-child,
.relative > .ui-autocomplete li:last-child{
  border-bottom: 0 !important;
}

/* evita conflito com a regra antiga de border-top */
#navSearchBox .ui-menu-item + .ui-menu-item{
  border-top: 0 !important;
}
/* =========================================================
   LANDING — BADGE SÉRIE (laranja em caixa, lado direito)
========================================================= */
#navSearchBox .ac2-row,
.relative > .ui-autocomplete .ac2-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}

#navSearchBox .ac2-text,
.relative > .ui-autocomplete .ac2-text{
  flex: 1 1 auto;
  min-width: 0;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.25;
}

#navSearchBox .ac2-badge,
.relative > .ui-autocomplete .ac2-badge{
  flex: 0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;

  font-size: 12px;
  font-weight: 700;
  color: var(--brand-orange);

  background: #fff7ed;                 /* caixa */
  border: 1px solid rgba(249,115,22,.55);
  padding: 8px 12px;
  border-radius: 9999px;

  white-space: nowrap;
  max-width: 52%;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* =========================================================
   AUTOCOMPLETE — remover bold (título + série)
========================================================= */

/* texto do resultado */
#navSearchBox .ac2-text,
.relative > .ui-autocomplete .ac2-text{
  font-weight: 500 !important;   /* antes: 600 */
}

/* badge da série */
#navSearchBox .ac2-badge,
.relative > .ui-autocomplete .ac2-badge{
  font-weight: 500 !important;   /* antes: 700 */
}
/* =========================================================
   QUIZ CHAT (Mecânica 2000) — Bot esquerda / Usuário direita
   - sem bold
   - cantos pouco arredondados
========================================================= */

.m2q-shell{
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(0,0,0,.10);
}

.m2q-chat{
  height: 420px;
  overflow: auto;
  padding: 16px 16px 18px;

  background:
    linear-gradient(180deg, #ffffff 0%, #fafafa 100%),
    repeating-linear-gradient(
      0deg,
      rgba(15,23,42,.03) 0px,
      rgba(15,23,42,.03) 1px,
      transparent 1px,
      transparent 12px
    );

  scrollbar-width: thin;
  scrollbar-color: rgba(15,23,42,.25) transparent;
}
.m2q-chat::-webkit-scrollbar{ width: 10px; }
.m2q-chat::-webkit-scrollbar-thumb{
  background: rgba(15,23,42,.18);
  border-radius: 9999px;
}
.m2q-chat::-webkit-scrollbar-track{ background: transparent; }

.m2q-msg{
  max-width: 78%;
  border-radius: 8px;            /* pouco arredondado */
  padding: 12px 12px;
  margin: 10px 0;
  line-height: 1.35;
  font-size: 14px;
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
  border: 1px solid rgba(15,23,42,.10);
  background: #ffffff;
  color: #0f172a;
  font-weight: 400;
}

/* Bot (esquerda) */
.m2q-msg.bot{
  margin-right: auto;
}

/* Usuário (direita) */
.m2q-msg.user{
  margin-left: auto;
  background: #0b1220;
  color: rgba(255,255,255,.92);
  border-color: rgba(255,255,255,.08);
}

/* garantir sem bold */
.m2q-msg b, .m2q-msg strong{ font-weight: 400 !important; }

/* typing */
.m2q-typing{
  width: 62px;
  padding: 10px 10px;
  border-radius: 8px;
  background: #ffffff;
}
.m2q-dots{ display:flex; gap:6px; align-items:center; }
.m2q-dot{
  width: 6px; height: 6px; border-radius: 9999px;
  background: rgba(249,115,22,.95);
  opacity: .25;
  animation: m2qDot 1.2s infinite;
}
.m2q-dot:nth-child(2){ animation-delay: .15s; }
.m2q-dot:nth-child(3){ animation-delay: .3s; }
@keyframes m2qDot{
  0%, 60%, 100% { transform: translateY(0); opacity:.25; }
  30% { transform: translateY(-3px); opacity:1; }
}

/* opções dentro da bolha do bot */
.m2q-options{
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* botão opção (sem pill) */
.m2q-opt{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 12px;
  border-radius: 8px;            /* sem pill */
  background: #fff7ed;
  border: 1px solid rgba(249,115,22,.55);
  color: #9a3412;
  font-weight: 600;
  font-size: 13px;
  cursor:pointer;
  transition: transform .08s ease, filter .15s ease, background .15s ease;
}
.m2q-opt:hover{
  transform: translateY(-1px);
  background: #ffedd5;
}
.m2q-opt:active{ transform: translateY(0); }

.m2q-opt.secondary{
  background: #ffffff;
  border-color: rgba(15,23,42,.18);
  color: #0f172a;
}

/* input do nome dentro do chat */
.m2q-namewrap{
  margin-top: 10px;
  display: grid;
  gap: 10px;
}
.m2q-input{
  width: 100%;
  padding: 11px 12px;
  border-radius: 8px;
  border: 1px solid rgba(15,23,42,.18);
  outline: none;
  background: #fff;
  color: #0f172a;
}
.m2q-input:focus{
  border-color: rgba(249,115,22,.55);
  box-shadow: 0 0 0 3px rgba(249,115,22,.18);
}

.m2q-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 8px;
  border: 1px solid rgba(249,115,22,.55);
  background: var(--brand-orange);
  color: #fff;
  font-weight: 500;
  cursor: pointer;
}
.m2q-cta:hover{ filter: brightness(1.03); }
.m2q-cta.secondary{
  background: #ffffff;
  color: #0f172a;
  border-color: rgba(15,23,42,.18);
}

/* link final */
.m2q-link{
  color: var(--brand-orange);
  text-decoration: underline;
  font-weight: 600;
}

@media (max-width: 640px){
  .m2q-chat{ height: 360px; padding: 12px 12px 16px; }
  .m2q-msg{ max-width: 92%; font-size: 13px; }
}
/* =========================================================
   3 CARDS GRANDES — versão clean (background branco)
========================================================= */

.m2k-card{
  position: relative;
  padding: 36px 28px;
  min-height: 320px;

  background: #ffffff;                 /* ✅ branco */
  border: 0;                            /* ❌ sem borda */
  border-radius: 16px;                 /* leve, moderno */
  box-shadow: 0 18px 40px rgba(15,23,42,.08);

  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.m2k-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(15,23,42,.12);
}

/* remove efeitos antigos */
.m2k-card::before,
.m2k-card::after{
  display: none !important;
}

/* ícone */
.m2k-card__icon{
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--brand-orange); /* brand-500 */
  margin-bottom: 18px;
}

.m2k-card__icon svg{
  width: 40px;
  height: 40px;
}

/* título */
.m2k-card__title{
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--brand-orange);
}

/* texto principal */
.m2k-card__text{
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: #0f172a;
}

/* texto secundário */
.m2k-card__mini{
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.5;
  color: #475569;
}

/* responsivo */
@media (max-width: 1024px){
  .m2k-card{
    min-height: auto;
  }
}
/* =========================================================
   MOBILE — título antes do chat (seção recomendação)
========================================================= */
@media (max-width: 1024px){

  /* container da seção */
  #m2-reco .grid{
    display: flex;
    flex-direction: column;
  }

  /* bloco de texto (título) */
  #m2-reco .grid > div:last-child{
    order: 1;
  }

  /* bloco do chat */
  #m2-reco .grid > div:first-child{
    order: 2;
    margin-top: 24px;
  }

}
/* =========================================================
   MOBILE — reduzir distância entre botão e chat
========================================================= */
@media (max-width: 1024px){

  /* reduz espaço abaixo do botão */
  #m2-reco a[href="#m2-reco"]{
    margin-bottom: 12px !important;
  }

  /* remove margem extra do chat */
  #m2-reco .m2a-shell{
    margin-top: 8px !important;
  }

  /* se existir gap excessivo no container */
  #m2-reco .grid{
    gap: 16px !important;
  }

}
/* =========================================================
   HERO VIDEO — sem faixas pretas
========================================================= */
#heroMedia{
  background: transparent !important; /* remove preto */
}

/* garante que iframe/video preencham o wrapper */
#heroMedia iframe,
#heroMedia video{
  width: 100% !important;
  height: 100% !important;
  display: block;
}
