html, body {
  font-family: 'Montserrat', sans-serif;
  scroll-snap-type: y mandatory;
  margin: 0;
  padding: 0;
}






/* Animação de fade-in branco quando entra no site */
.fade-in {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 100vh;

  background-color: rgb(0, 0, 0);
  z-index: 9999;

  animation: fadeOut 1.5s ease forwards;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}












.cabecalho {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh / 8);
  background-color: #000000;
  color: white;

  display: flex;
  align-items: center;   /* centraliza verticalmente */
  padding-left: 20px;    /* espaço da esquerda */
  z-index: 10;

  transition: top 0.3s ease;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding-right: 5%;
}

.menu a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 600;
}

.hamburger {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;

  margin-left: auto;   /* empurra para a direita */
  margin-right: 50px;    /* espaço de 5% da tela */
}

.menu-mobile {
  position: fixed;
  top: 0;
  right: 0;

  width: 100%;
  height: 100vh;

  background-color: #000000;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 30px;

  transform: translateX(100%);
  transition: transform 0.3s ease;

  z-index: 999;
}

.menu-mobile a {
  color: white;
  font-size: 20px;
  text-decoration: none;
}

.fechar {
  position: absolute;
  top: 30px;
  right: 30px;

  font-size: 32px;
  color: white;
  cursor: pointer;
}

.menu-mobile.active {
  transform: translateX(0);
}

.logo {
  height: 7vh;
  width: auto;
  display: block; 
}

.cabecalho a {
  display: inline-block;
}

.cabecalho a .logo {
  display: block;
  opacity: 1 !important;
  visibility: visible !important;
}

.lang-icon {
  margin-left: 18px;
  width: 25px;
  cursor: pointer;
}

.lang-iconmobile {
  width: 25px;
  cursor: pointer;

}








.hero {
  padding-top: calc(100vh / 8);
  min-height: 20vh;
  background: linear-gradient(
    to bottom,
    #000000 20%,
    #000000 70%
  );
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 5vh;
}




.hero-content {
  color: white;
  text-align: center;
  width: 50%;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 4px;
}

.hero-content p{
  margin-top: 20px;
  font-size: 20px;
  font-weight: 100;
}

.hero-content.ff{
 color: #0066ff;
}



.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  gap: 50px;
}
.hero-imagem {
  padding-top: 10vh;
}

.hero-imagem img {
  border-radius: 35px;
  max-height: 80vh;
  max-width: 100%;
}

.hero-frase {
  color: white;
  font-size: 2vw;
  font-weight: 400;
  max-width: 600px;
}

.hero-frase span {
  display: block;
  margin-top: 20px;
  font-weight: 600;
  font-size: 18px;
}



























.filtros {
  display: flex;
  flex-wrap: wrap;          /* 🔥 ESSENCIAL */
  gap: 15px;
  justify-content: center;
  padding: 40px 20px;       /* um respiro lateral no mobile */
  background: #3686ff;
}

.filtro {
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  background: #ffffff;
  font-weight: 600;
  border-radius: 20px;
}

.filtro.ativo {
  background: #000;
  color: #fff;
}








.conteudo.guapira {
  min-height: 100vh;
  background: #a06830;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  color: #000;
}

.guapira-container {
  width: 100%;
  max-width: 900px;
  text-align: center;
  padding: 60px 20px;
}

.guapira-container img{
  width: 100%;
  padding-top: 3vh;
}
.guapira-topo {
  font-size: 14px;
  letter-spacing: 1px;
}

.guapira-titulo {
  font-family: serif;
  font-size: 72px;
  margin: 20px 0 10px;
}

.guapira-sub {
  font-size: 14px;
}

.guapira-texto {
  margin: 30px auto 80px;
  max-width: 520px;
  font-size: 15px;
  line-height: 1.6;
}

.guapira-texto em {
  font-style: italic;
}

.guapira-link {
  margin-top: 20px;
}

.guapira-link a {
  color: #000;
  font-weight: 600;
  text-decoration: underline;
}

.guapira-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 20px;
  column-gap: 30px;
}

.guapira-legenda {
  padding-left: 5%;
  font-size: 13px;
  text-align: left;
}

