/* Sección de Confianza */
.trust-section {
  padding: 100px 20px;
  text-align: center;
  background: #04110f;
  /* fondo oscuro elegante */
  color: #eafbf3;
}

.trust-section h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 12px;
}

.trust-section .subtitle {
  font-size: 18px;
  color: #10b981;
  /* verde brillante para destacar */
  margin-bottom: 40px;
}

.trust-visual img {
  max-width: 280px;
  width: 100%;
  margin: 0 auto 30px;
  display: block;
}

.trust-section .description {
  max-width: 750px;
  margin: 0 auto 30px;
  font-size: 16px;
  line-height: 1.7;
  color: #cbd5e1;
  /* gris suave */
}

/* Botón estilo secundario */
.cta-secondary {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid #10b981;
  border-radius: 30px;
  background: transparent;
  color: #10b981;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: #10b981;
  color: #04110f;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
  .trust-section h2 {
    font-size: 26px;
  }

  .trust-section .subtitle {
    font-size: 16px;
  }

  .trust-section .description {
    font-size: 15px;
    padding: 0 10px;
  }

  .trust-visual img {
    max-width: 200px;
  }
}