.intro-servicos {
  padding: 50px 20px;
  text-align: center;
  background-color: #f5f5f5;
}

.intro-servicos h1 {
  font-size: 2.5rem;
  color: #8b0000;
  margin-bottom: 10px;
}

.intro-servicos p {
  font-size: 1.2rem;
  color: #333;
}

.servicos-icones {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 20px;
  background: #ffffff;
}

.icone-servico {
  text-align: center;
  max-width: 200px;
}

.icone-servico img {
  width: 80px;
  margin-bottom: 15px;
}

.icone-servico h3 {
  color: #8b0000;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.icone-servico p {
  font-size: 0.95rem;
  color: #555;
}

.galeria-servicos {
  padding: 60px 30px;
  background-color: #f9f9f9;
  text-align: center;
}

.galeria-servicos h2 {
  font-size: 2rem;
  color: #8b0000;
  margin-bottom: 30px;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.foto-servico {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.foto-servico:hover {
  transform: scale(1.02);
}

.foto-servico img {
  width: 100%;
  display: block;
}

.foto-servico p {
  padding: 15px;
  font-size: 0.95rem;
  color: #444;
}
