@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Outfit&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Outfit&family=Playpen+Sans:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Outfit&family=Playpen+Sans:wght@500&display=swap');

body,
html {
  margin: 0;
  padding: 0;
  font-family: "Libre Baskerville", serif;
}

header {
  width: 100%;
  background: #f3eef0;
  padding: 20px 0;
  text-align: center;
  color: black;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);

}

header h1 {
  margin: 0;
  font-size: 1.3em;
}



section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 1s ease;
  opacity: 0;
  transform: translateY(80px);
  padding: 2rem;
}

section.show {
  opacity: 1;
  transform: translateY(0);
}

/* Layout dividido */
.content {
  display: flex;
  max-width: 1100px;
  width: 100%;
  align-items: center;
  gap: 2rem;
}

.text {
  flex: 1;
  color: white;
}

.text h2 {
  font-size: 3rem;

  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  text-align: center;
  margin: 0;
}

.sub h3 {
  font-size: 1.5rem;
margin: 0;
  text-align: center;
  font-family: "Playpen Sans", cursive;
  font-optical-sizing: auto;


}

.descricao {
  font-size: 18px;
  line-height: 1.6;
  text-align: justify;

  text-justify: inter-word;

}

.image {
  flex: 1;
}

.image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Fundo colorido */
section:nth-child(1) {
  background: #dd8baa;
}

section:nth-child(2) {
  background: #dd8baa;
}


section:nth-child(3) {
  background: #f3eef0;
}

section:nth-child(4) {
  background: #fff4e1;
}

section:nth-child(5) {
  background: #dd8baa;
}



.fundoImagem {
  padding: 18px;
  background-color: #11697d;

}

.card {
  background: #eebf6b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 25px;
  padding: 15px 25px;
  max-width: 600px;
  margin: 32px auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.left img {
  width: 50px;
  height: 50px;
}

.info h3 {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
  color: black;
}

.info p {
  margin: 5px 0 0;
  font-size: 14px;
  color: black;
}

.price {
  text-align: right;
  font-weight: bold;
  font-size: 32px;
  line-height: 1;
  color: black;
}

.price small {
  font-size: 18px;
}

.price .taxas{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.price .taxa {
  font-size: 12px;

  font-weight: normal;
  margin-left: 5px;
}

.info button {
  margin-top: 10px;
  padding: 12px 30px;
  background-color: #11697d;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

/* foooter */
footer {

  background: #f3eef0;
  color: black;
  padding: 20px 10px;
  text-align: center;
  height: 150px;
}

footer a {

  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.social {
  margin-top: 10px;
}

.social a {
  margin: 0 25px;
  display: inline-block;
}


.social img {
  width: 60px;
  height: 60px;
  /* filter: brightness(0) invert(1);  */
  transition: transform 0.3s ease;
}

.social img:hover {
  transform: scale(1.2);
}

.footer-container p{
  text-align: center;
  font-size: 14px;


}
/* .left .mercadoLivre{
  width: 65px;
  height: 65px;
 

  transition: transform 0.3s ease;
} */


/* fotos */

.alineSentada {
  width: 100px;
  height: auto;
  border-radius: 15px;
  max-width: 80%;

  transition: transform 0.3s ease;
}

.alineMesa {
  width: 100px;
  height: auto;
  margin-left: 50px;
  border-radius: 15px;
  max-width: 80%;

  transition: transform 0.3s ease;


}

.alineLivro {
  width: 100px;
     margin-left: 50px;
  height: auto;
  border-radius: 15px;
  max-width: 80%;

  transition: transform 0.3s ease;


}

/* Responsivo (celular) */
@media (max-width: 768px) {
  .content {
    flex-direction: column;
    text-align: center;
  }

  .image img {
    max-width: 80%;
  }

  .text p {
    font-size: 15px;
  }

  .info h3 {
    font-size: 15px;
  }

  .price {
    font-size: 22px;
  }


  .image .alineLivro, .alineMesa{
    margin-left: 0;
  }

  .left .info h3, p{
    text-align: left;
  }
}