

.project__wrapper{
    margin: 0 18%;
    padding: 40px 80px;
    background-color: var(--blanco);
}

.project__hero{
    height: 60vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    background-color: black;
    margin: 10px 0;
}

.project__hero__img{
    object-fit: cover;
    height: 100%;
    width: 100%;
    justify-self: center;
    align-self: center;
}






.title__project{
    font-size: 34px;
    margin: 15px 0 0 0;
    font-weight: 600;
    color: rgb(0, 0, 0);
}

.description__project{
    font-size: 22px;
    font-weight: 500;
    margin: 10px 0;
    line-height: 26px;
    color: rgb(116, 116, 116);
}

.disciplinas__project{
    font-size: 16px;
    font-weight: 600;
    color: rgb(148, 148, 148);
    background-color: rgb(255, 255, 255);
}

.explicacion__project{
    font-size: 16px;
    margin: 40px 0;
    line-height: 25px;
    color: rgb(107, 107, 107);
}



.fecha__project{
    margin: 10px 0;
    font-size: 12px;
    color: #999999;
}

.type__project{
    background-color: rgb(223, 223, 223);
    color: rgb(61, 61, 61);
    padding: 3px;
    font-size: 14px;
}



















.project__gallery{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.project__gallery__item{
    margin: 0;
    max-height: 600px;
    width: 100%;
    overflow: hidden;
    background-color: rgb(255, 255, 255);
    display: inline-block;

}

.project__gallery__img{
    object-fit: cover;
    width: 100%;
    justify-self: center;
    align-self: center;
    margin: 0px 0;
}





@media screen and (max-width: 480px){
    .title__project{
        font-size: 36px;
        line-height: 36px;
}
    .project__hero{
        margin: 0 0 20px 0;
    }
    .project__wrapper{
        margin: 0;
        padding: 50px 30px;
        background-color: white;
    }
    .project__gallery{
        grid-template-columns: repeat(1, 1fr);
}
    .type__project{
        font-size: 14px;
        padding: 3px;
    }

}   























.lb.hidden { display: none; }
.lb {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.85);
  display: grid; place-items: center;
  padding: 24px;
}
.lb__stage {
  max-width: 92vw; max-height: 86vh;
  display: grid; gap: 12px; place-items: center;
}
.lb__stage img {
  max-width: 100%; max-height: 80vh; object-fit: contain;
  border-radius: 10px;
}
.lb__caption {
  color: #eee; font-size: 0.95rem; text-align: center;
}
.lb__close, .lb__nav {
  position: absolute; top: 16px;
  background: rgba(0,0,0,0.5);
  border: 0; color: #fff; font-size: 24px; line-height: 1;
  padding: 8px 12px; border-radius: 10px; cursor: pointer;
}
.lb__close { right: 16px; }
.lb__nav { top: 50%; transform: translateY(-50%); font-size: 34px; }
.lb__prev { left: 12px; }
.lb__next { right: 12px; }
.project__gallery__img { cursor: zoom-in; }
