/* CSS Document */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 16px;
}

.banner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6); /* camada escura com transparência */
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.banner-conteudo {
  position: relative;
  width: 900px;
  height: 500px;
  background-color: rgba(17, 17, 17, 0.95); /* preto quase sólido com leve transparência */
  color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  font-size: 12px;
  display: flex;
  flex-direction: column;
}

textarea {
  flex: 1;
  width: 100%;
  resize: none;
  margin-top: 20px;
  padding: 10px;
  font-size: 16px;
  border-radius: 6px;
  border: none;
  box-sizing: border-box;
  background-color: #222;
  color: white;
}

.fechar {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  color: white;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}