/* -------------------------------
   INTRO SECTION
-------------------------------- */
.intro-section {
  position: relative;
  height: 60vh;
  width: 100%;
  display: flex;                /* ← Añade flexbox */
  flex-direction: column;      /* Apila h2 y p verticalmente */
  justify-content: center;     /* Centra verticalmente */
  align-items: center;         /* Centra horizontalmente */
  text-align: center;
  overflow-x: hidden;
}
.intro-ellipse {
  position: absolute;
  top: 0;
  transform: translateY(-35%);
  width: 180vw;
  height: 80vh;
  background: #131313;
  border-radius: 50%;
  z-index: -1; /* detrás del contenido */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.intro-ellipse img{
  width: 100vw;
  min-height: 100vh;
  object-fit: contain;
}
/* -------------------------------
  CATEGORY SECTIONs
-------------------------------- */
.project-info-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 16rem 0;
}

.project-info-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.project-info-gallery img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.project-info-description{
  flex: 1;
  margin: auto;
}

.project-info-description h1 {
  color: var(--color-main);
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-weight: 900;
}
.project-info-description h2 {
  color: var(--color-gray);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  font-size: 1rem;
  margin-bottom: 16px;
}
.project-info-description p {
  font-size: 1.1rem;
  color: var(--color-gray);
  line-height: 1.7;
  margin-bottom: 1rem;

}
.project-info-description hr {
  border: none;
  border-top: 2px solid var(--color-dark);
  margin: 18px 0;
}
/*----------------------------- MOBILE ---------------------------------------*/
@media (max-width: 1500px) {
  .project-info-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 8rem 3rem;
  }

  .project-info-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

}