* {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

}



/* Estilo Global */

body {

  font-family: "Arial", sans-serif;

  margin: 0;

  padding: 0;

  background-color: #3d2b1f; /* Fundo marrom escuro */

  color: #ffffff; /* Texto branco */

  text-align: center;

}



#main{

  display: flex;

  flex-direction: column;

  height: 100dvh;

  justify-content: space-between;

}



header {

  background-color: #2c1f14; /* Tom mais escuro para cabeçalho */

  padding: 20px 10vw;

  display: flex;

  align-items: center;

  justify-content: space-between;

}



header img {

  height: 60px;

}



header>div{

  text-align: end;

}



header h1 {

  margin: 0;

  font-size: 2.1rem;

}



header p {

  margin: 10px 0;

  font-size: 1rem;

  color: #e0c9a6; /* Texto em bege claro */

}



.container {

  max-width: 60vw;

  margin: 30px auto;

  padding: 20px;

}



.cta {

  margin-top: 30px;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 16px;

}



.cta button {

  background-color: #e0c9a6; /* Bege */

  border: none;

  color: #3d2b1f; /* Texto marrom escuro */

  font-size: 1.2rem;

  font-weight: bold;

  padding: 15px 30px;

  border-radius: 8px;

  cursor: pointer;

  transition: all 0.3s;

  /* max-width: 100%; */

}



.cta button:hover {

  background-color: #d4b185; /* Bege mais escuro */

  color: #ffffff;

}



.history {

  margin-top: 50px;

  text-align: left;

  background-color: #2c1f14; /* Fundo marrom para contraste */

  color: #e0c9a6; /* Texto bege claro */

  border-radius: 10px;

  padding: 20px;

}



.history img {

  max-width: 100%;

  border-radius: 10px;

}



.history h2 {

  font-size: 2rem;

  margin-bottom: 20px;

  color: #ffffff; /* Títulos brancos */

  text-align: center;

}



.history p {

  line-height: 1.8;

  font-size: 1.1rem;

  text-align: center;

}



footer {

  background-color: #2c1f14; /* Rodapé principal */

  padding: 20px 10vw;

  color: #e0c9a6; /* Texto bege */

  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;

  align-items: center;

}



footer div {

  margin: 10px;

  text-align: center;

}



footer img {

  height: 30px;

  margin: 0 10px;

}



footer p {

  margin: 5px 0;

}



.footer-info{

  text-align: start;

}



.bg-main{

  background-color: #2c1f14;

}
.text-main{

  color: #2c1f14;

}

.bg-secondary{

  background-color: #e0c9a6;

}

.text-secondary{

 color: #e0c9a6;

}


.bg-gradient{

  /* background-color: #2c1f14;

   */

  background-image: linear-gradient(to bottom, transparent, #2c1f14);

}



/* Tarja inferior para direitos reservados */

.copyright {

  background-color: #1f140c; /* Tom mais escuro para diferenciar */

  color: #e0c9a6; /* Texto bege claro */

  padding: 10px;

  font-size: 0.9rem;

}



.icon{

  font-size: 32px;

  color: #e0c9a6;

}

.info-wrapper{

  display: flex;

  gap: 16px;

}



.book-wrapper{

  display: flex;

  /* gap: 16px; */

  justify-content: center;

}



/* Responsividade */



@media (max-width: 768px) {

  header{

    padding: 10px 5vw;

  }

  header h1 {

    font-size: 0.9rem;

  }

  header p {

    font-size: 0.6rem;

  }

  .container {

    padding: 10px;

    max-width: 90vw;

  }



  .cta button {

    font-size: 1rem;

    padding: 10px 20px;

    max-width: 100%;

  }



  .history h2 {

    font-size: 1.5rem;

  }



  .history p {

    font-size: 1rem;

  }



  footer {

    padding: 10px 5vw;

  }

}

