.proyectos-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: black;
}

.particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.proyectos-section__nodes {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3;
  pointer-events: none;
}

.proyectos-section__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  text-align: center;
}

.proyectos-section__title {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 2rem;
}

.proyectos-section__highlight {
  color: #22d3ee; /* cyan-400 */
}

.proyectos-section__grid {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
  transition: max-height 0.8s ease;
  overflow: hidden;
  max-height: 450px; /* Altura aproximada para 3 proyectos */
}

.proyectos-section__grid.show-all {
  max-height: 2000px; /* Altura suficiente para todos los proyectos */
}

.proyectos-section__card:nth-child(n+4) {
  opacity: 0;
  transform: translateY(20px);
  max-height: 0;
  overflow: hidden;
  transition: all 0.8s ease;
  pointer-events: none;
}


.proyectos-section__grid.show-all .proyectos-section__card:nth-child(n+4) {
  opacity: 1;
  transform: translateY(0);
  max-height: 1000px;
  pointer-events: auto;
}


@media (min-width: 768px) {
  .proyectos-section__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .proyectos-section__title {
    font-size: 3.75rem;
  }
}

.proyectos-section__card {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.proyectos-section__card:hover {
  border-color: rgba(34, 211, 238, 0.5);
}

.proyectos-section__card-top {
  height: 12rem;
  background: linear-gradient(to bottom right, black, #111827);
  display: flex;
  align-items: center;
  justify-content: center;
}

.proyectos-section__number {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.2);
  transition: color 0.3s ease;
}

.proyectos-section__card:hover .proyectos-section__number {
  color: #22d3ee;
}

.proyectos-section__card-body {
  padding: 1rem;
}

.proyectos-section__card-title {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.proyectos-section__card-text {
  color: #9ca3af;
  font-size: 0.875rem;
}

.proyectos-section__button {
  margin-top: 1.5rem;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease;
}

.proyectos-section__button:hover {
  background: rgba(255, 255, 255, 0.1);
}

















.proyectos-section__image {
  width: 100%;
  height: 100%;
  object-fit: fill;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .proyectos-section {
    transition: height 0.5s ease;
  }

  .proyectos-section__grid {
    max-width: 19rem;
    max-height: 20rem;
  }
}
