body {
  background: #fff;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}
.proyecto-main-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 40px #0002;
  overflow: hidden;
  margin: 2.5rem auto 2.5rem auto;
  max-width: 900px;
  position: relative;
}
.proyecto-img-hero-box {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
}
.proyecto-img-hero {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.proyecto-img-overlay {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 60%, #FF8C1A 100%);
  z-index: 1;
  pointer-events: none;
}
.proyecto-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem 2.5rem 2rem 2.5rem;
  margin-top: -120px;
}
.proyecto-titulo {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.8rem;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.1;
  text-shadow: 0 2px 12px #0008;
}
.proyecto-badges {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}
.badge-pp {
  background: #FF8C1A;
  color: #fff;
  font-family: 'Bebas Neue', cursive;
  font-size: 1.2rem;
  padding: 0.3rem 1.2rem;
  border-radius: 999px;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px #FF8C1A22;
}
.badge-estado {
  background: #222;
  color: #fff;
  font-family: 'Bebas Neue', cursive;
  font-size: 1.1rem;
  padding: 0.3rem 1.1rem;
  border-radius: 999px;
  letter-spacing: 1px;
}
.proyecto-descripcion {
  color: #222;
  font-size: 1.3rem;
  margin-bottom: 2rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  text-align: center;
}
.proyecto-ficha {
  display: grid;
  grid-template-columns: 1fr; /* Una sola columna también en escritorio */
  gap: 2.5rem 2rem;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}
.dato-label {
  font-family: 'Bebas Neue', cursive;
  color: #222;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.dato-icon {
  color: #FF8C1A;
  font-size: 1.2em;
}
.dato-valor {
  color: #222;
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}
.autor-box {
  background: #FF8C1A;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  border-radius: 10px;
  padding: 0.7rem 1.5rem;
  display: inline-block;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 12px #FF8C1A33;
}
.proyecto-fotos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 2.2rem;
}
.proyecto-foto {
  max-width: 170px;
  max-height: 170px;
  border-radius: 12px;
  box-shadow: 0 2px 12px #0002;
  border: 2px solid #FF8C1A;
  background: #fff;
  transition: transform 0.2s;
  cursor: pointer;
}
.proyecto-foto:hover {
  transform: scale(1.04) rotate(-1deg);
  box-shadow: 0 4px 24px #FF8C1A44;
}
@media (max-width: 900px) {
  .proyecto-main-card { max-width: 98vw; }
  .proyecto-ficha { grid-template-columns: 1fr; gap: 1.5rem 0; }
  .proyecto-content { padding: 1.2rem 0.7rem 1.2rem 0.7rem; }
}
#map { height: 350px; border-radius: 16px; margin-bottom: 1.5rem; box-shadow: 0 2px 16px #0002; } 