#capTitulo{
    width: 100%;
    padding: 2%;
    background-color: white;
}
#capTitulo h2{
    color: crimson;
    font-size: 2em;
    text-align: center;margin-bottom: 20px;
}
#capTitulo p{
    font-size: 1.4em;
}
#capPregunta{ font-weight: bold;  color: #002E6C;}
/* Sección capacitación (completa) */
#capCursos{
    display: flex;
    flex-wrap: wrap;    
    justify-content: center;
    align-items: center;
    background-color: white;    
    width: 100%;
    padding: 2%;
}
#capCursos article{
    width: 21%;
    margin: 2%;
    word-wrap:break-word;    
    border-radius: 15px;    
    overflow:visible;
    position: relative;
}
#capCursos article span{
    width: 100%;
    z-index: 10;    
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #002f6cc0;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
#capCursos article img{
    box-shadow: 0 0 3px #002E6C;
    border-radius: 15px;
    width: 100%;
}
#capCursos article a h2{
    color: yellow;
    padding: 10px;
    font-size: 1.4em;
}
#capCursos article a p{
    color: white;
    font-size: 1em;
    padding: 10px;    
}