/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: "Poppins", sans-serif;
  background: #fff9c4; /* amarelo suave */
  color: #1b5e20;
  line-height: 1.6;
}

/* Hero */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(27,94,32,0.8), rgba(27,94,32,0.8)), url("https://lh3.googleusercontent.com/gps-cs-s/AC9h4no5KtrtcRQdwvKIJ9B5o2bXmPHI0JQQhnRih79epcSMqNUqe8OQm513o8nzOcl9VBAHScz8C0O24tzgJpvyFugPKeIM8AorrwF0MQv9GEzPaAsz7iKQRb5vXd7mK1G2ql4o2AGsnZh3WQ6L=s680-w680-h510-rw") center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.btn-hero {
  background: #ffeb3b;
  color: #1b5e20;
  padding: 15px 25px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s;
}

.btn-hero:hover {
  transform: scale(1.1);
}

/* Containers */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
}

/* Sobre */
.sobre-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.sobre-grid img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #1b5e20;
}

.sobre-text {
  text-align: left;
  max-width: 400px;
}

.sobre-text ul {
  list-style: none;
}

.sobre-text li {
  margin: 10px 0;
  font-weight: bold;
}

/* Serviços */
.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: #fffde7;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  flex: 1 1 300px;
  transition: transform 0.3s;
}

.card i {
  font-size: 3rem;
  color: #1b5e20;
  margin-bottom: 15px;
}

.card:hover {
  transform: translateY(-8px);
}

/* Galeria */
.galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-top: 25px;
}

.galeria img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 15px;
  border: 4px solid #1b5e20;
  transition: transform 0.3s;
}

.galeria img:hover {
  transform: scale(1.05);
}

/* Avaliações */
.avaliacao-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.stars {
  display: flex;
  gap: 8px;
  font-size: 2rem;
  color: #ccc;
  cursor: pointer;
}

.stars .ativo {
  color: gold;
}

textarea {
  width: 100%;
  max-width: 600px;
  height: 100px;
  padding: 10px;
  border-radius: 10px;
  border: 2px solid #1b5e20;
  resize: none;
  font-size: 1rem;
}

button#enviarAvaliacao {
  background: #1b5e20;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s;
}

button#enviarAvaliacao:hover {
  transform: scale(1.05);
}

.lista-avaliacoes {
  margin-top: 30px;
  text-align: left;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.avaliacao {
  background: #fffde7;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.avaliacao .stars {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

/* Contato */
.contato-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.btn-whatsapp {
  display: inline-block;
  background: #25d366;
  color: white;
  padding: 15px 25px;
  border-radius: 40px;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s;
}

.btn-whatsapp:hover {
  transform: scale(1.05);
}

.btn-instagram {
  display: inline-block;
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  color: white;
  padding: 15px 25px;
  border-radius: 40px;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s;
}

.btn-instagram:hover {
  transform: scale(1.05);
}

/* Rodapé */
footer {
  background: #fdd835;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* Animações */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

