/*----------------------------Sección "Proyectos Destacados"-----------------------------*/

.proyectos {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--quinary-color);
  padding: 40px 20px;
  margin-top: 20px;
  color: var(--primary-color);
  text-align: center;
}

.title-underline {
  display: block;
  width: 180px;
  height: 4px;
  background-color: rgb(255, 174, 0);
  margin: 10px auto 0;
  border-radius: 2px;
}

.proyectos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  width: 100%;
  margin-top: 20px;
}

/* Enlaces de proyectos */
.proyecto-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s;
}

.proyecto-link:hover {
  transform: translateY(-5px);
}

/* TARJETAS */
.proyecto-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.proyecto-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem;
  text-align: center;
}

.proyecto-link:hover .proyecto-item {
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.25);
}

.proyecto-item p {
  font-size: 1.5rem;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: center;
  font-size: 90%;
  padding: 20px;
  flex-grow: 1;
}

.proyecto-item h3 {
  text-align: center;
  padding-bottom: 10px;
}

.ver-mas {
  display: block;
  text-align: center;
  color: #4caf50;
  font-weight: 600;
  font-size: 14px;
  padding: 10px;
  margin-top: auto;
}

.proyectos-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}

@media (max-width: 900px) {
  .proyectos-grid {
    grid-template-columns: 1fr;
  }
}
.proyecto-item {
  margin-bottom: 20px;
}
.proyecto-item img {
  max-width: 100%;
  height: auto;
}
