/* =========================================================
   Bubble Catapulta — folha de estilo
   ========================================================= */

:root {
  --noite-1: #1b1038;
  --noite-2: #2a1b57;
  --noite-3: #120b26;
  --madeira-1: #7c4b22;
  --madeira-2: #5a3416;
  --madeira-3: #43250f;
  --madeira-borda: #a96a33;
  --madeira-luz: #b07640;
  --ouro: #ffcf3f;
  --ouro-escuro: #d99b12;
  --creme: #f6e7c8;
  --verde: #7ec93f;
  --verde-esc: #4e8f1e;
  --rosa: #e8489b;
  --ciano: #3fc6ea;
  --roxo: #8b5cf6;
  --perigo: #ff5765;

  --fonte-display: 'Bungee', 'Baloo 2', system-ui, sans-serif;
  --fonte-corpo: 'Baloo 2', system-ui, sans-serif;

  --raio: 18px;
  --sombra-alta: 0 10px 30px rgba(0, 0, 0, .55);
}

* { box-sizing: border-box; }

/* O atributo hidden do HTML é display:none na folha do navegador, mas
   qualquer 'display' declarado aqui o sobrescreve — e o elemento continua
   invisível porém clicável, engolindo os toques. Esta regra fecha esse furo. */
[hidden] { display: none !important; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overscroll-behavior: none;
}

body {
  font-family: var(--fonte-corpo);
  font-weight: 600;
  color: var(--creme);
  background: radial-gradient(120% 80% at 50% 0%, var(--noite-2) 0%, var(--noite-1) 45%, var(--noite-3) 100%);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

/* Céu estrelado sutil */
.fundo-estrelas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(1.6px 1.6px at 12% 18%, rgba(255,255,255,.7) 50%, transparent 51%),
    radial-gradient(1.2px 1.2px at 78% 9%,  rgba(255,255,255,.5) 50%, transparent 51%),
    radial-gradient(1.8px 1.8px at 44% 32%, rgba(255,255,255,.6) 50%, transparent 51%),
    radial-gradient(1.2px 1.2px at 88% 46%, rgba(255,255,255,.45) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 24% 62%, rgba(255,255,255,.4) 50%, transparent 51%),
    radial-gradient(1.2px 1.2px at 66% 76%, rgba(255,255,255,.35) 50%, transparent 51%);
  animation: cintilar 6s ease-in-out infinite alternate;
}

@keyframes cintilar {
  from { opacity: .55; }
  to   { opacity: 1; }
}

/* =========================================================
   TELAS DE LOGIN / CADASTRO
   ========================================================= */

.tela-acesso {
  display: grid;
  place-items: center;
  padding: 24px 18px 60px;
  min-height: 100dvh;
}

.cartao {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  padding: 30px 26px 26px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,0)),
    linear-gradient(180deg, var(--madeira-1), var(--madeira-3));
  border: 3px solid rgba(0,0,0,.35);
  box-shadow:
    inset 0 0 0 3px var(--madeira-luz),
    inset 0 2px 0 rgba(255,255,255,.18),
    var(--sombra-alta);
  text-align: center;
}

.cartao__marca {
  position: relative;
  height: 76px;
  margin-bottom: 6px;
}

.cartao__bolha {
  position: absolute;
  width: 62px;
  height: 62px;
  top: 6px;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.45));
  animation: flutuar 3.2s ease-in-out infinite;
}
.cartao__bolha.b1 { left: calc(50% - 78px); animation-delay: 0s; }
.cartao__bolha.b2 { left: calc(50% - 31px); animation-delay: .35s; width: 70px; height: 70px; top: 0; z-index: 2; }
.cartao__bolha.b3 { left: calc(50% + 20px); animation-delay: .7s; }

@keyframes flutuar {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-9px) rotate(2deg); }
}

.cartao__titulo {
  font-family: var(--fonte-display);
  font-size: clamp(24px, 6.5vw, 32px);
  margin: 4px 0 6px;
  color: var(--ouro);
  text-shadow: 0 3px 0 rgba(0,0,0,.45);
  letter-spacing: .5px;
}

.cartao__sub {
  margin: 0 0 20px;
  font-size: 15px;
  color: rgba(246,231,200,.78);
}

.cartao__rodape {
  margin: 18px 0 0;
  font-size: 15px;
  color: rgba(246,231,200,.75);
}

