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: white;
  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: #e9a4a3;
  color: #701415;

  display: flex;
  align-items: center;   /* centraliza verticalmente */
  padding-left: 20px;    /* espaço da esquerda */
  z-index: 10;

  transition: top 0.3s ease;
}

.menu {
  margin-left: auto;
  padding-right: 5%;
}

.menu a {
  color: #701415;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 600;
}

.hamburger {
  display: none;
  font-size: 30px;
  color: #701415;
  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: #e9a4a3;

  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;
}














.secao1 {
  min-height: 30vh;
  padding: 40px 10px;
  background: #8b2626;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.secao1-grid {
  padding-top: calc(100vh / 8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
}

.secao1-esquerda {
  max-width: 680px;
}

.secao1-esquerda h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 20px;
}


.secao1-esquerda a {
  color: white;
}


.secao1-esquerda p {
  text-align: center;
  font-size: 1.2rem;
}



















.animefriends {
  min-height: 50vh;
  padding: 20px 10%;
  background: #a318be;
  color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
}

.afgrid {
  padding-top: 20px;
  max-width: 680px;
  display: grid;
  justify-content: center;
}

.titulo-af {
  display: flex;
  max-height: 200px;
}

.animefriends p {
  text-align: center;
  font-size: 1.2rem;
}

.afimagens {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.foto-af {
  margin: 20px auto;
  max-width: 100%;
  height: 25vh;
  border-radius: 12px;
}



































.newpopday {
  min-height: 50vh;
  padding: 80px 10%;
  background: #000000;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.npgrid {
  max-width: 680px;
  display: grid;
  justify-content: center;
}

.titulo-np {
  display: flex;
  max-height: 100%;
}

.logo-npd {
  width: 100%;
}

.newpopday p {
  text-align: center;
  font-size: 1.2rem;
}

.npimagens {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.foto-np {
  margin: 20px auto;
  max-width: 100%;
  height: 25vh;
  border-radius: 12px;
}















.poccon {
  min-height: 50vh;
  padding: 80px 10%;
  background: #ff5cb6;
  color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pcgrid {
  max-width: 680px;
  display: grid;
  justify-content: center;
}

.titulo-pc {
  display: flex;
  max-height: 200px;
  padding-bottom: 30px;
}

.logo-pp {
  width: 100%;
}

.pcgrid p {
  text-align: center;
  font-size: 1.2rem;
}

.ppimagens {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.foto-pp {
  margin: 20px auto;
  max-width: 100%;
  max-height: 30vh;
  border-radius: 12px;
}

















.unb {
  min-height: 50vh;
  padding: 80px 10%;
  background: #ffffff;
  color: rgb(0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
}

.unbgrid {
  max-width: 680px;
  display: grid;
  justify-content: center;
}

.titulo-unb {
  display: flex;
  max-height: 250px;
  padding-bottom: 30px;
}

.logo-unb {
  width: 100%;
}

.unbgrid p {
  text-align: center;
  font-size: 1.2rem;
}

.unbimagens {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.foto-unb {
  margin: 20px auto;
  max-width: 100%;
  height: 25vh;
  border-radius: 12px;
}























.radiovibe {
  min-height: 50vh;
  padding: 80px 10%;
  background: #f15af7;
  color: rgb(0, 0, 0);
 display: flex;
  align-items: center;
  justify-content: center;
}

.rvgrid {
  max-width: 680px;
  display: grid;
  justify-content: center;
}

.titulo-rv {
  align-items: center;
  justify-content: center;
  display: flex;
  max-height: 250px;
  padding-bottom: 30px;
}


.rvgrid p {
  text-align: center;
  font-size: 1.2rem;
}

.rvimagens {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.foto-rv {
  margin: 20px auto;
  max-width: 100%;
  max-height: 300px;
  border-radius: 12px;
}



















/* Rodapé */
.rodape {
  min-height: 25vh;
  align-items: center;
  text-align: center;
  background: linear-gradient(
  to bottom,
  #f15af7 2%,
  #ffffff 99%
);
}

.rodape h1 {
  font-size: 16px;
  color: #777;
  font-weight: 400;
}

.rodape h2 {
  font-size: 14px;
  color: #aaa;
  font-weight: 300;
  padding: 10px;
}

.logo-fim {
  padding-top: 2vh;
  padding-bottom: 5vh;
  width: 210px;
}






@media (max-width: 510px) {

.cabecalho {
  height: calc(100vh / 10);
}

.secao1-direita h1 {
    font-size: 10vw
}

.secao2-esquerda h1 {
    font-size: 10vw
}

.contato-item.email p{
  display: none;
}

.card-contato h2 {
  font-size: 8vw;
}


}

@media (max-width: 1080px) {
 /* esse é um outro que diz respeito à largura da tela */
.afimagens {
    flex-direction: column;
    gap: 5px;

}

.foto-af {
    max-width: 100%;
    height: 100%;
}

}

@media (max-height: 900px) {
/* quando a tela é baixa e
 isso afeta a responsividade dos conteúdos */

}

@media (max-width: 810px) {
/* quando a tela é muito baixa e
 isso afeta a responsividade dos conteúdos */

.contato-item.email p{
  font-size: 9px;
}

.card-contato {
  padding: 5% 4%;
}

}

@media (max-width: 1024px) {
     /* Essa é a largura máxima, será usada para mobiles */


  .hero-texto {
  padding-top: 1px;
  }

  .menu {
    display: none;      /* esconde o menu */
  }
  .hamburger {
    display: block;     /* mostra o sanduíche */
  }

  .hero-grid,
  .secao1-grid,
  .secao2-grid {
    grid-template-columns: 1fr;
    gap: 40px;
            /* text-align: center; */
  }

  .hero-texto p {
    text-align: center;
  }

}

