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;
}










.hero {
  min-height: 100vh;
  background: #fecccb;
  
  /* background: linear-gradient(180deg, #000000 20%, #6e6e6e 100%);
  */
  
  display: flex;
  align-items: center;
  padding: 0 10%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  align-items: center;
  gap: 60px;
}
.hero-img { 
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center;     /* Centraliza verticalmente */
}

.hero-img img {
  padding-top: calc(100vh / 8);
  width: 90%;
  height: auto;
  object-fit: cover;


}




.hero-texto {
  padding-top: calc(100vh / 8);
}

.hero-texto p {
  color: #8b2626;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
}















.secao1 {
  min-height: 100vh;
  padding: 80px 10%;
  background: #8b2626;
  color: white;
  display: flex;
  align-items: center;
}

.secao1-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  width: 100%;
}

.secao1-esquerda h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}


.secao1-esquerda a {
  color: white;
}


.secao1-esquerda p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.secao1-direita h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  margin-bottom: 40px;
}

.card-youtube {
  display: block;
  padding: 30px;
  background: white;
  color: black;
  text-decoration: none;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.youtube-imagem {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.card-youtube:hover {
  transform: translateY(-5px);
}

.card-youtube span {
  font-weight: 600;
}





















.secao2 {
  min-height: 100vh;
  padding: 80px 10%;
  background: #ffdcdc;
  display: flex;
  align-items: center;
}

.secao2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  width: 100%;
  align-items: center;
}

.secao2-esquerda h1 {
  font-size: 50px;
  font-weight: 800;
  color: #8b2626;
}

.secao2-esquerda p {
  font-size: 1.2rem;
  margin-top: 20px;
  
}

.secao2-direita {
    display: flex;
    flex-direction: column;   /* ISSO resolve */
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center;     /* Centraliza verticalmente */
}

.secao2-direita p {
  font-size: 1.2rem;
 padding-top: 5%;
}

.card-contato {
  background: white;
  border-radius: 24px;
  padding: 50px 40px;
  max-width: 420px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.card-contato h2 {
  text-align: center;
  color: #8b2626;
  margin-bottom: 40px;
  font-size: 1.8rem;
}

/* blocos */
.contato-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10%;
  text-decoration: none;
  color: inherit;
  border-radius: 18px;
  margin-bottom: 20px;
  cursor: pointer;
}

.contato-item:hover {
  text-decoration: none;
  color: inherit;
  opacity: 0.9;
}



.contato-item.email {
  background: #f8bebd;
}

.contato-item.whatsapp {
  background: #f8bebd;
}

.contato-item.instagram {
  background: #f8bebd;
}

/* ícones */
.contato-item .icone {
  width: 48px;
  height: 48px;
  background: #8b2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contato-item svg {
  width: 24px;
  height: 24px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

/* texto */
.contato-item strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.contato-item p {
  margin: 0;
  font-size: 0.95rem;
}















/* Rodapé */
.rodape {
  min-height: 25vh;
  align-items: center;
  text-align: center;
  background: linear-gradient(
  to bottom,
  #ffdcdc 0%,
  #ffffff 100%
);
}

.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;
}

.secao1-esquerda h2 {
    font-size: 2rem;
}

.hero-texto p {
    font-size: 20px;
}

}

@media (max-width: 1080px) {
 /* esse é um outro que diz respeito à largura da tela */

}

@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;
  }

}

