/* ===============================
   CLIENTES – HERO
   =============================== */

.clientes-hero {
  background: radial-gradient(circle at top left, #2d7a52 0%, #1a5f3f 40%, #0f3b28 100%);
  color: #ffffff;
  padding: 80px 0 70px;
  text-align: center;
}

.clientes-hero__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.clientes-hero h1 {
  font-size: 34px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.45);
}

.clientes-hero p {
  font-size: 16px;
  line-height: 1.8;
  color: #e9f6f0;
}

/* ===============================
   TÍTULOS DE SEÇÃO
   =============================== */

.clientes-section-title {
  max-width: 960px;
  margin: 0 auto 40px;
  text-align: center;
  padding: 0 20px;
}

.clientes-section-title h2 {
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--verde-primario, #1a5f3f);
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}

.clientes-section-title p {
  font-size: 15px;
  color: #4a4a4a;
}

/* ===============================
   DEPOIMENTOS
   =============================== */

.clientes-depoimentos {
  background: #f6f8f7;
  padding: 70px 0 80px;
}

.depoimentos-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.depo-card {
  position: relative;
  background: #ffffff;
  border-radius: 14px;
  padding: 26px 24px 22px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.depo-card::before {
  content: "“";
  position: absolute;
  top: 12px;
  left: 18px;
  font-size: 40px;
  color: rgba(26, 95, 63, 0.18);
  font-family: Georgia, "Times New Roman", serif;
}

.depo-text {
  font-size: 14px;
  line-height: 1.7;
  color: #444444;
  margin-bottom: 18px;
}

.depo-author {
  border-top: 1px solid #e3e3e3;
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.depo-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--verde-primario, #1a5f3f);
}

.depo-condominio {
  font-size: 13px;
  color: #777777;
}

.depo-card--wide {
  grid-column: span 2;
}

/* ===============================
   GRID DE CONDOMÍNIOS
   =============================== */

.clientes-condominios {
  background: #ffffff;
  padding: 80px 0 90px;
}

.condos-grid {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.condo-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.condo-card__image {
  position: relative;
  padding-top: 72%;             /* proporção 4:3 para as fotos */
  overflow: hidden;
}

.condo-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

.condo-card__info {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.condo-bairro {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #888888;
}

.condo-nome {
  font-size: 15px;
  font-weight: 700;
  color: #333333;
}

.condo-unidades {
  font-size: 13px;
  color: #666666;
}

.condo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}

.condo-card:hover .condo-card__image img {
  transform: scale(1.06);
}

/* ===============================
   CTA FINAL
   =============================== */

.clientes-cta {
  max-width: 800px;
  margin: 60px auto 0;
  padding: 30px 26px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--verde-primario, #1a5f3f) 0%, var(--verde-secundario, #2d7a52) 100%);
  color: #ffffff;
  text-align: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.clientes-cta h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.clientes-cta p {
  font-size: 15px;
  margin-bottom: 20px;
}

.clientes-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.clientes-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border: 2px solid transparent;
  text-decoration: none;
  transition: all 0.2s ease;
}

.clientes-btn i {
  font-size: 18px;
}

.clientes-btn--primary {
  background: #ffffff;
  color: var(--verde-primario, #1a5f3f);
}

.clientes-btn--primary:hover {
  background: #f5f5f5;
  border-color: var(--dourado, #c49a3c);
}

.clientes-btn--secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
}

.clientes-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ===============================
   RESPONSIVIDADE
   =============================== */

@media (max-width: 992px) {
  .clientes-hero {
    padding: 70px 0 60px;
  }
  .clientes-hero h1 {
    font-size: 30px;
  }
  .depoimentos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .depo-card--wide {
    grid-column: span 2;
  }
  .condos-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .clientes-hero {
    padding: 60px 0 50px;
  }
  .clientes-hero h1 {
    font-size: 26px;
  }
  .clientes-hero p {
    font-size: 15px;
  }
  .depoimentos-grid {
    grid-template-columns: 1fr;
  }
  .depo-card--wide {
    grid-column: span 1;
  }
  .condos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .clientes-cta {
    margin-top: 50px;
  }
}

@media (max-width: 520px) {
  .condos-grid {
    grid-template-columns: 1fr;
  }
  .clientes-hero h1 {
    font-size: 22px;
  }
  .clientes-hero p,
  .clientes-section-title p {
    font-size: 14px;
  }
}

.clientes-hero__list {
  list-style: none;
  margin: 0;
  margin-top: 14px;
  padding: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #e9f6f0;
}

.clientes-hero__list li::before {
  content: "• ";
  font-weight: 700;
}
