/*para el texto de portafolio*/

.hero-b{
    font-family: 'Zilla Slab', serif; 
    display: flex;
    align-items: center;
    min-height: 50vh;
    padding-left: 10%;
    padding-right: 10%;
}

.hero-content_b{
    max-width: 500px;
}
/*imagenes del portafolio*/
/* SOLO para la sección antigua */
.portafolio-detalle h2 {
    font-family: 'Zilla Slab', serif; 
    font-weight: 700;
    margin-bottom: 15px;
}

.portafolio-detalle p {
    font-size: 16px;
    line-height: 1.6;
}

.row img{
    border-radius: 10px;
}

/* CADA BLOQUE NEGRO */
.proyecto {
    background-color: #000;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    transition: 0.3s;
}

/* IMAGEN */
.proyecto img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

/* HOVER */
.proyecto:hover img {
    transform: scale(1.05);
}

/* TEXTO */
.proyecto h5 {
    margin-top: 10px;
    font-family: 'Zilla Slab', serif;
    font-weight: 700;
}

.proyecto p {
    font-size: 14px;
    color: #ccc;
}
