.trabajos-main {
  position: relative;
  z-index: 1;
}

.proyecto {
  position: relative;
  height: 100vh;
  overflow: hidden;
  border-bottom: 1px solid var(--color-grid, rgba(255, 255, 255, 0.1));
  transition: border-color var(--transicion-tema), background var(--transicion-tema);
}

.proyecto::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    ellipse at 30% 50%,
    color-mix(in srgb, var(--color-fondo-alt) 95%, transparent) 0%,
    transparent 70%
  );
  opacity: 0.6;
}

.proyecto:nth-child(even)::before {
  background: radial-gradient(
    ellipse at 70% 50%,
    color-mix(in srgb, var(--color-fondo) 95%, transparent) 0%,
    transparent 70%
  );
}

.proyecto-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 5rem);
  gap: 1.2rem;
  z-index: 1;
}

.proyecto-numero {
  font-family: var(--fuente-micro);
  font-size: 0.96rem;
  color: var(--color-acento);
  letter-spacing: 0.1em;
  transition: color var(--transicion-tema);
}

.proyecto-titulo {
  font-family: var(--fuente-dialogo);
  font-size: clamp(3rem, 6vw, 6rem);
  color: var(--color-texto);
  margin: 0;
  line-height: 1;
  transition: color var(--transicion-tema);
}

.proyecto-tag {
  display: inline-block;
  font-family: var(--fuente-editable);
  font-size: 0.84rem;
  color: var(--color-acento);
  border: 1px solid var(--color-acento);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  width: fit-content;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transicion-tema), border-color var(--transicion-tema);
}

.proyecto-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.proyecto-rol,
.proyecto-encargo {
  font-family: var(--fuente-editable);
  font-size: clamp(0.96rem, 1.2vw, 1.14rem);
  font-weight: 600;
  color: var(--color-texto-suave);
  margin: 0;
  line-height: 1.5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  transition: color var(--transicion-tema);
}

.proyecto-rol strong,
.proyecto-encargo strong {
  color: var(--color-acento);
  transition: color var(--transicion-tema);
}

.proyecto-descripcion {
  font-family: var(--fuente-editable);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 600;
  color: var(--color-texto-suave);
  margin: 0;
  line-height: 1.7;
  max-width: 520px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  transition: color var(--transicion-tema);
}

.proyecto-link {
  font-family: var(--fuente-micro);
  font-size: clamp(0.96rem, 1.2vw, 1.14rem);
  color: var(--color-acento);
  text-decoration: none;
  letter-spacing: 0.03em;
  margin-top: 0.5rem;
  transition: color var(--transicion-tema);
}

@media (hover: hover) and (pointer: fine) {
  .proyecto-link:hover {
    text-decoration: underline;
  }
}

.proyecto-link:focus-visible {
  outline: 2px solid var(--color-acento);
  outline-offset: 4px;
  border-radius: 4px;
}

.proyecto-galeria {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}

.proyecto-galeria-scroll {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  height: 80%;
  will-change: transform;
}

.proyecto-galeria-scroll::-webkit-scrollbar {
  display: none;
}

.proyecto-img {
  flex-shrink: 0;
  height: 100%;
  width: auto;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 8px;
  scroll-snap-align: start;
  filter: drop-shadow(0 8px 14px var(--manifiesto-drop-1));
  transition: transform 0.3s ease;
}

.proyecto-img--main {
  max-height: 80vh;
}

.proyecto-video {
  height: auto;
  max-height: 80vh;
  width: auto;
  border-radius: 8px;
  filter: drop-shadow(0 8px 14px var(--manifiesto-drop-1));
}

@media (max-width: 1024px) and (orientation: landscape) {
  .proyecto-info {
    width: 50%;
    padding: 2rem 2.5rem;
    gap: 1rem;
  }

  .proyecto-titulo {
    font-size: clamp(3.45rem, 8vw, 5.75rem);
  }

  .proyecto-descripcion {
    font-size: clamp(1.5rem, 2.5vw, 1.84rem);
    line-height: 1.65;
    max-width: 100%;
  }

  .proyecto-rol,
  .proyecto-encargo {
    font-size: clamp(1.38rem, 2.3vw, 1.73rem);
  }

  .proyecto-link {
    font-size: clamp(1.38rem, 2.1vw, 1.61rem);
  }

  .proyecto-numero {
    font-size: 1.38rem;
  }

  .proyecto-tag {
    font-size: 1.27rem;
    padding: 0.4rem 1rem;
  }

  .proyecto-galeria-scroll {
    gap: 1.5rem;
    padding: 1.5rem;
    height: 75%;
  }

  .proyecto-img {
    max-height: 70vh;
  }

  .proyecto-img--main {
    max-height: 72vh;
  }

  .proyecto-video {
    max-height: 72vh;
  }
}

