@import url('https://fonts.googleapis.com/css2?family=Anaktoria&family=Cardo&display=swap');

@font-face {
  font-family: 'Anaktoria';
  src: url('../fontes/Anaktoria/Anaktoria.otf') format('opentype');
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Cardo', serif;
}

.boasVindas {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 40px 20px;
  background-color: #f2c4d0;
  gap: 40px;
}

.boasVindas > div {
  flex: 1 1 300px;
  text-align: center;
}

.img-flor img {
  max-width: 150px;
  height: auto;
}

.carousel {
  width: 100%;
  height: auto;
}

.boasVindas p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #224a50;
  max-width: 500px;
  margin: 0 auto;
  text-align: justify;
}

.informacoes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  background-image: url('../images/papel_amssado.jpg');
  background-size: cover;
  background-position: center;
}

.informacoes div {
  background-color: #d17d91;
  padding: 30px;
  border-radius: 20px;
  flex: 1 1 300px;
  max-width: 500px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.informacoes h1 {
  font-family: 'Anaktoria', serif;
  font-size: 1.8rem;
  color: #224a50;
  position: relative;
  text-align: left;
  margin-bottom: 10px;
}

.informacoes h1::after {
  content: '';
  display: block;
  height: 2px;
  background-color: #224a50;
  width: 100%;
  margin-top: 8px;
}

.informacoes p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #224a50;
  text-align: justify;
}

.projetos {
  background-color: #f2c4d0;
  padding: 60px 20px;
  text-align: center;
}

.projetos h1,
.projetos h2 {
  font-family: 'Anaktoria', serif;
  color: #224a50;
}

.projetos-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.projeto {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 280px;
  text-align: center;
  transition: transform 0.3s;
}

.projeto:hover {
  transform: translateY(-5px);
}

.projeto img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.projeto a {
  background-color: #d17d91;
  color: #f2f2f2;
  padding: 10px 20px;
  border-radius: 999px;
  font-family: 'Cardo', serif;
  text-decoration: none;
  transition: background-color 0.3s;
  display: inline-block;
}

.projeto a:hover {
  background-color: #c06a80;
}

.loja {
  background-image: url('../images/papel_amssado.jpg');
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.loja > div {
  background-color: #d17d91;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  padding: 15px 20px;
  width: 340px;
  max-width: 100%;
}



.imagem-loja img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 10px;
}

.texto-loja {
  flex: 1;
  text-align: center;
}

.texto-loja p {
  font-family: 'Cardo', serif;
  font-size: 1.2rem;
  color: #224a50;
  margin-bottom: 10px;
}

.texto-loja a {
  background-color: #224a50;
  color: #f2f2f2;
  padding: 8px 18px;
  border-radius: 999px;
  font-family: 'Cardo', serif;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.texto-loja a:hover {
  background-color: #1a383d;
}

@media (max-width: 768px) {
  .boasVindas {
    padding: 30px 15px;
  }

  .informacoes {
    padding: 40px 15px;
  }

  .projetos-cards {
    flex-direction: column;
    align-items: center;
  }

  .loja {
    flex-direction: column;
    align-items: center;
  }

  .loja > div {
    width: 90%;
  }
}