body.dark-mode .frase-container {
  background-color: #000000;
  color: #cccccc;
}

.portal-info {
  width: 100%;
  display: none;
  font-size: 18px;
  font-weight: 400;
  text-align: right;
  font-style: normal;
  color: var(--theme-color);
  padding: 20px 40px 0px 0px;  
  font-family: "Audiowide", sans-serif;
}

.frase-container {
  width: 100%;
  max-width: 100%;
  display: flex;
  /*  acima    1em  padding  */
  /*  direita  3px  padding  */
  /*  abaixo   30px padding  */
  /*  esquerda 5px  padding  */
  padding: 0px 0px 40px 0px;  
  align-items: center;
  border-radius: 12px;
  flex-direction: column;
}

.frase-acoes {
  /* margin-top: 20px; */
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease forwards;
}

.btn-acao {
  background: #292929;
  border: none;
  padding: 10px 16px;
  gap: 8px;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-acao:hover {
  background: #444;
}

.btn-acao svg {
  width: 22px;
  height: 22px;
  fill: white;
}

.floating-btn:hover {
  background: #444;
}

.floating-btn svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.icon-acao {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  fill: white !important;
  stroke: none !important;
  background: none !important;
  all: initial;
  /* Zera tudo, mas sem remover atributos do SVG */
  isolation: isolate;
  /* Protege de heranças */
}

.icon-acao path {
  fill: inherit;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}