/*par gemt/usdt*/
.gemt-chart {
  width: 100%;
  height: 600px;
  background: #000;
  /* Fondo oscuro */
  padding: 0;
  margin: 0;
}

.gemt-chart iframe {
  display: block;
  border: none;
}

/*fin*/
.problema {
  padding: 60px 20px;
  text-align: center;
  background: #000c11;
}

.problema .titulo {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #fff;
}

.iconos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.icono-item {
  max-width: 200px;
}

.icono {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
}

.icono-item p {
  font-size: 1rem;
  color: #fff;
}

.conclusion {
  font-size: 1.2rem;
  margin-top: 50px;
  color: #fff;
  font-weight: bold;
}


/* Estilos para la Sección de Confianza */
.trust-section {
  background: #000c11;
  /* Azul muy oscuro #0f172a*/
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.trust-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.trust-section .subtitle {
  font-size: 1.2rem;
  color: #10B981;
  /* Verde brillante #a3e635*/
  margin-bottom: 30px;
}

.trust-visual img {
  max-width: 300px;
  margin: 0 auto 30px;
  display: block;
  animation: float 3s ease-in-out infinite;
}

.gemt-logo {
  text-align: center;
  margin-bottom: 15px;
}

.gemt-logo img {
  max-width: 120px;
  height: auto;
}


@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.trust-section .description {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1rem;
  line-height: 1.6;
  color: #cbd5e1;
  /* Gris claro */
}

.cta-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: transparent;
  border: 2px solid #10B981;
  /* Celeste #22d3ee*/
  border-radius: 30px;
  color: #10B981;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: #10B981;
  color: #0f172a;
}