.guapira-legenda img {
  max-width: 180px;
  size: auto;
}

.guapira-logos {
  max-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-right: 10%;
  padding-bottom: 8%;
}

.guapira-logos img {
  max-width: 140px;
}




















.conteudo.filmepm {
  min-height: 100vh;
  background: #bdb9b7;
  display: flex;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  color: #000;
}

.filmepm-container {
  width: 100%;
  max-width: 900px;
  padding: 60px 20px 100px;
  text-align: center;
}

.filmepm-logo img {
  max-width: 80px;
  margin-bottom: 40px;
}

.filmepm-topo {
  font-size: 14px;
  letter-spacing: 1px;
  display: block;
}

.filmepm-titulo {
  font-family: serif;
  font-size: 64px;
  margin: 20px 0;
}

.filmepm-creditos {
  font-size: 14px;
  line-height: 1.6;
  display: block;
  margin-bottom: 50px;
}

.filmepm-texto {
  max-width: 560px;
  margin: 0 auto 80px;
  font-size: 15px;
  line-height: 1.7;
}

.filmepm-texto p {
  margin-bottom: 20px;
}

.filmepm-status {
  font-style: italic;
}

.filmepm-galeria {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.filmepm-galeria img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
}



































.conteudo.oficinagame {
  min-height: 100vh;
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  font-family: 'Courier New', monospace;
}

.oficina-container {
  width: 100%;
  max-width: 960px;
  padding: 80px 20px;
  text-align: center;
  background-size: 20px 20px;
}

.oficina-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.oficina-icon {
  width: 150px;
}

.oficina-header h1 {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: 2px;
}

.oficina-rainbow {
  height: 8px;
  margin: 40px 0;
  background: linear-gradient(
    to right,
    red,
    orange,
    yellow,
    green,
    blue,
    indigo,
    violet
  );
}

.oficina-texto {
  max-width: 600px;
  margin: 0 auto 60px;
  font-size: 18px;
  line-height: 1.7;
}

.oficina-texto p {
  margin-bottom: 20px;
}

.oficina-galeria {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.oficina-galeria img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
}

.oficina-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.oficina-logos img {
  max-height: 50px;
  filter: grayscale(1) brightness(2);
}





























.conteudo.criarjogos {
  min-height: 100vh;
  background: #7c3aed;
  color: #fff;
  display: flex;
  justify-content: center;
}

.criarjogos-container {
  max-width: 1100px;
  width: 100%;
  padding: 80px 20px;
}

.criarjogos-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}

.criarjogos-texto img {
  max-width: 300px;
  width: 100%;
  align-items: center;
  margin-bottom: 20px;

}

.criarjogos-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.criarjogos-texto p {
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 16px;
}

.criarjogos-texto a {
  color: #2dd4bf;
  font-weight: bold;
  text-decoration: none;
}

.criarjogos-texto a:hover {
  text-decoration: underline;
}

.criarjogos-destaque img {
  width: 100%;
  border-radius: 12px;
}

.criarjogos-galeria {
  margin: 60px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.criarjogos-galeria img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}

.criarjogos-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.criarjogos-logos {
  display: flex;
  gap: 20px;
}

.criarjogos-logos img {
  height: 100%;
  max-height: 8vh;
}






















.conteudo.orgulhoem {
  min-height: 100vh;
  background: #ff7af3;
  color: #ffffff;
  display: flex;
  justify-content: center;
}

.orgulho-container {
  max-width: 900px;
  width: 100%;
  padding: 100px 20px;
}

.orgulho-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.orgulho-header img {
  align-items: center;
  justify-content: center;
  height: auto;
  max-height: 150px;
}

.orgulho-header h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
}

.orgulho-texto p {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.8;
}

.orgulho-texto .destaque {
  color: #fff;
}

.orgulho-texto a {
  color: #fff;
  font-weight: bold;
  text-decoration: underline;
}

.orgulho-texto a:hover {
  opacity: 0.8;
}

