/* ==========================================================================
Live Spanish — Sección de confianza / datos corporativos
Se carga aparte de styles.css para no tocar la hoja de estilos principal.
========================================================================== */

.trust-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.trust-item {
  text-align: center;
  padding: 8px;
}

.trust-item__icon {
  font-size: 30px;
  margin-bottom: 12px;
}

.trust-item h4 {
  font-size: 15px;
  margin: 0 0 6px;
  color: var(--ink);
}

.trust-item p {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 900px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* Línea de datos legales en el footer */
.footer__legalinfo {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ---------- Botón flotante de WhatsApp ---------- */
.whatsapp-wrap {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  width: 140px;
  height: 140px;
}
.whatsapp-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.whatsapp-ring text {
  font-family: 'Quicksand', 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.2px;
  fill: #075E54;
}
.whatsapp-float {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
  transition: transform .18s ease, box-shadow .18s ease;
}
.whatsapp-float:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}
@media (max-width: 480px) {
  .whatsapp-wrap { bottom: 18px; right: 18px; width: 112px; height: 112px; }
  .whatsapp-float { width: 54px; height: 54px; }
  .whatsapp-float svg { width: 27px; height: 27px; }
}
