/* Página de Gracias INGCO */
.ingco-gracias-wrap {
  padding: 40px 16px;
}

.ingco-gracias {
  max-width: 960px;
  margin: 0 auto;
}

.ingco-gracias-inner {
  background: #000;
  border-radius: 18px;
  border: 2px solid #ffb000;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 0 22px rgba(255, 176, 0, 0.18);
  color: #ffffff;
}

.ingco-gracias-title {
  font-size: 26px;
  margin-bottom: 16px;
  color: #ffb000;
}

.ingco-gracias-text {
  font-size: 15px;
  margin-bottom: 20px;
}

.ingco-gracias-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
}

.ingco-gracias-note {
  font-size: 13px;
  color: #dddddd;
}

/* Reutilizamos el estilo general del botón INGCO */
.ingco-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 10px;
  border: none;
  background: #ffb000;
  color: #000;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.15s ease;
}

.ingco-btn:hover {
  background: #e39b00;
  box-shadow: 0 0 10px rgba(255, 176, 0, 0.5);
  transform: translateY(-1px);
}

.ingco-btn--secondary {
  background: #222;
  color: #ffb000;
  border: 1px solid #ffb000;
}

.ingco-btn--secondary:hover {
  background: #333;
}
