/* ============================================
   MBL DESIGN — Página de proyecto
   ============================================ */

body {
  font-family: 'Neue Haas Grotesk', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: var(--blanco, #ffffff);
  color: var(--negro, #111111);
  -webkit-font-smoothing: antialiased;
}

/* Navbar en páginas internas — siempre visible */
#navbar {
  transform: translateY(0) !important;
}

/* Hero del proyecto */
.proyecto-hero {
  width: 100%;
  height: 70vh;
  position: relative;
  overflow: hidden;
  background: #111;
}

.proyecto-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.proyecto-hero .hero-titulo {
  position: absolute;
  bottom: 48px;
  left: 48px;
  color: #fff;
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* Ficha técnica */
.proyecto-ficha {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  margin: 0 48px;
  padding: 40px 0;
}

.ficha-item {
  padding: 0 32px 0 0;
}

.ficha-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 8px;
}

.ficha-valor {
  font-size: 15px;
  font-weight: 400;
  color: #111;
  line-height: 1.5;
}

/* Concepto */
.proyecto-concepto {
  padding: 72px 48px;
  max-width: 680px;
}

.proyecto-concepto p {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.9;
  color: #555;
  font-weight: 300;
}

/* Galería */
.proyecto-galeria {
  padding: 0 48px 100px;
  columns: 2;
  gap: 16px;
}

.proyecto-galeria img {
  width: 100%;
  margin-bottom: 16px;
  break-inside: avoid;
  display: block;
}

/* CTA */
.proyecto-cta {
  background: #4A7098;
  text-align: center;
  padding: 80px 48px;
}

.proyecto-cta p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 32px;
  letter-spacing: 0.03em;
}

.proyecto-cta .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #4A7098;
  padding: 16px 36px;
  font-family: inherit;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.proyecto-cta .btn-cta:hover {
  background: #111;
  color: #fff;
}

/* Back link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 24px 48px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #111;
}

@media (max-width: 768px) {
  .proyecto-hero .hero-titulo {
    left: 24px;
    bottom: 32px;
  }

  .proyecto-ficha {
    margin: 0 24px;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .proyecto-concepto {
    padding: 48px 24px;
  }

  .proyecto-galeria {
    padding: 0 24px 72px;
    columns: 1;
  }

  .ficha-item {
    padding: 0;
  }
}
