/* Barra de aviso (100% largura, sem arredondamento, com respiro embaixo) */
.pe-announce{
  width: 100%;
  margin: 12px 0 16px;            /* respiro abaixo do topo e do conteúdo abaixo */
  background: #0aa04b;
  border-radius: 0;               /* ✅ sem bordas arredondadas */
  padding: 12px 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  position: relative;
}

/* Se o dashboard tiver wrapper com padding, força a barra a "escapar" e ficar full width */
.pe-dash .pe-announce{
  margin-left: -18px;
  margin-right: -18px;
  width: calc(100% + 36px);
}

/* Texto central */
.pe-announce-text{
  font-family: "Nunito Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,.92);
  text-align:center;
  width: 100%;
}

/* Botão fechar */
.pe-announce-close{
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.92);
  cursor: pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}

.pe-announce-close i{
  font-size: 18px;
  line-height: 1;
}

.pe-announce-close:hover{
  background: rgba(0,0,0,.24);
}

/* Em telas muito estreitas, mantém confortável */
@media (max-width: 520px){
  .pe-announce{
    padding: 12px 16px;
    margin: 10px 0 14px;
  }

  .pe-dash .pe-announce{
    margin-left: -16px;
    margin-right: -16px;
    width: calc(100% + 32px);
  }

  .pe-announce-text{
    font-size: 15px;
    padding-right: 44px;
  }
}
