@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.5;
  color: #333;
}

h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

/* HERO */
.hero {
  background: linear-gradient(to right, #0072ff, #00c6ff);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}
.hero-img {
  width: 400px;
  height: auto;
  border-radius: 5px;
  margin-bottom: 1rem;
}
.cta-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  background: #25d366;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}
.cta-btn:hover {
  background: #1ebe5d;
}

/* SECTIONS */
section {
  padding: 3rem 2rem;
}

/* SERVICES */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: #f4f8ff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* PROPERTIES */
.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.property-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
}
.property-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.property-card h3 {
  margin: 1rem;
}
.property-card p {
  margin: 0 1rem 1rem;
}
.property-card a {
  display: block;
  margin: 1rem;
  text-align: center;
  padding: 0.7rem;
  background: #0072ff;
  color: white;
  border-radius: 6px;
  text-decoration: none;
}
.property-card a:hover {
  background: #0056d2;
}

.perfil-dfimoveis{
  text-align: center;
  padding-top: 50px;

}

.perfil-dfimoveis > h3{
  margin-bottom: 25px;
}
.properties > .perfil-dfimoveis > .btn-siteDf-imoveis{
  color: white;
  text-decoration: none;
  padding: 10px;
  background-color: #0056d2;
  border-radius: 5px;
}
/* REVIEWS */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.review {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* CONTACT */
.contact-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input, .contact-form textarea, .contact-form button {
  padding: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.contact-form button {
  background: #0072ff;
  color: white;
  cursor: pointer;
}
.contact-form button:hover {
  background: #0056d2;
}

/* FOOTER */
.footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}
.footer p {
  margin: 0.5rem 0;
}

/* WHATSAPP BUTTON */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  padding: 1rem;
  border-radius: 50%;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.whatsapp:hover {
  background: #1ebe5d;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .hero {
    padding: 2rem 1rem;
  }
  section {
    padding: 2rem 1rem;
  }
}
