body {
  font-family: 'Lexend', sans-serif;
  background: linear-gradient(to bottom, #e0d1f7, #c9b6f2, #b49de8, #a586db);
  margin: 0;
  padding: 0;
  color: #5a4a6d;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

header h1 {
  color: #a792d4;
  font-size: 1.8rem;
}

header a {
  color: black;
  font-size: 18px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: color 0.3s ease;
}

header a:hover {
  color: #a792d4;
}

header a img {
  width: 20px;
  height: 20px;
}

.color {
  background-color: #666;
  height: 6.7rem;
}

.banner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: auto;
  background-color: #ff6a13; /* tom lilás claro */
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-family: 'Lexend', sans-serif;
  gap: 20px;
  margin: 2rem;
}

.banner-img {
  width: 280px;
  object-fit: cover;
  border-radius: 12px;
}

.banner-texto {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.banner-texto p {
  margin: 0;
  font-size: 18px;
  color: white;
}

.banner-botao {
  background-color: rgb(246, 234, 99);
  color: rgb(69,44, 19); 
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 80px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.banner-botao:hover {
  background-color: #9e5fd1;
}


.container {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem;
  background-color: none;
}

.filtros {
  width: 250px;
  background: white;
  padding: 1rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.filtros input,
.filtros select {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  border: 1px solid #c4b5e4;
  background-color: #a792d4;
  font-family: 'Lexend', sans-serif;
  color: white;
  box-sizing: border-box;
  transition: box-shadow 0.2s;
}

.filtros input::placeholder {
  color: #ede7f6;
}

.filtros input:focus,
.filtros select:focus {
  box-shadow: 0 0 0 2px #d1c4e9;
  outline: none;
}

.paginacao {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.paginacao button {
  background: #ffffff;
  color: #7f6bbd;
  border: 1px solid #7f6bbd;;
  border-radius: 80px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  min-width: 36px;
}

.paginacao button:hover {
  background: #f2e9fc;
  border-color: #c18df0;
}

.paginacao button.ativo {
  background: #d0a7f7;
  color: #fff;
  border-color: #b279f2;
  font-weight: bold;
}

.paginacao span {
  font-size: 18px;
  margin: 0 5px;
}


.produtos {
  flex-grow: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 0 0 0 1rem;
}

.card {
  background: white;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.card img {
  width: 100%;
  max-height: 255px;
  border-radius: 12px;
  object-fit: cover;
}

.tag {
  position: absolute;
  top: 10px;
  left: 10px;
  color: white;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
}

.tag-nacional {
  background-color: rgb(27, 167, 27);
}

.tag-internacional {
  background-color: rgb(26, 74, 177);
}

.card h3 {
  font-size: 1.1rem;
  margin: 0.7rem 0 0.4rem;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2; /* Limita a 2 linhas */
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  word-break: break-word;
  height: 2.8em;
}

.card p {
  font-size: 0.9rem;
  color: #666;
}

.card button {
  margin-top: 0.5rem;
  background-color: #7f6bbd;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: 'Lexend', sans-serif;
}

.card button:hover {
  background-color: #6e59a8;
}

.footer {
  background-color: white;
  padding: 1.5rem 2rem;
  border-top: 1px solid #e3d6f5;
  font-family: 'Lexend', sans-serif;
  color: #7f6bbd;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.03);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  gap: 1rem;
}

.footer-section {
  flex: 1;
  min-width: 180px;
}

.footer h3 {
  margin: 0 0 0.2rem 0;
  font-size: 1.2rem;
  color: #a792d4;
}

.footer p {
  margin: 0.2rem 0;
  font-size: 0.85rem;
  color: #7a6ba8;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #a586db;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #6f5aa9;
}


@media (max-width: 768px) {
  header h1 {
    font-size: 1.5rem;
  }

  header a {
    font-size: 14px;
  }

  .color {
    background-color: #a792d4;
    height: 6rem;
  }

  .banner {
    flex-direction: column;
    text-align: center;
    padding: 30px;
    margin: 10px;

  }

  .filtros {
    width: 100%;
    background: white;
    padding: 1rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

  .container {
    padding: 0;
    margin: 10px;
  }

  .produtos {
    padding: 1rem 0 0 0;
    gap: 15px;
  }

  .card {
    display: flex;
    border-radius: 10px;
    gap: 15px;
    padding: 5px;
  }

  .tag {
    font-size: 10px;
  }

  .card img {
    width: 150px;
  }

  .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
  }

  .content h3{
    font-size: 14px;
    margin: 0;
  }

  .content p{
    font-size: 10px;
    margin: 0;
  }
}

