/* ==========================================
   SECCIÓN DE CONFIANZA (MEDIOS DE PAGO Y REDES)
   ========================================== */
.trust-bar-section {
  max-width: 1200px;
  margin: 40px auto 20px;
  padding: 0 20px;
}

.trust-bar-container {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 50px; /* Bordes redondeados píldora como la imagen */
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  gap: 20px;
}

.trust-block {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-label {
  font-size: 13px;
  font-weight: 700;
  color: #475569;
  white-space: nowrap;
}

/* Divisor Vertical */
.trust-divider {
  width: 1px;
  height: 28px;
  background-color: #cbd5e1;
  flex-shrink: 0;
}

/* Logos de Pago */
.payment-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.payment-tag {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.5px;
  user-select: none;
}

.tag-addi {
  color: #0052ff;
  font-size: 18px;
}

.tag-sistecredito {
  color: #22c55e;
  font-size: 15px;
}
.tag-sistecredito span {
  font-weight: 400;
}

.tag-wompi {
  color: #000000;
  font-family: sans-serif;
  font-size: 16px;
  text-transform: lowercase;
}

.tag-pse {
  background-color: #0d2c6c;
  color: #ffffff;
  font-size: 11px;
  padding: 3px 7px;
  border-radius: 4px;
}

.tag-bancolombia {
  color: #fdc800;
  font-size: 13px;
  background: #000;
  padding: 2px 6px;
  border-radius: 4px;
}

/* Botones de Redes Sociales */
.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Colores de Marcas Oficiales */
.btn-facebook { background-color: #1877f2; }
.btn-instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.btn-tiktok { background-color: #000000; }
.btn-whatsapp { background-color: #25d366; }

/* Responsive para Celulares */
@media (max-width: 868px) {
  .trust-bar-container {
    flex-direction: column;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
  }

  .trust-block {
    flex-direction: column;
    gap: 10px;
  }

  .trust-divider {
    width: 100%;
    height: 1px;
  }

  .payment-logos {
    justify-content: center;
  }
}