:root {
  --fundo: #f6f7f4;
  --papel: #fff;
  --verde: #285548;
  --verde-escuro: #183e34;
  --texto: #24352f;
  --suave: #7a837c;
  --linha: #e1e5dd;
  --serifa: Georgia, "Times New Roman", serif;
  --sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--fundo);
  color: var(--texto);
  font-family: var(--sans);
  font-size: 14px;
}
button,
select {
  font: inherit;
}
button,
a,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button {
  color: inherit;
}
button:disabled {
  cursor: default;
}
button:focus-visible,
a:focus-visible,
select:focus-visible {
  outline: 3px solid #bd8b49;
  outline-offset: 4px;
}
[hidden] {
  display: none !important;
}
.cabecalho {
  height: 88px;
  padding: 0 5.4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--linha);
  background: #fafbf8;
}
.marca {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--verde-escuro);
  text-decoration: none;
  font-weight: 750;
  font-size: 32px;
  letter-spacing: -1.8px;
}
.marca > svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--verde);
  stroke-width: 1.7;
}
.ponto {
  color: #98ab70;
}
.cabecalho nav {
  display: flex;
  align-self: stretch;
  gap: 34px;
  margin-right: 55px;
}
.nav {
  background: none;
  border: 0;
  color: #80877f;
  position: relative;
  font-weight: 550;
  font-size: 14px;
  padding: 0 5px;
}
.nav.ativo {
  color: var(--verde);
}
.nav.ativo:after {
  content: "";
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--verde);
}
.ajuda {
  border: 0;
  background: none;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  color: #58645b;
}
.interrogacao {
  border: 1px solid #8e998e;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  font-size: 11px;
}
main {
  max-width: 1500px;
  margin: auto;
  padding: 38px 5.4% 0;
}
.introducao {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 31px;
}
.sobretitulo {
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 650;
  color: #6e7c6a;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ponto-verde {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #819966;
}
h1 {
  font-family: var(--serifa);
  font-weight: 400;
  font-size: clamp(30px, 3.2vw, 45px);
  letter-spacing: -1.4px;
  line-height: 1.15;
  margin: 13px 0 12px;
}
h1 em {
  color: var(--verde);
  font-weight: 400;
}
.introducao p {
  color: #798179;
  font-size: 13px;
  margin: 0;
}
.so-celular {
  display: none;
}
.sessao {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 15px;
}
.marca-sessao {
  font-family: var(--serifa);
  font-size: 36px;
  color: #a6b1a0;
  font-style: italic;
  border-right: 1px solid #d5ddd1;
  padding-right: 16px;
}
.sessao strong,
.sessao span:not(.marca-sessao) {
  display: block;
}
.sessao strong {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 7px;
}
.sessao div > span {
  font-size: 11px;
  color: var(--suave);
}
.bancada {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 335px;
  gap: 24px;
}
.visualizador {
  height: 680px;
  position: relative;
  border: 1px solid #dce2d6;
  border-radius: 15px;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 40%, #f6f7ee 0, #e8edde 100%);
  isolation: isolate;
}
.visualizador:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#68815b09 1px, transparent 1px),
    linear-gradient(90deg, #68815b09 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: -1;
}
#cena {
  position: absolute;
  inset: 54px 0 38px;
}
#cena canvas {
  display: block;
  width: 100%;
  height: 100%;
  touch-action: none;
  outline: none;
}
.barra-cena {
  position: absolute;
  top: 19px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  gap: 10px;
}
.modos {
  background: #dfe6d9a8;
  padding: 4px;
  display: flex;
  border-radius: 8px;
}
.modos button {
  border: 0;
  background: none;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 550;
  padding: 10px 12px;
  color: #6f7c69;
  display: flex;
  align-items: center;
  gap: 8px;
}
.modos button.ativo {
  background: #fff;
  box-shadow: 0 1px 4px #233d2710;
  color: var(--verde);
}
.modos span {
  font-size: 7px;
  letter-spacing: 0.6px;
  opacity: 0.7;
}
.selo-3d {
  font-size: 8px;
  letter-spacing: 1.4px;
  color: #7b8971;
  border: 1px solid #b5c2aa;
  padding: 6px 8px;
  border-radius: 4px;
}
.etiqueta-cena {
  position: absolute;
  left: 25px;
  top: 100px;
  pointer-events: none;
  z-index: 2;
}
.etiqueta-cena span {
  display: block;
  font-size: 8px;
  letter-spacing: 1.6px;
  color: #85917b;
  margin-bottom: 8px;
}
.etiqueta-cena strong {
  font-weight: 400;
  font-size: 12px;
  color: #5d6c56;
}
.orientacao {
  position: absolute;
  left: 26px;
  bottom: 85px;
  display: grid;
  grid-template-columns: 10px 31px 10px;
  gap: 4px;
  align-items: center;
  color: #819078;
  font-size: 10px;
  pointer-events: none;
}
.orientacao i {
  height: 1px;
  background: #b4c0a9;
}
.orientacao small {
  grid-column: 1/-1;
  font-size: 8px;
  white-space: nowrap;
  margin-top: 5px;
}
.ferramentas {
  position: absolute;
  right: 19px;
  top: 46%;
  transform: translateY(-35%);
  display: flex;
  flex-direction: column;
  gap: 3px;
  background: #fcfdf6e8;
  border: 1px solid #dfe5d7;
  border-radius: 9px;
  padding: 5px;
}
.ferramentas button {
  height: 35px;
  width: 35px;
  border: 0;
  background: none;
  font-size: 24px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  color: #59684f;
}
.ferramentas button:hover {
  background: #e6ecde;
}
.ferramentas > span {
  height: 1px;
  background: var(--linha);
  margin: 3px;
}
.ferramentas svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}
.rodape-cena {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  min-height: 45px;
  border-top: 1px solid #d2dcc7b0;
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 0 20px;
  font-size: 9px;
  color: #78856e;
}
.rodape-cena > span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.rodape-cena svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}
.rodape-cena button {
  margin-left: auto;
  border: 0;
  background: none;
  color: #5b7050;
  font-size: 15px;
}
.rodape-cena button span {
  font-size: 9px;
}
.rodape-cena button[aria-pressed="true"] {
  color: var(--verde);
  background: #d5dfca;
  border-radius: 5px;
}
.carregamento {
  position: absolute;
  inset: 72px 0 46px;
  background: #edf1e7;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 17px;
  flex-direction: column;
  z-index: 4;
  color: #66765e;
}
.carregamento strong {
  font-weight: 500;
}
.carregamento > span:last-child {
  font-size: 12px;
}
.anel {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #d4ddcd;
  border-top-color: var(--verde);
  animation: giro 1s linear infinite;
}
@keyframes giro {
  to {
    transform: rotate(360deg);
  }
}
.painel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.configuracao label {
  display: block;
  font-size: 9px;
  letter-spacing: 1.6px;
  color: #818b7e;
  margin: 3px 0 10px;
}
.configuracao select,
.exploracao select {
  width: 100%;
  appearance: none;
  background: #fff
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%235c6d53' viewBox='0 0 20 20'%3E%3Cpath d='m6 8 4 4 4-4'/%3E%3C/svg%3E")
    no-repeat right 14px center;
  border: 1px solid var(--linha);
  border-radius: 7px;
  padding: 13px 15px;
  color: #4b5946;
  font-size: 12px;
  cursor: pointer;
}
.cartao {
  border: 1px solid #dee5d7;
  background: white;
  border-radius: 12px;
  padding: 22px 24px;
  box-shadow: 0 4px 14px #344a2c04;
}
.linha-desafio {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 8px;
  letter-spacing: 1.3px;
  color: #8a9484;
  font-weight: 600;
}
.linha-desafio > span:last-child {
  letter-spacing: 1px;
  color: #687d5b;
  font-size: 10px;
}
.icone-alvo {
  width: 46px;
  height: 46px;
  border: 1px solid #e6eadf;
  background: #f5f7f0;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin: 24px 0 18px;
}
.icone-alvo svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: #80916d;
  stroke-width: 1.1;
}
.categoria {
  color: #8b957f;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.cartao h2,
.exploracao h2 {
  font-family: var(--serifa);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.8px;
  line-height: 1.05;
  margin: 9px 0 14px;
}
.instrucao {
  font-size: 12px;
  line-height: 1.65;
  color: #7e8877;
  margin-bottom: 12px;
  min-height: 38px;
}
.tag-lado {
  display: inline-block;
  border-radius: 4px;
  background: #f4f6f0;
  color: #7b8871;
  padding: 5px 7px;
  font-size: 9px;
  margin-bottom: 22px;
}
.botao-principal {
  background: var(--verde);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  border: 0;
  border-radius: 6px;
  padding: 15px 8px;
  font-size: 10px;
  letter-spacing: 0.1px;
  min-height: 44px;
}
.botao-principal span {
  font-size: 15px;
}
.botao-principal:disabled {
  background: #ecf0e7;
  color: #86937c;
}
.botao-principal:not(:disabled):hover {
  background: var(--verde-escuro);
}
.botao-discreto {
  background: none;
  border: 0;
  font-size: 10px;
  color: #849078;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 15px 0 0;
}
.botao-discreto:disabled {
  opacity: 0.5;
}
.seu-progresso {
  border: 1px solid #e1e6da;
  border-radius: 10px;
  padding: 17px 20px;
}
.linha-progresso {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.linha-progresso h3 {
  font-size: 11px;
  font-weight: 550;
  margin: 0;
}
.linha-progresso button {
  font-size: 9px;
  border: 0;
  background: none;
  color: #839077;
}
.estatisticas {
  display: flex;
  justify-content: space-between;
  margin: 18px 0;
}
.estatisticas div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: center;
  min-width: 53px;
}
.estatisticas strong {
  font-size: 23px;
  font-weight: 400;
  font-family: var(--serifa);
  color: #475b3e;
}
.estatisticas span {
  font-size: 8px;
  color: #8b9483;
}
.passos {
  display: flex;
  gap: 5px;
}
.passos span {
  height: 4px;
  flex: 1;
  border-radius: 2px;
  background: #e4e9dd;
}
.passos span.certo {
  background: #538167;
}
.passos span.errado {
  background: #c99779;
}
.passos span.pulado {
  background: #b8b7ac;
}
.passos span.atual {
  background: #a0b68a;
}
.dica {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0 5px;
}
.icone-dica {
  border: 1px solid #a7b197;
  color: #869374;
  min-width: 14px;
  height: 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--serifa);
  font-size: 10px;
  margin-top: 3px;
}
.dica p {
  font-size: 10px;
  color: #859078;
  line-height: 1.65;
  margin: 0;
}
.faixa-inferior {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 22px 0 30px;
  padding: 19px 22px;
  border: 1px solid #e1e6da;
  border-radius: 9px;
  background: #f0f3eb;
}
.livro {
  display: flex;
  align-items: center;
  gap: 14px;
}
.livro svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #869976;
  stroke-width: 1.1;
}
.livro strong,
.livro span {
  display: block;
}
.livro strong {
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 5px;
}
.livro span {
  font-size: 9px;
  color: #8b9583;
}
.faixa-inferior button {
  border: 0;
  background: none;
  font-size: 10px;
  color: #687b59;
}
.faixa-inferior button span {
  margin-left: 12px;
}
footer {
  max-width: 1500px;
  padding: 0 5.4% 22px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #9aa38f;
  font-size: 11px;
}
footer > span:first-child {
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.5px;
}
footer small {
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0;
  margin-left: 10px;
}
footer button {
  border: 0;
  background: none;
  font-size: 9px;
  color: #859078;
}
.nota-educativa {
  font-size: 9px;
}
.resposta {
  border-top: 1px solid var(--linha);
  padding-top: 15px;
  margin: -7px 0 16px;
}
.resposta > strong {
  font-size: 15px;
  color: #307251;
}
.resposta.errado > strong {
  color: #a46547;
}
.resposta > p {
  font-size: 11px;
  line-height: 1.6;
  color: #78846f;
}
.resposta #medidor > div:first-child {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: #829075;
}
.resposta #porcentagem {
  font-size: 12px;
  color: #4c6d3e;
}
.trilho {
  height: 5px;
  background: #e7ecdf;
  border-radius: 4px;
  margin-top: 8px;
  overflow: hidden;
}
.trilho span {
  height: 100%;
  display: block;
  background: #849c6d;
  width: 0;
  transition: width 0.5s;
}
.link-botao {
  border: 0;
  background: none;
  color: var(--verde);
  font-size: 10px;
  padding: 12px 0 0;
}
.cartao.respondido .icone-alvo {
  display: none;
}
.cartao.respondido h2 {
  font-size: 30px;
}
.cartao.respondido .categoria {
  display: block;
  margin-top: 18px;
}
.cartao.respondido .tag-lado {
  margin-bottom: 15px;
}
.cartao.respondido .instrucao {
  display: none;
}
.legenda-resposta {
  position: absolute;
  left: 50%;
  bottom: 62px;
  transform: translateX(-50%);
  background: #fffffff0;
  border: 1px solid #dde5d5;
  border-radius: 20px;
  display: flex;
  gap: 15px;
  padding: 10px 15px;
  font-size: 9px;
  white-space: nowrap;
}
.legenda-resposta span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.legenda-resposta i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.cor-certo {
  background: #33976b;
}
.cor-errado {
  background: #c46b4e;
}
.aviso-toque {
  position: absolute;
  bottom: 107px;
  left: 50%;
  transform: translateX(-50%);
  background: #274638ed;
  color: #fff;
  font-size: 11px;
  text-align: center;
  padding: 12px 18px;
  border-radius: 7px;
  max-width: 85%;
  pointer-events: none;
}
.exploracao {
  padding: 26px 24px;
  background: #fff;
  border: 1px solid var(--linha);
  border-radius: 12px;
}
.exploracao p {
  font-size: 12px;
  line-height: 1.7;
  color: #7c8872;
}
.exploracao label {
  display: block;
  font-size: 10px;
  margin: 30px 0 10px;
}
dialog {
  border: 1px solid #d7e0ce;
  border-radius: 16px;
  max-width: 550px;
  width: calc(100% - 34px);
  padding: 32px;
  color: var(--texto);
  background: #fbfcf8;
  box-shadow: 0 25px 100px #153a332b;
}
dialog::backdrop {
  background: #1d302b77;
  backdrop-filter: blur(3px);
}
dialog h2 {
  font-family: var(--serifa);
  font-size: 32px;
  font-weight: 400;
  margin: 0 0 18px;
}
dialog p,
dialog li {
  font-size: 13px;
  line-height: 1.8;
  color: #687460;
}
dialog li {
  margin: 9px 0;
}
dialog a {
  color: var(--verde);
}
.fechar {
  position: absolute;
  right: 15px;
  top: 12px;
  font-size: 25px;
  background: none;
  border: 0;
  color: #7a8970;
}
.resumo-nota {
  font-family: var(--serifa);
  font-size: 60px;
  color: var(--verde);
  margin: 15px 0;
}
.resumo-nota small {
  font-size: 25px;
  color: #9da78f;
}
@media (min-width: 1500px) {
  .visualizador {
    height: 740px;
  }
  .cartao {
    padding: 26px;
  }
  .icone-alvo {
    margin-top: 35px;
  }
}
@media (max-width: 1050px) {
  main {
    padding-left: 3%;
    padding-right: 3%;
  }
  .cabecalho {
    padding: 0 3%;
  }
  .bancada {
    grid-template-columns: minmax(0, 1fr) 305px;
    gap: 16px;
  }
  .sessao {
    display: none;
  }
  .selo-3d {
    display: none;
  }
  .rodape-cena {
    gap: 12px;
    padding: 0 12px;
  }
  .rodape-cena > span:nth-child(2) {
    display: none;
  }
  .etiqueta-cena {
    left: 20px;
  }
  .cartao {
    padding: 20px;
  }
  .visualizador {
    height: 680px;
  }
}
@media (max-width: 700px) {
  .cabecalho {
    height: 65px;
    padding: 0 20px;
  }
  .marca {
    font-size: 27px;
  }
  .marca > svg {
    width: 25px;
  }
  .cabecalho nav {
    gap: 20px;
    margin: 0;
  }
  .nav {
    font-size: 12px;
  }
  .ajuda > span:last-child {
    display: none;
  }
  main {
    padding: 25px 16px 0;
  }
  .introducao {
    margin-bottom: 23px;
  }
  .sobretitulo {
    font-size: 8px;
    letter-spacing: 1.6px;
  }
  h1 {
    font-size: 34px;
    line-height: 1.12;
    margin: 11px 0 12px;
  }
  .so-celular {
    display: block;
  }
  .introducao p {
    font-size: 11px;
    max-width: 300px;
    line-height: 1.7;
  }
  .bancada {
    display: flex;
    flex-direction: column;
    gap: 17px;
  }
  .visualizador {
    height: 510px;
    border-radius: 12px;
    flex: none;
  }
  .barra-cena {
    top: 12px;
    left: 12px;
    right: 12px;
  }
  .modos button {
    padding: 9px 10px;
    font-size: 10px;
  }
  .modos span {
    font-size: 6px;
  }
  .selo-3d {
    display: block;
    font-size: 6px;
    padding: 5px;
    letter-spacing: 1px;
  }
  .etiqueta-cena {
    top: 75px;
    left: 17px;
  }
  .etiqueta-cena span {
    font-size: 6px;
    letter-spacing: 1px;
  }
  .etiqueta-cena strong {
    font-size: 10px;
  }
  .ferramentas {
    right: 10px;
  }
  .ferramentas button {
    height: 33px;
    width: 30px;
  }
  .rodape-cena {
    font-size: 8px;
    min-height: 37px;
  }
  .rodape-cena button span {
    font-size: 8px;
  }
  .orientacao {
    bottom: 64px;
    left: 18px;
  }
  .painel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .configuracao {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  .configuracao label {
    font-size: 8px;
    letter-spacing: 1px;
    margin: 0;
  }
  .configuracao select {
    width: 55%;
    padding: 11px;
    font-size: 11px;
  }
  .cartao {
    padding: 21px;
  }
  .cartao .icone-alvo {
    float: right;
    margin: 21px 0 0;
    width: 42px;
    height: 42px;
  }
  .cartao .categoria {
    display: block;
    margin-top: 24px;
  }
  .cartao h2 {
    font-size: 34px;
  }
  .instrucao {
    min-height: 0;
    margin: 0 0 10px;
    max-width: 260px;
  }
  .tag-lado {
    margin-bottom: 18px;
  }
  .botao-principal {
    font-size: 12px;
    min-height: 46px;
  }
  .botao-discreto {
    font-size: 11px;
    padding-top: 14px;
  }
  .seu-progresso {
    padding: 18px 21px;
  }
  .estatisticas {
    justify-content: space-around;
  }
  .estatisticas span {
    font-size: 9px;
  }
  .dica p {
    font-size: 11px;
  }
  .faixa-inferior {
    margin: 22px 0;
    padding: 16px;
    gap: 14px;
  }
  .livro {
    gap: 10px;
  }
  .livro strong {
    font-size: 10px;
  }
  .livro span {
    font-size: 8px;
    line-height: 1.6;
  }
  .faixa-inferior button {
    font-size: 9px;
    max-width: 65px;
    flex-shrink: 0;
    line-height: 1.7;
  }
  .faixa-inferior button span {
    margin: 0;
  }
  .nota-educativa,
  footer small {
    display: none;
  }
  footer {
    padding: 0 20px 25px;
  }
  .legenda-resposta {
    bottom: 48px;
    font-size: 8px;
    padding: 8px 10px;
    gap: 10px;
  }
  .aviso-toque {
    bottom: 90px;
  }
  .resposta > p {
    font-size: 12px;
  }
  .cartao.respondido .instrucao {
    display: none;
  }
  .cartao.respondido .categoria {
    margin-top: 20px;
  }
  .resposta #medidor > div:first-child {
    font-size: 11px;
  }
  .link-botao {
    font-size: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

.alvo-celular {
  display: none;
}
@media (max-width: 700px) {
  .alvo-celular {
    position: absolute;
    top: 64px;
    left: 13px;
    right: 13px;
    z-index: 3;
    border: 1px solid #dce3d3;
    border-radius: 7px;
    background: #ffffffeb;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    min-height: 43px;
  }
  .alvo-celular > span {
    font-size: 7px;
    letter-spacing: 1.1px;
    color: #829471;
  }
  .alvo-celular > strong {
    font-family: var(--serifa);
    font-size: 19px;
    font-weight: 400;
  }
  .alvo-celular > button {
    margin-left: auto;
    background: var(--verde);
    color: white;
    border: 0;
    border-radius: 4px;
    padding: 9px 10px;
    font-size: 10px;
  }
  .etiqueta-cena {
    top: 119px;
  }
  .visualizador {
    height: 545px;
  }
  #cena {
    top: 93px;
  }
  .alvo-celular.respondido > span {
    color: var(--verde);
  }
  .alvo-celular.respondido > strong {
    font-family: var(--sans);
    font-size: 12px;
  }
}
