/* ============================================================
   INFO HOVER — CSS FINAL
   Botão no topo | Manifesto centrado
============================================================ */

/* ============================================================
   CONTAINER (BOTÃO FIXO EM CIMA)
============================================================ */
#app-info-hover {
  position: fixed;
  top: 75px;
  right: 24px;
  z-index: 99999;
}

/* ============================================================
   LOGO (GATILHO)
============================================================ */
#app-info-hover .info-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: block;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  transition: transform .25s ease;
}

/* feedback visual quando aberto */
#app-info-hover.open .info-logo {
  transform: scale(1.08);
}

/* ============================================================
   MANIFESTO / MÓDULO (ESTADO FECHADO)
============================================================ */
#app-info-hover .info-tooltip {
  position: fixed; /* independente do botão */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%) scale(.96);

  width: 460px;
  max-width: calc(100vw - 40px);
  padding: 34px 38px;

  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #fafafa 100%
  );

  color: #0e1720;
  border-radius: 22px;

  box-shadow:
    0 24px 60px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.6);

  font-family: "IBM Plex Sans", system-ui, sans-serif;
  text-align: center;

  opacity: 0;
  pointer-events: none;

  transition:
    opacity .3s ease,
    transform .3s ease;
}

/* ============================================================
   MANIFESTO / MÓDULO (ESTADO ABERTO — JS)
============================================================ */
#app-info-hover.open .info-tooltip {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

/* ============================================================
   TEXTO DO MANIFESTO — BASE COMUM
   (mesma tipografia para EN e PT)
============================================================ */
#app-info-hover .manifesto {
  margin: 0;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 19px;
  line-height: 1.6;
  letter-spacing: .15px;
  max-width: 38ch;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   MANIFESTO — EN (ABERTURA)
============================================================ */
#app-info-hover .manifesto.en {
  font-weight: 400;
  color: #334155;
  margin-bottom: 26px;
}

/* ============================================================
   SEPARADOR EDITORIAL
============================================================ */
#app-info-hover .manifesto.en::after {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  margin: 22px auto;
  background: linear-gradient(
    to right,
    transparent,
    #94a3b8,
    transparent
  );
  opacity: .85;
}

/* ============================================================
   MANIFESTO — PT (AFIRMAÇÃO IDENTITÁRIA)
============================================================ */
#app-info-hover .manifesto.pt {
  font-weight: 500;
  color: #0f172a;
}

/* ============================================================
   MOBILE
============================================================ */
@media (max-width: 600px) {
  #app-info-hover .info-tooltip {
    width: 300px;
    padding: 26px 24px;
  }

  #app-info-hover .manifesto {
    font-size: 16px;
    max-width: 100%;
  }
	
	@media (max-width: 820px) {
  #app-info-hover {
    top: 185px;
    right: 15px;
  }
}

}