.cartao__rodape a {
  color: var(--ouro);
  text-decoration: none;
  border-bottom: 2px solid rgba(255,207,63,.4);
}
.cartao__rodape a:hover { border-bottom-color: var(--ouro); }

/* --- Formulário --- */

.form { display: grid; gap: 14px; text-align: left; }

.campo { display: grid; gap: 6px; }

.campo__rotulo {
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(246,231,200,.6);
  padding-left: 4px;
}

.campo input {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--fonte-corpo);
  font-size: 17px;
  font-weight: 700;
  color: var(--creme);
  background: rgba(0,0,0,.35);
  border: 2px solid rgba(0,0,0,.4);
  border-radius: 14px;
  box-shadow: inset 0 2px 6px rgba(0,0,0,.5);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}

.campo input::placeholder { color: rgba(246,231,200,.3); font-weight: 600; }

.campo input:focus {
  border-color: var(--ouro);
  box-shadow: inset 0 2px 6px rgba(0,0,0,.5), 0 0 0 4px rgba(255,207,63,.18);
}

/* --- Botões --- */

.botao {
  display: block;
  width: 100%;
  padding: 15px 18px;
  font-family: var(--fonte-display);
  font-size: 17px;
  letter-spacing: .5px;
  color: #2a1400;
  background: linear-gradient(180deg, #ffe27a, var(--ouro) 45%, var(--ouro-escuro));
  border: 3px solid rgba(0,0,0,.35);
  border-radius: 16px;
  box-shadow: 0 5px 0 #9c6c05, 0 10px 18px rgba(0,0,0,.4);
  cursor: pointer;
  transition: transform .08s, box-shadow .08s, filter .15s;
  text-shadow: 0 1px 0 rgba(255,255,255,.35);
}

.botao:active {
  transform: translateY(4px);
  box-shadow: 0 1px 0 #9c6c05, 0 4px 10px rgba(0,0,0,.4);
}

.botao:disabled {
  filter: grayscale(.75) brightness(.6);
  cursor: not-allowed;
  box-shadow: 0 5px 0 rgba(0,0,0,.3);
}

.botao--retirar {
  margin: 10px 0 0;
  background: linear-gradient(180deg, #9be05a, var(--verde) 45%, var(--verde-esc));
  color: #10290a;
  box-shadow: 0 5px 0 #35660f, 0 10px 18px rgba(0,0,0,.4);
}
.botao--retirar:active { box-shadow: 0 1px 0 #35660f, 0 4px 10px rgba(0,0,0,.4); }

.botao--retirar.pulsa { animation: pulsar 1.1s ease-in-out infinite; }

@keyframes pulsar {
  0%, 100% { filter: brightness(1); }
  50%      { filter: brightness(1.22); }
}

/* --- Alertas --- */

.alerta {
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 87, 101, .16);
  border: 2px solid rgba(255, 87, 101, .45);
  color: #ffd9dd;
  font-size: 15px;
}

.flash {
  position: fixed;
  bottom: calc(14px + env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: max-content;
  max-width: calc(100vw - 28px);
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  background: rgba(126, 201, 63, .96);
  color: #10290a;
  box-shadow: var(--sombra-alta);
  animation: entrarFlash .3s ease-out, sairFlash .4s ease-in 3.4s forwards;
}
.flash--erro { background: rgba(255, 87, 101, .96); color: #fff; }

@keyframes entrarFlash { from { opacity: 0; transform: translate(-50%, 20px); } }
@keyframes sairFlash   { to   { opacity: 0; transform: translate(-50%, 20px); } }

.aviso-fake {
  position: relative;
  z-index: 1;
  margin: 18px auto 10px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(246,231,200,.28);
}

/* =========================================================
   TELA DO JOGO
   ========================================================= */

.tela-jogo {
  overflow: hidden;
  height: 100dvh;
}

.jogo {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100dvh;
  max-width: 520px;
  margin: 0 auto;
  padding: 8px 10px calc(6px + env(safe-area-inset-bottom));
}

/* --- Painéis de madeira --- */

.painel {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(6px, 2vw, 12px);
  flex: 0 0 auto;
  min-width: 0;
  padding: 10px clamp(8px, 3vw, 16px);
  border-radius: var(--raio);
  background: linear-gradient(180deg, var(--madeira-1), var(--madeira-3));
  border: 3px solid rgba(0,0,0,.4);
  box-shadow:
    inset 0 0 0 2px var(--madeira-luz),
    inset 0 2px 0 rgba(255,255,255,.15),
    0 6px 14px rgba(0,0,0,.4);
}

.painel__voltar {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 11px;
  background: rgba(0,0,0,.32);
  border: 2px solid rgba(0,0,0,.35);
  box-shadow: inset 0 2px 0 rgba(255,255,255,.1);
  color: var(--creme);
  font-size: 23px;
  line-height: 1;
  text-decoration: none;
  padding-bottom: 4px;
}

.painel__bloco { display: grid; gap: 1px; min-width: 0; }
.painel__bloco--dir { margin-left: auto; text-align: right; justify-items: end; }

.painel__rotulo {
  font-size: 10px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(246,231,200,.55);
}

.painel__valor {
  font-family: var(--fonte-display);
  font-size: clamp(13px, 4.2vw, 19px);
  color: var(--ouro);
  text-shadow: 0 2px 0 rgba(0,0,0,.45);
  white-space: nowrap;
}

.painel__premio {
  font-family: var(--fonte-display);
  font-size: 27px;
  line-height: 1.1;
  color: var(--ouro);
  text-shadow: 0 3px 0 rgba(0,0,0,.5);
}

.painel__nota {
  font-size: 12px;
  color: rgba(246,231,200,.55);
}

.painel__valor.piscou,
.painel__premio.piscou { animation: destacar .45s ease-out; }

@keyframes destacar {
  0%   { transform: scale(1);    color: var(--ouro); }
  35%  { transform: scale(1.18); color: #fff8dc; }
  100% { transform: scale(1);    color: var(--ouro); }
}

/* --- Controle de aposta --- */

.aposta { display: flex; align-items: center; gap: 8px; }

.aposta__btn {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 10px;
  background: rgba(0,0,0,.32);
  border: 2px solid rgba(0,0,0,.4);
  box-shadow: inset 0 2px 0 rgba(255,255,255,.12);
  color: var(--creme);
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}
.aposta__btn:active { transform: translateY(2px); }
.aposta__btn:disabled { opacity: .35; cursor: not-allowed; }

/* --- Arena --- */

.arena {
  position: relative;
  flex: 1 1 auto;
  min-height: 42dvh;
  border-radius: 22px;
  overflow: hidden;
  border: 3px solid rgba(0,0,0,.45);
  box-shadow: inset 0 0 0 2px rgba(176,118,64,.5), 0 8px 20px rgba(0,0,0,.45);
  background: linear-gradient(180deg, #2b1a5e 0%, #1d1142 60%, #16214a 100%);
  touch-action: none;
}

.arena__canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.arena__poste {
  position: absolute;
  top: -10px;
  height: calc(100% + 20px);
  width: 22px;
  object-fit: fill;
  pointer-events: none;
  opacity: .95;
  /* O poste original é laranja com cipó ciano, do cenário antigo.
     Girar o matiz pro roxo e escurecer faz ele virar tronco morto,
     no clima do cemitério, sem precisar gerar arte nova. */
  filter: hue-rotate(215deg) saturate(.75) brightness(.62);
}
/* --recuo-poste é escrito pelo JS: em telas largas e baixas a grade
   fica mais estreita que a arena, e os postes acompanham a borda real
   do campo em vez de ficarem colados na moldura. */
.arena__poste--esq { left: var(--recuo-poste, 0px); }
.arena__poste--dir { right: var(--recuo-poste, 0px); transform: scaleX(-1); }

.arena__aviso {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 87, 101, .9);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(0,0,0,.45);
  animation: entrarFlash .25s ease-out;
}

/* --- Overlay de início / fim --- */

.arena__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 14px;
  background: rgba(10, 6, 26, .82);
  backdrop-filter: blur(3px);
  z-index: 5;
  overflow-y: auto;
}

.overlay__caixa {
  width: min(340px, 100%);
  max-height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(16px, 4vw, 26px) clamp(14px, 4vw, 22px);
  border-radius: 22px;
  text-align: center;
  background: linear-gradient(180deg, var(--madeira-1), var(--madeira-3));
  border: 3px solid rgba(0,0,0,.4);
  box-shadow: inset 0 0 0 2px var(--madeira-luz), var(--sombra-alta);
  animation: subir .3s cubic-bezier(.2, .9, .3, 1.2);
}

@keyframes subir {
  from { opacity: 0; transform: translateY(22px) scale(.94); }
}

.overlay__titulo {
  font-family: var(--fonte-display);
  font-size: clamp(20px, 5.5vw, 25px);
  margin: 0 0 8px;
  line-height: 1.15;
  color: var(--ouro);
  text-shadow: 0 3px 0 rgba(0,0,0,.45);
}
.overlay__titulo.perdeu { color: #ff8a94; }

.overlay__texto {
  margin: 0 0 14px;
  font-size: clamp(13px, 3.6vw, 15px);
  color: rgba(246,231,200,.85);
  line-height: 1.35;
}

/* --- Multiplicador --- */

.mult {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  border-radius: 50%;
  font-family: var(--fonte-display);
  font-size: 16px;
  color: #2a2a00;
  background: radial-gradient(circle at 32% 28%, #f5ff8a, #d4e02c 55%, #a8b511);
  border: 3px solid rgba(0,0,0,.35);
  box-shadow: inset 0 -4px 8px rgba(0,0,0,.2), 0 4px 10px rgba(0,0,0,.4);
  text-shadow: 0 1px 0 rgba(255,255,255,.4);
}
.mult span { font-size: 11px; }
.mult.liberado {
  background: radial-gradient(circle at 32% 28%, #b6ff8a, var(--verde) 55%, var(--verde-esc));
  color: #0f2905;
}

/* --- Rodapé do jogo --- */

.rodape-jogo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 0 0 auto;
  padding: 2px 8px;
  font-size: 11px;
  letter-spacing: .6px;
  color: rgba(246,231,200,.35);
}

.link-som {
  background: none;
  border: none;
  padding: 4px;
  font-family: var(--fonte-corpo);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .6px;
  color: rgba(246,231,200,.45);
  text-decoration: underline;
  cursor: pointer;
}

.tela-jogo .aviso-fake { display: none; }

/* --- Telas curtas --- */
@media (max-height: 760px) {
  .jogo { gap: 6px; padding: 6px 8px calc(4px + env(safe-area-inset-bottom)); }
  .painel { padding: 7px 12px; }
  .painel__premio { font-size: 22px; }
  .painel__nota  { font-size: 11px; }
  .mult { width: 50px; height: 50px; flex-basis: 50px; font-size: 13px; }
  .mult span { font-size: 9px; }
  .botao { padding: 12px 14px; font-size: 15px; }
  .botao--retirar { margin-top: 6px; }
  .rodape-jogo { padding: 0 6px; font-size: 10px; }
}

@media (max-height: 620px) {
  .painel__rotulo { font-size: 9px; letter-spacing: 1.2px; }
  .painel__premio { font-size: 19px; }
  .mult { width: 44px; height: 44px; flex-basis: 44px; font-size: 12px; }
  .botao { padding: 10px 12px; font-size: 14px; }
  .arena { min-height: 38dvh; }
}

/* --- Celulares estreitos --- */
@media (max-width: 430px) {
  .painel--topo { gap: 4px; padding: 8px 8px; }
  .painel--topo .painel__valor { font-size: clamp(12px, 3.6vw, 16px); }
  .painel__rotulo { font-size: 9px; letter-spacing: 1px; }
  .painel__voltar { width: 30px; height: 30px; flex-basis: 30px; font-size: 21px; }
  .aposta { gap: 4px; }
  .aposta__btn { width: 27px; height: 27px; flex-basis: 27px; font-size: 16px; }
}

@media (max-width: 340px) {
  .painel--topo .painel__valor { font-size: 11.5px; }
  .painel__rotulo { font-size: 8px; letter-spacing: .5px; }
  .aposta__btn { width: 24px; height: 24px; flex-basis: 24px; font-size: 15px; }
  .painel__voltar { width: 27px; height: 27px; flex-basis: 27px; font-size: 19px; }
}

/* =========================================================
   TUTORIAL GUIADO
   ========================================================= */

.tut {
  position: fixed;
  inset: 0;
  z-index: 900;
  /* A raiz cobre a tela toda, então precisa ser transparente ao toque:
     só os filhos que realmente recebem clique reativam o ponteiro.
     Sem isso, o tutorial engole os toques e o jogador não consegue atirar. */
  pointer-events: none;
}

/* O escurecido é feito com uma sombra gigante saindo do buraco:
   assim o recorte acompanha qualquer posição sem precisar de máscara. */
.tut__escuro {
  position: absolute;
  inset: 0;
  pointer-events: auto;
}

.tut__buraco {
  position: absolute;
  left: 0; top: 0; width: 0; height: 0;
  border-radius: 16px;
  box-shadow:
    0 0 0 9999px rgba(8, 4, 20, .82),
    inset 0 0 0 3px rgba(255, 216, 77, .9),
    0 0 22px 6px rgba(255, 216, 77, .35);
  transition: all .35s cubic-bezier(.3, .9, .3, 1.1);
  pointer-events: none;
  animation: tutPulsa 1.8s ease-in-out infinite;
}

@keyframes tutPulsa {
  0%, 100% { box-shadow: 0 0 0 9999px rgba(8,4,20,.82), inset 0 0 0 3px rgba(255,216,77,.9),  0 0 22px 6px rgba(255,216,77,.35); }
  50%      { box-shadow: 0 0 0 9999px rgba(8,4,20,.82), inset 0 0 0 3px rgba(255,216,77,1),   0 0 30px 10px rgba(255,216,77,.55); }
}

/* Passo que espera uma ação: o toque precisa chegar no jogo */
.tut--liberado .tut__escuro { pointer-events: none; }

.tut__balao {
  pointer-events: auto;
  position: absolute;
  width: min(320px, calc(100vw - 24px));
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--madeira-1), var(--madeira-3));
  border: 3px solid rgba(0,0,0,.45);
  box-shadow: inset 0 0 0 2px var(--madeira-luz), var(--sombra-alta);
  transition: left .35s ease, top .35s ease;
  pointer-events: auto;
}

.tut__texto {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.4;
  color: var(--creme);
}
.tut__texto b { color: var(--ouro); }

.tut__acoes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.tut__btn {
  flex: 0 0 auto;
  padding: 10px 20px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffe27a, #f5b820);
  color: #4a2c00;
  font-family: var(--fonte-display);
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 4px 0 #b07a10;
}
.tut__btn:active { transform: translateY(3px); box-shadow: 0 1px 0 #b07a10; }

.tut__pular {
  flex: 0 0 auto;
  padding: 6px 2px;
  background: none;
  border: none;
  color: rgba(246,231,200,.6);
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
}

.tut__voz {
  flex: 0 0 auto;
  margin-right: auto;
  padding: 7px 12px;
  border-radius: 999px;
  border: 2px solid rgba(0,0,0,.3);
  background: rgba(0,0,0,.28);
  color: var(--creme);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.tut__voz--off { opacity: .5; }
.tut__voz--off { opacity: .5; }

/* Aviso pra tocar e ativar a narração quando o passo espera ação */
@media (max-height: 620px) {
  .tut__balao { padding: 12px 14px; }
  .tut__texto { font-size: 14px; margin-bottom: 10px; }
}

/* ===== Modo treino (demo) ===== */
.demo-faixa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 8px;
  padding: 7px 12px;
  border-radius: 10px;
  background: rgba(126, 201, 63, .12);
  border: 1px solid rgba(126, 201, 63, .4);
  color: #9ade5e;
  font-size: clamp(11px, 3.1vw, 13px);
  font-weight: 600;
}
.demo-faixa a { color: #ffd84d; }

.demo-destaque {
  display: inline-block;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(126, 201, 63, .14);
  border: 1px solid rgba(126, 201, 63, .4);
  line-height: 1.5;
}

/* =========================================================
   Faixa da conta de publicidade

   Fica no topo do jogo, sempre visível, sem como fechar. O
   propósito dela é justamente aparecer em print e gravação: é o
   que avisa quem assiste que as condições ali não são as da conta
   real. Se sumisse no vídeo, não serviria pra nada.
   ========================================================= */

.publi-faixa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
  margin: 0 0 8px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 184, 0, .14);
  border: 1px solid rgba(255, 184, 0, .5);
  color: #ffd166;
  font-size: clamp(10.5px, 2.9vw, 12.5px);
  line-height: 1.4;
  text-align: center;
}

.publi-faixa__selo {
  flex: 0 0 auto;
  padding: 3px 8px;
  border-radius: 5px;
  background: #ffb800;
  color: #241a00;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
}

.publi-faixa__texto b { color: #ffe9a8; }

/* Impressão e captura: a faixa nunca some */
@media print {
  .publi-faixa { display: flex !important; }
}
