* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fce7f0;
  color: #333333;
  line-height: 1.6;
}

/* Cabeçalho */
header {
  background: linear-gradient(to bottom, #FF9EC4,#fce7f0);
  color: #fff;
  padding: 20px;
  text-align: center;
  font-family: 'Quicksand', sans-serif;;
}

/* Introdução */
.introducao {
  padding: 60px 20px;
  background-color: #fff; 
}

.introducao-container {
  display: flex; /* para que fique a imagem ao lado do texto */
  align-items: center; 
  gap: 50px; 
  max-width: 1200px; 
  margin: 0 auto; /* serve para centralizar o container na página */
}

.intro-imagem {
  flex: 1; /* serve para que a imagem ocupará 1 parte do espaço */
  max-width: 380px;
}

.intro-imagem img {
  width: 100%;
  border-radius: 15px; 
  border: 4px solid #FF9EC4; 
}

.intro-texto {
  flex: 2;
}

.intro-texto h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.5rem; 
  color: #c8648c; 
  margin-bottom: 20px;
}

.intro-texto p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  background-color: rgba(255, 255, 255, 0.51)
}

nav a {
  color: #a75375;
  text-decoration: none;
  font-weight: bold;
  font-size: 30px;
}

nav a:hover {
  background-color: #FF9EC4;
  color: #ffffff;
  border-radius: 8px;
  padding: 12px;
  transition: 0.5s;
}

nav a.ativo {
  text-decoration: underline;
}

body {
  font-family: 'Montserrat', sans-serif; /* Fonte padrão para todo o corpo */
  background-color: #fce7f0;
  color: #333333;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Quicksand', sans-serif; /* os títulos */
  font-weight: 600;
}

/* Galeria */
.galeria {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.galeria h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #a75375;
  background-color: #f090b69c;
  width: 300px;
  margin: 0 auto 30px;
  border-radius:20px ;
}

#busca {
  display: block;
  margin: 0 auto 30px;
  padding: 10px;
  width: 900px;
  border: 1px solid #ccc;
  border-radius: 20px;
  outline: none;
  height: 50px;
}

#busca:focus {
  border-color: #8d6748;
  box-shadow: 0 0 0 3px rgba(141, 103, 72, 0.15);
}

/* Produtos */
.produtos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.produto {
  background-color: #fff;
  border: 1px solid #e0dcd5;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.produto:hover {
  transform: scale(1.03);
}

.produto img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.produto h3 {
  margin: 15px 0 5px;
  color: #6b4c3b;
  font-size: 1.2rem;
}

.produto p {
  font-size: 0.95rem;
  color: #555;
}

.produto span {
  display: inline-block;
  margin: 10px 0;
  font-weight: bold;
  color: #c8648c;
  background-color: #f5d6e2;
  padding: 5px 15px; 
  border-radius: 20px;
}

.produto button {
  background-color: #FF9EC4;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 180px;
  margin-top: 10px;
}

.produto button:hover {
  background-color: #c8648c;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  padding: 20px;
}

.modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 100%;
  max-width: 700px;
  text-align: center;
  position: relative;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.modal-content img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.modal-content h2 {
  color: #6b4c3b;
  margin-bottom: 10px;
}

.modal-content p {
  color: #555;
  margin-bottom: 10px;
}

.modal-content strong {
  color: #c8648c;
  font-size: 1.1rem;
}

.modal-content .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.8rem;
  cursor: pointer;
  color: #6b4c3b;
}

.modal-content button {
  background-color: #FF9EC4;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 15px;
}

.modal-content button:hover {
  background-color: #c8648c;
}

/* Contato */
.contato {
  background-color: #f5d6e2;
  padding: 40px 20px;
  text-align: center;
}

.contato h2 {
  font-size: 2rem;
  color: #5c3d2e;
  margin-bottom: 10px;
}

.contato p {
  margin-bottom: 20px;
  color: #6b4c3b;
}

.contato button {
  background-color: #8d6748;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contato button:hover {
  background-color: #a97c5d;
}

/* Rodapé */
footer {
  background-color: #fce7f0;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #5c3d2e;
}

/* Responsividade */
@media (max-width: 600px) {
  header h1 {
    font-size: 1.8rem;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .produto img {
    height: 150px;
  }
}

/*  para o Formulário e Contato */
.contato form {
  display: flex;
  flex-direction: column;
  gap: 1rem; 
  max-width: 600px;
  margin: 1rem auto 2rem auto; /* Centraliza e adiciona a  margem */
}

.contato-lista {
  list-style: none;
  padding-left: 0; /* Remove o espaçamento padrão da lista */
}

.form-group {
  display: flex;
  flex-direction: column;
}

.contato label {
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.contato input,
.contato textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: sans-serif; 
  font-size: 1rem;
}

.contato button {
  padding: 1rem;
  background-color: #ff9ec5;
  color: white; 
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s;
}

.contato button:hover {
  background-color: #c8648c;
}

#form-status {
  margin-top: 1rem;
  text-align: center;
  font-weight: bold;
}

/* Linha horizontal para separar */
hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 2rem 0;
}