/* Trust signals + WhatsApp float — keep mobile-safe (no horizontal overflow) */
.trust-signals {
  background: #eef3f8;
  border-top: 1px solid #d9e2ec;
  padding: 2rem 0 1.75rem;
  margin-top: 1.5rem;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}
.trust-signals .container {
  max-width: 100%;
  overflow-x: hidden;
}
.trust-signals__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.trust-signals__item {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.trust-signals__item strong {
  display: block;
  color: #0b3d91;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}
.trust-signals__item span {
  display: block;
  font-size: 0.9rem;
  color: #445;
  line-height: 1.45;
}
.trust-signals__map-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: start;
  min-width: 0;
}
.trust-signals__map {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: 6px;
  line-height: 0;
}
.trust-signals__map iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
  height: 220px;
  border: 0;
}
.trust-signals__side {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.trust-signals__side .btn {
  white-space: normal;
  max-width: 100%;
}
.trust-signals__quotes blockquote {
  margin: 0 0 0.15rem;
  font-size: 0.92rem;
  color: #333;
}
.trust-signals__quotes cite {
  display: block;
  font-size: 0.8rem;
  color: #667;
  margin-bottom: 0.85rem;
  font-style: normal;
}

.whatsapp-float {
  position: fixed;
  left: 14px;
  right: auto;
  bottom: 18px;
  z-index: 1030;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  font-size: 1.55rem;
  text-decoration: none !important;
  line-height: 1;
}
.whatsapp-float:hover,
.whatsapp-float:focus {
  background: #1ebe57;
  color: #fff !important;
  text-decoration: none !important;
}

@media (min-width: 576px) {
  .trust-signals__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
  .trust-signals__map iframe {
    height: 260px;
  }
}

@media (min-width: 992px) {
  .trust-signals {
    padding: 2.5rem 0 2rem;
    margin-top: 2rem;
  }
  .trust-signals__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .trust-signals__map-row {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 1.5rem;
  }
  .trust-signals__map iframe {
    height: 280px;
  }
  .whatsapp-float {
    left: 18px;
    right: auto;
    bottom: 22px;
    width: 56px;
    height: 56px;
    font-size: 1.6rem;
  }
}
