
:root{
--background: #E6D0FF;
}

head{
  font-family: 'Pinyon Script';
}

body {
  background-image: url('fundo.jpg');
  color: black;
  font-family: Verdana;
}

h1 {
  text-align: center;
  font-size:70px;
}

.banner{
  display: block;
  margin: 0 auto;
  width:990px;
  height:auto;
}

body {
  margin: 0;
  font-family: sans-serif;
}

/* Conteúdo principal */
.conteudo {
  padding: 40px;
  text-align: center;
}

/* Overlay: layer full screen */
.popup-overlay {
  position: fixed;         /* fixa na tela, sobre todo conteúdo */
  top: 0;
  left: 0;
  width: 100vw;            /* largura total da tela */
  height: 100vh;           /* altura total da tela */
  background-color: rgba(0, 0, 0, 0.85); /* fundo escuro semi-transparente */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;           /* fica acima de tudo */
}

/* Popup ocupa toda a tela */
.popup {
  position: relative;
  width: 100vw;
  height: 100vh;
}

/* Imagem cobre toda a área */
.popup img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* cobre a área sem distorcer */
  display: block;
}

/* Botão fechar no canto superior direito */
.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  background: transparent;
  border: none;
  font-size: 36px;
  color: white;
  cursor: pointer;
  z-index: 10000;
}