.orgulho-logos {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.orgulho-logos img {
  max-height: 100px;
}


.orgulho-container .screenshots img {
  align-items: center;
  justify-content: center;
  width: 70%;
  border-radius: 6px;
  border: 1px solid #ffffff;
}

.orgulho-container .screenshots {
  display: flex;
  justify-content: center;   /* centraliza horizontal */
  margin: 60px 0;            /* respiro acima e abaixo */
}














.conteudo.fernanda {
  display: flex;
  justify-content: center;
  background: #ab833f;
  padding: 40px 20px;
  font-family: 'Arial', sans-serif;
  min-height: 100vh;
}

.poster {
  width: 100%;
  max-width: 900px; /* MESMO PADRÃO DAS PRIMEIRAS */
  padding: 80px 20px;
  color: #fff;
  text-align: center;
  position: relative;
}

/* Logos */
.top-logos {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.top-logos img {
  height: 50px;
}

/* Título */
.titulo {
  font-family: 'Impact', 'Arial Black', sans-serif;
  font-size: 36px;
  line-height: 1;
  color: #ffeb3b;
  text-shadow: 3px 3px #000;
  margin: 10px 0 20px;
}

/* Personagem */
.personagem img {
  width: 100%;
  max-width: 80vw;
  margin: 0 auto 10px;
}

/* Créditos */
.creditos {
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 20px;
}

/* Texto */
.descricaoo {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 25px;
}

.descricaoo p {
  margin-bottom: 10px;
}

.destaque {
  color: #ffeb3b;
  font-weight: bold;
}

.descricaoo a {
  color: #ffeb3b;
  text-decoration: underline;
}

/* Mídias */
.midias {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

.midias img {
  width: 48%;
  border-radius: 6px;
}

/* Rodapé */
.rodapee {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}































.runandcode {
  background: #144148;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  font-family: Arial, sans-serif;
}

.runandcode .poster {
  width: 100%;
  max-width: 900px; /* MESMO PADRÃO DAS PRIMEIRAS */
  padding: 80px 20px;
  color: #ffffff;
  text-align: center;
}

/* Topo */
.runandcode .topo {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.runandcode .topo img {
  height: 50px;
}

/* Hero */
.runandcode .heroo img {
  width: 100%;
  max-width: 80vw;
  margin-bottom: 15px;
}

/* Título */
.runandcode .titulo {
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

/* Texto */
.runandcode .descricao {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.runandcode .descricao p {
  margin-bottom: 12px;
}

.runandcode .destaque {
  color: #4dd0e1;
  font-weight: bold;
}

.runandcode a {
  color: #4dd0e1;
  text-decoration: underline;
}

/* Screenshots */
.runandcode .screenshots {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}

.runandcode .screenshots img {
  width: 50%;
  border-radius: 6px;
}

/* Rodapé */
.runandcode .rodape {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.runandcode .qr {
  text-align: center;
}

.runandcode .qr img {
  width: 80px;
  margin-bottom: 5px;
}

.runandcode .qr p {
  font-size: 12px;
}

.runandcode .stores {
  display: flex;
  gap: 10px;
}

.runandcode .stores img {
  height: 100%;
  max-height: 70px;
}














.unseen {
  background: #000;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  font-family: Arial, sans-serif;
}

.unseen .poster {
  width: 100%;
  max-width: 900px; /* MESMO PADRÃO DAS PRIMEIRAS */
  padding: 1px 20px;
  color: #fff;
  text-align: center;
}

/* Topo */
.unseen .topo {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.unseen .topo img {
  height: 45px;
}

/* Título */
.unseen .titulo {
  font-size: 42px;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.unseen .subtitulo {
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0.8;
  margin-bottom: 20px;
}

/* Hero */
.unseen .hero img {
  width: 100%;
  max-width: 80vw;
  margin-bottom: 20px;
}

/* Texto */
.unseen .descricao {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.unseen .descricao p {
  margin-bottom: 12px;
}

.unseen .destaque {
  color: #ff5252;
  font-weight: bold;
}

.unseen a {
  color: #ff5252;
  text-decoration: underline;
}

/* Mídias */
.unseen .midias {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}

.unseen .midias img {
  width: 100%;
  max-width: 80vw;
  border-radius: 6px;
}

/* Rodapé */
.unseen .rodape {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.unseen .stores {
  display: flex;
  gap: 25px;
}

.unseen .stores img {
  max-height: 80px;
}

.unseen .qr {
  text-align: center;
}

.unseen .qr img {
  width: 80px;
  margin-bottom: 5px;
}

.unseen .qr p {
  font-size: 12px;
}






















.strongarm {
  background: #ffffff;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  font-family: Arial, Helvetica, sans-serif;
  color: #000;
}

.strongarm .posterr {
  width: 100%;
  max-width: 900px; /* MESMO PADRÃO DAS PRIMEIRAS */
  padding: 80px 20px;
  text-align: center;
}

/* Topo */
.strongarm .topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.strongarm .topo img {
  width: 100%;
  max-width: 10vw;
}

/* Título */
.strongarm .titulo {
 max-width: 80vw;
 width: 100%;
 ;
}

.strongarm .studio {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.8;
}

/* Hero */
.strongarm .hero img {
  max-width: 240px;
  margin-bottom: 15px;
}

/* Personagens */
.strongarm .personagens {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}

.strongarm .personagens img {
  width: 45px;
}

/* Texto */
.strongarm .descricaoo {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.strongarm .descricaoo p {
  margin-bottom: 12px;
}

.strongarm .destaquee {
  font-weight: bold;
}

.strongarm a {
  color: #000;
  text-decoration: underline;
}

/* Screenshots */
.strongarm .screenshots {
  display: flex;
  gap: 10px;
}

.strongarm .screenshots img {
  width: 50%;
  border-radius: 6px;
  border: 1px solid #000;
}
























.hungrydreams {
  background: #f2f2f2;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  font-family: 'Comic Sans MS', 'Arial', sans-serif;
  color: #000;
}

.hungrydreams .postor {
  width: 100%;
  max-width: 900px; /* MESMO PADRÃO DAS PRIMEIRAS */
  padding: 80px 20px;
  text-align: center;
}

/* Topo */
.hungrydreams .topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.hungrydreams .topo img {
  height: 50px;
}

/* Título */
.hungrydreams .titulo {
  max-width: 80vw;
  width: 100%;
 ;
}

/* Linha desenhada */
.hungrydreams .linha img {
  max-width: 100%;
  margin-bottom: 20px;
}

/* Texto */
.hungrydreams .descricao {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hungrydreams .descricao p {
  margin-bottom: 12px;
}

.hungrydreams .destaqueee {
  font-weight: bold;
  color: #0066ff;
}

.hungrydreams a {
  color: #0066ff;
  text-decoration: underline;
}

/* Screenshots */
.hungrydreams .screenshots {
  display: flex;
  gap: 10px;
}

.hungrydreams .screenshots img {
  width: 50%;
  border-radius: 8px;
}


























.orbhunter {
  min-height: 100vh;
  background: #e5d9f2;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  font-family: Arial, Helvetica, sans-serif;
  color: #000;
}

.orbhunter .posterr {
  width: 100%;
  max-width: 900px; /* MESMO PADRÃO DAS PRIMEIRAS */
  padding: 5px 20px;
  text-align: center;
}

/* Topo */
.orbhunter .topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.orbhunter .topo img {
  width: 100%;
  max-width: 10vw;
}

/* Título */
.orbhunter .titulo {
 max-width: 80vw;
 width: 100%;
 ;
}

.orbhunter .studio {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.8;
}

/* Hero */
.orbhunter .hero img {
  max-width: 240px;
  margin-bottom: 15px;
}

/* Personagens */
.orbhunter .personagens {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}

.orbhunter .personagens img {
  width: 45px;
}

/* Texto */
.orbhunter .descricaoo {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.orbhunter .descricaoo p {
  margin-bottom: 12px;
}

.orbhunter .destaquee {
  font-weight: bold;
}

.orbhunter a {
  color: #000;
  text-decoration: underline;
}

/* Screenshots */
.orbhunter .screenshots {
  display: flex;
  gap: 10px;
}

.orbhunter .screenshots img {
  width: 50%;
  border-radius: 6px;
  border: 1px solid #000;
}




















































.workshopcult {
  min-height: 100vh;
  background: #ff9253;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  font-family: 'Arial', sans-serif;
  color: #000;
}

.workshopcult .posterr {
  width: 100%;
  max-width: 900px; /* MESMO PADRÃO DAS PRIMEIRAS */
  padding: 5px 20px;
  text-align: center;
}

/* Topo */
.workshopcult .topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.workshopcult .topo img {
  width: 100%;
  max-width: 10vw;
}

/* Título */
.workshopcult .titulo {
 max-width: 80vw;
 width: 100%;
 ;
}

.workshopcult .studio {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.8;
}

/* Hero */
.workshopcult .hero img {
  max-width: 240px;
  margin-bottom: 15px;
}

/* Personagens */
.workshopcult .personagens {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}

.workshopcult .personagens img {
  width: 45px;
}

/* Texto */
.workshopcult .descricaoo {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.workshopcult .descricaoo p {
  margin-bottom: 12px;
}

.workshopcult .destaquee {
  font-weight: bold;
}

.workshopcult a {
  color: #000;
  text-decoration: underline;
}

/* Screenshots */
.workshopcult .screenshots {
  display: flex;
  gap: 10px;
}

.workshopcult .screenshots img {
  width: 50%;
  border-radius: 6px;
  border: 1px solid #000;
}





















.newpop {
  min-height: 100vh;
  background: #ffffff;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  font-family: 'Arial', sans-serif;
  color: #000;
}

.newpop .posterr {
  width: 100%;
  max-width: 900px; /* MESMO PADRÃO DAS PRIMEIRAS */
  padding: 5px 20px;
  text-align: center;
}

/* Topo */
.newpop .topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.newpop .topo img {
  width: 100%;
  max-width: 10vw;
}

/* Título */
.newpop .titulo {
 max-width: 80vw;
 width: 100%;
 ;
}

.newpop .studio {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.8;
}

/* Hero */
.newpop .hero img {
  max-width: 240px;
  margin-bottom: 15px;
}

/* Personagens */
.newpop .personagens {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}

.newpop .personagens img {
  width: 45px;
}

/* Texto */
.newpop .descricaoo {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.newpop .descricaoo p {
  margin-bottom: 12px;
}

.newpop .destaquee {
  font-weight: bold;
}

.newpop a {
  color: #000;
  text-decoration: underline;
}

/* Screenshots */
.newpop .screenshots {
  display: flex;
  gap: 10px;
}

.newpop .screenshots img {
  width: 50%;
  border-radius: 6px;
  border: 1px solid #000;
}

























.rewindstudio {
  min-height: 100vh;
  background: #353535;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  font-family: 'Arial', sans-serif;
  color: #ffffff;
}

.rewindstudio .posterr {
  width: 100%;
  max-width: 900px; /* MESMO PADRÃO DAS PRIMEIRAS */
  padding: 5px 20px;
  text-align: center;
}

/* Topo */
.rewindstudio .topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.rewindstudio .topo img {
  width: 100%;
  max-width: 10vw;
}

/* Título */
.rewindstudio .titulo {
 max-width: 80vw;
 width: 100%;
 ;
}

.rewindstudio .studio {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.8;
}

/* Hero */
.rewindstudio .hero img {
  max-width: 240px;
  margin-bottom: 15px;
}

/* Personagens */
.rewindstudio .personagens {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}

.rewindstudio .personagens img {
  width: 45px;
}

/* Texto */
.rewindstudio .descricaoo {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.rewindstudio .descricaoo p {
  margin-bottom: 12px;
}

.rewindstudio .destaquee {
  font-weight: bold;
}

.rewindstudio a {
  color: #ffffff;
  text-decoration: underline;
}

/* Screenshots */
.rewindstudio .screenshots {
  display: flex;
  gap: 10px;
}

.rewindstudio .screenshots img {
  width: 50%;
  border-radius: 6px;
  border: 1px solid #000;
}












































.sssopa {
  min-height: 100vh;
  background: #ffffff;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  font-family: 'Arial', sans-serif;
  color: #000000;
}

.sssopa .posterr {
  width: 100%;
  max-width: 900px; /* MESMO PADRÃO DAS PRIMEIRAS */
  padding: 5px 20px;
  text-align: center;
}

/* Topo */
.sssopa .topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.sssopa .topo img {
  width: 100%;
  max-width: 10vw;
}

/* Título */
.sssopa .titulo {
 max-width: 80vw;
 width: 100%;
 ;
}

.sssopa .studio {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.8;
}

/* Hero */
.sssopa .hero img {
  max-width: 240px;
  margin-bottom: 15px;
}

/* Personagens */
.sssopa .personagens {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}

.sssopa .personagens img {
  width: 45px;
}

/* Texto */
.sssopa .descricaoo {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.sssopa .descricaoo p {
  margin-bottom: 12px;
}

.sssopa .destaquee {
  font-weight: bold;
}

.sssopa a {
  color: #000000;
  text-decoration: underline;
}

/* Screenshots */
.sssopa .screenshots {
  display: flex;
  justify-content: center;   /* centraliza horizontal */
  margin: 60px 0;            /* respiro acima e abaixo */
}

.sssopa .screenshots img {
  width: 50%;
  border-radius: 6px;
  border: 1px solid #000;
}















.gdd {
  min-height: 100vh;
  background: #000000;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  font-family: 'Arial', sans-serif;
  color: #ffffff;
}

.gdd .posterr {
  width: 100%;
  max-width: 900px; /* MESMO PADRÃO DAS PRIMEIRAS */
  padding: 5px 20px;
  text-align: center;
}

/* Topo */
.gdd .topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.gdd .topo img {
  width: 100%;
  max-width: 10vw;
}

/* Título */
.gdd .titulo {
 max-width: 80vw;
 width: 100%;
 ;
}

.gdd .studio {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.8;
}

/* Hero */
.gdd .hero img {
  max-width: 240px;
  margin-bottom: 15px;
}

/* Personagens */
.gdd .personagens {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}

.gdd .personagens img {
  width: 45px;
}

/* Texto */
.gdd .descricaoo {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.gdd .descricaoo p {
  margin-bottom: 12px;
}

.gdd .destaquee {
  font-weight: bold;
}

.gdd a {
  color: #ffffff;
  text-decoration: underline;
}

/* Screenshots */
.gdd .screenshots {
  display: flex;
  justify-content: center;   /* centraliza horizontal */
  margin: 60px 0;            /* respiro acima e abaixo */
}

.gdd .screenshots img {
  width: 50%;
  border-radius: 6px;
  border: 1px solid #000;
}









































/* Rodapé */
.rodape {
  text-align: center;

}

.logo-rodape {
  margin-top: 25px;
  width: 180px;
  height: auto;
  margin-bottom: 10px;
}


@media (max-width: 510px) {
  .hero-content p {
  font-size: 16px;
  }

  .hungrydreams .descricao {
    font-size: 15px;
  }

  .criarjogos-main {
    grid-template-columns: none;
  }

.cabecalho {
  height: calc(100vh / 10);
}
}

@media (max-width: 1080px) {
 /* esse é um outro que diz respeito à largura da tela */

 .hero-content h1 {
    font-size: 7vw;
 }

 .oficina-header h1 {
    font-size: 6vw;
 }

 .criarjogos-logos img {
    height: 5vh;
 }

.guapira-titulo {
    font-size: 9vw;
}



  .hero-container,
  .sobre-container,
  .contato-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-frase {
  color: white;
  font-size: 25px;
  font-weight: 400;
  }

  .sobre-esquerda {
  width: 100%;
  }

  .contato-form {
  width: 100%;
  }


  .info.email a {
    display: inline-block;
    max-width: 180px;       /* ajuste conforme seu layout */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }


}

@media (max-height: 900px) {
/* quando a tela é baixa e
 isso afeta a responsividade dos conteúdos */


}

@media (max-height: 810px) {
/* quando a tela é muito baixa e
 isso afeta a responsividade dos conteúdos */
 


  .guapira-titulo {
    font-size: 48px;
  }

  .guapira-texto {
    margin: 80px auto 60px;
  }

  .guapira-footer {
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
  }

  .guapira-legenda {
    text-align: center;
  }

}

@media (max-width: 1024px) {
     /* Essa é a largura máxima, será usada para mobiles */

  .logo {
  height: 5vh;
  }


  .menu {
    display: none;      /* esconde o menu */
  }
  .hamburger {
    display: block;     /* mostra o sanduíche */
  }



}