@media (max-width: 1024px) and (orientation: portrait) {
  .proyecto-info {
    width: 55%;
    padding: 0;
    gap: 0;
    justify-content: flex-start;
  }

  .proyecto-numero {
    padding: 2rem 2rem 0.5rem;
    font-size: 1.38rem;
  }

  .proyecto-titulo {
    font-size: clamp(3.68rem, 9.2vw, 5.98rem);
    padding: 0 2rem 1.2rem;
    border-bottom: 1px solid var(--color-grid, rgba(255, 255, 255, 0.1));
  }

  .proyecto-tag {
    font-size: 1.15rem;
    padding: 0.35rem 0.85rem;
    margin: 1rem 0 0 2rem;
  }

  .proyecto-meta {
    padding: 1.2rem 2rem 0;
    gap: 0.5rem;
  }

  .proyecto-rol,
  .proyecto-encargo {
    font-size: clamp(1.5rem, 2.76vw, 1.73rem);
    line-height: 1.55;
  }

  .proyecto-descripcion {
    font-size: clamp(1.55rem, 3vw, 1.84rem);
    line-height: 1.7;
    max-width: 100%;
    padding: 0.8rem 2rem 0;
  }

  .proyecto-link {
    font-size: clamp(1.38rem, 2.3vw, 1.61rem);
    padding: 0 2rem;
    margin-top: 0.8rem;
  }

  .proyecto-galeria-scroll {
    gap: 1.5rem;
    padding: 1.5rem;
    height: 78%;
  }

  .proyecto-img {
    max-height: 72vh;
  }

  .proyecto-img--main {
    max-height: 76vh;
  }

  .proyecto-video {
    max-height: 76vh;
  }
}

@media (max-width: 599px) {
  .proyecto {
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100dvh;
  }

  .proyecto-info {
    position: relative;
    width: 100%;
    height: 60%;
    padding: 0.8rem 10px 0.5rem;
    gap: 0.3rem;
    justify-content: center;
    overflow-y: auto;
  }

  .proyecto-numero {
    font-size: 1.21rem;
  }

  .proyecto-titulo {
    font-size: clamp(2.59rem, 10.8vw, 3.74rem);
  }

  .proyecto-tag {
    font-size: 1.04rem;
    padding: 0.3rem 0.75rem;
  }

  .proyecto-rol,
  .proyecto-encargo {
    font-size: 1.21rem;
    line-height: 1.3;
  }

  .proyecto-descripcion {
    font-size: 1.27rem;
    line-height: 1.35;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .proyecto-link {
    font-size: 1.29rem;
    margin-top: 0.4rem;
  }

  .proyecto-galeria {
    position: relative;
    width: 100%;
    height: 40%;
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  .proyecto-galeria-scroll {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    height: 85%;
    white-space: nowrap;
    will-change: transform;
  }

  .proyecto-img {
    flex-shrink: 0;
    height: 100%;
    width: auto;
    max-height: 100%;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .proyecto-img--main {
    max-height: 100%;
  }

  .proyecto-video {
    height: 100%;
    max-height: 100%;
    width: auto;
    border-radius: 8px;
    cursor: pointer;
  }

  .proyecto-img-expandida {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.85);
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .proyecto-img-expandida.activa {
    opacity: 1;
    pointer-events: auto;
  }

  .proyecto-img-expandida img,
  .proyecto-img-expandida video {
    max-width: 95%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
  }

  .proyecto-img-expandida-cerrar {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 1;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .proyecto-info {
    width: 42%;
    padding: 1.2rem 1.5rem;
    gap: 0.6rem;
  }

  .proyecto-titulo {
    font-size: clamp(1.61rem, 4vw, 2.53rem);
  }

  .proyecto-descripcion {
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .proyecto-rol,
  .proyecto-encargo {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .proyecto-tag {
    font-size: 0.81rem;
    padding: 0.2rem 0.5rem;
  }

  .proyecto-link {
    font-size: 0.94rem;
  }

  .proyecto-galeria-scroll {
    gap: 1rem;
    padding: 1rem;
    height: 85%;
  }

  .proyecto-img {
    max-height: 80vh;
  }

  .proyecto-img--main {
    max-height: 82vh;
  }

  .proyecto-video {
    max-height: 82vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  .proyecto-img {
    transition: none;
  }
}
