/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

/* GRID INVISÍVEL */
.grid-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  padding: 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* TIPOGRAFIA */
p {
  color: #faf9f0;
  font-family: 'Atkinson', sans-serif;
  font-weight: 400;
}

/* HEADER COM BANNER */
.banner {
  width: 100%;
  font-family: 'Jacquard', sans-serif;
  text-shadow: 5px 5px 1px rgba(0, 0, 0, 1);
  font-size: 2rem;
  color: #faf9f0;
  text-align: center;
  padding: 4rem 2rem;
  line-height: 1.2;
  max-width: 1000px;
  margin: 0 auto;
  text-justify: inter-word;
}

.banner-img {
  width: 75%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* BLOCOS COM GRID */
.bloco {
  grid-column: 1 / 13;
  margin-bottom: 6rem;
}

.bloco1 .titulo {
  font-size: 4rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

.imagem {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

/* FOOTER */
.footer {
  margin: 0;
  padding: 0;
  white-space: nowrap;
  text-align: left;
  font-size: 1rem;
  color: #faf9f0;
  margin-top: 4rem;
}

/* GIF NO CANTO SUPERIOR DIREITO */
.gif-canto {
  position: absolute;
  top: 0;
  right: 0;
  width: 128px;
  height: 128px;
  z-index: 1000;
}

/* CONTÊINER DO GIF */
.gif-container {
  position: fixed;
  top: 85px;
  right: 125px;
  width: 128px;
  height: 128px;
  z-index: 1000;
}

/* BALÃO DE FALA */
.balao-fala {
  position: absolute;
  bottom: 100%; /* acima do gif */
  right: 0;
  transform: translateY(-10px);
  background: #faf9f0;
  color: #000;
  padding: 0.5rem 1rem;
  border: 2px solid #000;
  font-size: 0.95rem;
  font-family: 'Atkinson', sans-serif;
  white-space: nowrap;
  overflow: hidden;
  box-shadow: 4px 4px 0 #000;
  z-index: 1001;
  display: none;
}

/* Mostrar balão só no hover da imagem estática */
.gif-container:hover .balao-fala {
  display: block;
  animation: fadeIn 0.3s ease-in-out forwards;
}

/* Ocultar gif original */
.hidden {
  display: none;
}

.balao-fala span {
  opacity: 0;
  animation: letterFade 0.05s ease forwards;
  display: inline-block;
}

@keyframes letterFade {
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    transform: translateY(5px);
    opacity: 0;
  }
  to {
    transform: translateY(-10px);
    opacity: 1;
  }
}

/* CURSOR E FUNDO */
body {
  cursor: url('img/cursor_shiny.png') 16 16, auto;
  background-color: #000;
}

.botao-insta {
  display: inline-block;
  background-color: #faf9f0; 
  color: #eae9e0;
  padding: 15px 20px;
  text-decoration: none;
  font-family: 'Basteleur', sans-serif;
  border-radius: 0px;
  transition: background-color 0.3s ease;
  margin: 20px;
}

.botao-insta:hover {
  background-color: #000; /* versão mais escura ao passar o mouse */
}




