/* Sección Proyectos GEMT */
.projects-card.new-style {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: url("images/futuro-gemt.png") no-repeat center center/cover;
  border-radius: 16px;
  min-height: 400px;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  margin: 2rem auto;
  max-width: 1200px;
}

/* Contenedor blanco */
.projects-card.new-style .projects-content {
  background: rgba(255, 255, 255, 0.95);
  /* casi blanco con leve transparencia */
  padding: 2rem;
  border-radius: 16px;
  max-width: 500px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Texto */
.projects-card.new-style .projects-tag {
  font-size: 0.9rem;
  color: #10B981;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.projects-card.new-style h2 {
  font-size: 2rem;
  margin: 0.5rem 0 1rem;
  color: #222;
}

.projects-card.new-style p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

/* Botón */
.projects-card.new-style .btn-primary {
  background: #000;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.projects-card.new-style .btn-primary:hover {
  background: #10B981;
  color: #02120E;
}

/* Responsivo */
@media (max-width: 768px) {
  .projects-card.new-style {
    justify-content: center;
    min-height: 300px;
  }

  .projects-card.new-style .projects-content {
    max-width: 100%;
    padding: 1.5rem;
  }
}