/*? Definições gerais*/
#landing{
  background: url(../slideshow/slide1.png) center/cover;
  margin-top: 3rem;

  display: flex;
  width: 100%;
  height: fit-content;
  padding: 3rem 0rem;
  flex-direction: column;

  justify-content: center;
  align-items: center;

  letter-spacing: 0.3rem;
  
  text-align: center;
}

#landing div{
  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: center;

}

#landing strong{
  color: #f0be8f;
  font-weight: 700;
}

/*? Ambas as divs*/
#landing_main{
  width: fit-content;
  height: fit-content;
 
  gap:2rem;
  margin-left: 7px;
  margin-right: 7px;
}

/*? Div superior (imagem, título e subtítulo)*/
#landing #landing_top h1{
  font-weight: 800;
  font-size: 200%;
  color: white;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

#landing_top p{
  font-size: 1rem;
  color: white;
}

/*? Div inferior (Desconto e botão) */
#landing_bottom{
  margin-top: 2rem;
  color: white;
  font-size: 1.7rem;
}

#landing_bottom button{
  width: 10rem;
  height: 4rem;

  background-color: white;
  font: 800 1.3rem 'Poppins', sans-serif;
  border-radius: 10px;
  margin-top: 1rem;

}

#landing_bottom button:hover{
  background-color:#ca8a33;
  color: white;
  cursor: pointer;

  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}

/*? Escondido (texto do cupom) */
#landing_main #escondido{
  visibility: hidden;
  letter-spacing: normal;
  margin-top: 2rem;
  margin-bottom: 5rem;

  visibility: hidden;
}

#escondido p{
  font-size: 75%;
}


  @media all and (max-width: 912px){
    #landing{
      margin-top: 0;
    }

    #landing #landing_top h1{
      font-weight: 800;
      font-size: 200%;
      color: white;
      flex-direction: column;
      margin-top: 1rem;
      margin-bottom: 1rem;
    }
  }